/* ===================================
   Support Page Styles
   =================================== */

/* Main Content Container */
.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    min-height: calc(100vh - 200px);
}

.content-wrapper {
    background: white;
    border-radius: 1rem;
    padding: 3rem 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
}

.intro-text {
    font-size: 1.125rem;
    color: #334155;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-align: center;
    font-weight: 400;
}

/* Support Button */
.support-button-container {
    text-align: center;
    margin: 3rem 0;
}

.support-button {
    display: inline-block;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 1.125rem 2.75rem;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:
        0 8px 24px rgba(14, 165, 233, 0.3),
        0 2px 8px rgba(14, 165, 233, 0.2),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.support-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.support-button:hover::before {
    left: 100%;
}

.support-button:hover {
    color: white !important;
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 16px 40px rgba(14, 165, 233, 0.4),
        0 8px 16px rgba(14, 165, 233, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.support-button:active {
    transform: translateY(-2px) scale(0.98);
}

/* Transparency Note */
.transparency-note {
    font-size: 0.95rem;
    color: #94a3b8;
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 0.5rem;
    font-weight: 400;
    line-height: 1.7;
}

/* Divider */
.divider {
    height: 1px;
    background-color: #e2e8f0;
    margin: 3rem 0;
}

/* Navigation Links */
.nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-link {
    display: block;
    text-align: center;
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.nav-link:hover {
    background-color: #f0f9ff;
    color: #0284c7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 3rem 1.5rem;
    }

    .content-wrapper {
        padding: 2.5rem 1.5rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .support-button {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 2rem 1rem;
    }

    .content-wrapper {
        padding: 2rem 1.25rem;
    }

    .intro-text {
        font-size: 0.9375rem;
    }

    .support-button-container {
        margin: 2rem 0;
    }

    .transparency-note {
        font-size: 0.875rem;
        padding: 1.25rem;
        margin-top: 1.5rem;
    }

    .divider {
        margin: 2rem 0;
    }

    .nav-links {
        margin-top: 1.5rem;
    }
}
