/* ===== Global Styles & Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: #ffffff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    animation: bodyFadeIn 0.2s ease-in;
}

@keyframes bodyFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
    opacity: 1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.9) 0%, rgba(80, 80, 80, 0.7) 50%, rgba(40, 40, 40, 0.9) 100%);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Transitions & Interactions ===== */
a {
    transition: all 0.3s ease;
}

button {
    transition: all 0.3s ease;
}

/* ===== Navigation Bar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.88) 0%, rgba(20, 20, 20, 0.72) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 0 20px;
    z-index: 1000;
    border-radius: 16px;
    margin: 8px 8px 0 8px;
    width: calc(100% - 16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    animation: trailTopBottom 2.5s ease-in-out infinite;
}

@keyframes trailTopBottom {
    0%, 100% {
        transform: translateX(-100%);
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
}

.navbar::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    animation: trailBottomTop 2.5s ease-in-out infinite;
}

@keyframes trailBottomTop {
    0%, 100% {
        transform: translateX(100%);
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 82px;
    position: relative;
    z-index: 1;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    font-size: 34px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.4px;
    height: 100%;
    min-height: 82px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.3s ease;
}

.logo:hover {
    color: #5865F2;
    transform: translateY(-1px);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
}

.nav-link.active {
    color: #e9ecff;
    background: linear-gradient(180deg, rgba(88, 101, 242, 0.36) 0%, rgba(88, 101, 242, 0.22) 100%);
    border-color: rgba(88, 101, 242, 0.55);
}

.nav-link.active::after {
    content: none;
}

.nav-auth-button {
    color: #f7f8ff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid rgba(88, 101, 242, 0.6);
    background: linear-gradient(180deg, rgba(88, 101, 242, 0.38) 0%, rgba(88, 101, 242, 0.24) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-auth-button::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e6e9ff;
    box-shadow: 0 0 10px rgba(230, 233, 255, 0.75);
}

.nav-auth-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(88, 101, 242, 0.32);
    border-color: rgba(140, 150, 255, 0.85);
}

.nav-auth-button.active {
    border-color: rgba(170, 178, 255, 0.9);
    background: linear-gradient(180deg, rgba(88, 101, 242, 0.56) 0%, rgba(88, 101, 242, 0.34) 100%);
}

/* ===== Hero Section ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 60px;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-large {
    font-size: 80px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.logo-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, rgba(176, 188, 255, 0.35) 0%, rgba(160, 174, 255, 0.15) 36%, rgba(255, 255, 255, 0) 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: -1;
}

.tagline {
    font-size: 32px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== Buttons ===== */
.btn-discord {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #5865F2;
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-bottom: 60px;
}

.btn-discord:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4);
}

.btn-discord-large {
    width: 100%;
    max-width: 400px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #5865F2;
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin: 30px auto;
}

.btn-discord-large:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4);
}

.btn-logout {
    background: rgba(100, 100, 100, 0.5);
    color: #ffffff;
    padding: 12px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    margin-top: 20px;
}

.btn-logout:hover {
    background: rgba(150, 150, 150, 0.5);
    transform: translateY(-2px);
}

/* ===== Feature Cards ===== */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin: 0 auto 60px;
    max-width: 1200px;
}

.feature-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    padding: 18px;
    min-height: 150px;
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-label {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(196, 204, 255, 0.9);
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.feature-copy {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(235, 238, 255, 0.75);
}

/* ===== CTA Section ===== */
.cta-section {
    margin-top: 60px;
}

.cta-text {
    font-size: 24px;
    margin-bottom: 20px;
}

.arrow-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.arrow-btn:hover {
    transform: scale(1.1);
}

.arrow-btn svg {
    filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.3));
}

/* ===== Demo Section ===== */
.demo-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.video-container {
    width: 100%;
    max-width: 900px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.video-container video {
    width: 100%;
    border-radius: 12px;
    max-height: 500px;
}

.video-placeholder {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
}

/* ===== Login Section ===== */
.login-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
}

.login-card {
    background: rgba(40, 40, 40, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    max-width: 550px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.card-header h2 {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    padding: 12px 30px;
    border: 2px solid rgba(100, 100, 100, 0.5);
    border-radius: 12px;
    display: inline-block;
}

.discord-icon {
    margin: 40px 0;
}

.logo-footer {
    font-size: 48px;
    font-weight: bold;
    color: #ffffff;
    margin-top: 40px;
}

/* ===== Account Section ===== */
.account-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
}

.account-page-brand {
    text-align: center;
    font-size: 54px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
}

.account-card {
    background: rgba(40, 40, 40, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.card-top {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 28px;
}

.card-top h2 {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.profile-section {
    margin: 30px 0;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 3px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.profile-pic img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

#avatarPlaceholder {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
}

.user-info {
    margin: 30px 0;
}

.welcome-text {
    font-size: 22px;
    margin-bottom: 20px;
}

.dates-info {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* ===== Terms Section ===== */
.terms-section {
    min-height: calc(100vh - 80px);
    padding: 120px 20px 60px;
    background: rgba(0, 0, 0, 0.3);
}

.terms-header {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.terms-header .logo {
    font-size: 64px;
    font-weight: bold;
}

.terms-title h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.last-updated {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.terms-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.terms-box {
    background: rgba(40, 40, 40, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(100, 100, 100, 0.3);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.terms-box:hover {
    border-color: rgba(88, 101, 242, 0.5);
    background: rgba(50, 50, 50, 0.7);
}

.terms-box h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
}

.terms-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #5865F2;
}

.terms-box h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.terms-box p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.terms-box ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

.terms-box li {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.terms-intro {
    font-weight: 500;
}

.support-link {
    color: #5865F2;
    text-decoration: none;
    font-weight: 600;
}

.support-link:hover {
    text-decoration: underline;
}

.info-box {
    text-align: center;
    margin-top: 20px;
}

.terms-link-button {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.2), rgba(88, 101, 242, 0.1));
    border: 2px solid rgba(88, 101, 242, 0.5);
    border-radius: 12px;
    color: #5865F2;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.terms-link-button:hover {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.3), rgba(88, 101, 242, 0.2));
    border-color: #5865F2;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.3);
}

/* ===== Premium Section ===== */
.premium-section {
    min-height: calc(100vh - 80px);
    padding: 110px 20px 45px;
}

.premium-container {
    max-width: 760px;
}

.premium-header {
    text-align: center;
    margin-bottom: 18px;
}

.premium-kicker {
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 10px;
}

.premium-header h1 {
    font-size: 36px;
    margin-bottom: 8px;
}

.premium-header p {
    max-width: 620px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.86);
}

.premium-card {
    background: rgba(20, 20, 20, 0.72);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 18px;
    align-items: stretch;
}

.premium-visual {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 16px;
    padding: 14px;
    overflow: hidden;
    min-height: 255px;
    display: flex;
}

.premium-glow {
    position: absolute;
    top: -90px;
    right: -70px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.5) 0%, rgba(88, 101, 242, 0.02) 70%);
    pointer-events: none;
}

.premium-mini-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    width: 100%;
    height: 100%;
    flex: 1;
}

.premium-mini-card {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    padding: 12px 10px;
    background-image: linear-gradient(180deg, rgba(8, 8, 8, 0.55) 0%, rgba(8, 8, 8, 0.45) 100%), url('background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.premium-mini-card p {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 4px;
}

.premium-mini-card h3 {
    font-size: 15px;
    line-height: 1.2;
}

.premium-details {
    display: flex;
    flex-direction: column;
}

.premium-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.premium-price-row h2 {
    font-size: 22px;
}

.premium-badge {
    background: rgba(88, 101, 242, 0.2);
    color: #bfc6ff;
    border: 1px solid rgba(88, 101, 242, 0.45);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.premium-price-block {
    margin-bottom: 14px;
}

.premium-price {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.premium-price-note {
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
}

.premium-features {
    list-style: disc;
    display: block;
    margin: 0 0 18px 22px;
    padding: 0;
    columns: 2;
    column-gap: 26px;
}

.premium-features li {
    padding: 0;
    margin: 0 0 8px 0;
    line-height: 1.35;
    font-size: 14px;
}

.premium-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.premium-actions .btn-discord {
    margin-bottom: 0;
    padding: 11px 22px;
    font-size: 15px;
}

.premium-secondary-link {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 13px;
}

.premium-secondary-link:hover {
    color: #5865F2;
}

.premium-actions-secondary {
    margin-top: 20px;
}

.premium-secondary-button {
    display: inline-block;
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.15), rgba(88, 101, 242, 0.08));
    border: 1px solid rgba(88, 101, 242, 0.4);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.premium-secondary-button:hover {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.25), rgba(88, 101, 242, 0.15));
    border-color: rgba(88, 101, 242, 0.6);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.2);
}

/* ===== Footer ===== */
.footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #5865F2;
}

.footer-premium-plus-button {
    color: #f7f8ff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(88, 101, 242, 0.6);
    background: linear-gradient(180deg, rgba(88, 101, 242, 0.3) 0%, rgba(88, 101, 242, 0.18) 100%);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.footer-premium-plus-button:hover {
    border-color: rgba(140, 150, 255, 0.85);
    background: linear-gradient(180deg, rgba(88, 101, 242, 0.45) 0%, rgba(88, 101, 242, 0.28) 100%);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.25);
}

.footer-premium-plus-button.active {
    border-color: rgba(170, 178, 255, 0.9);
    background: linear-gradient(180deg, rgba(88, 101, 242, 0.5) 0%, rgba(88, 101, 242, 0.3) 100%);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .navbar {
        padding: 0;
    }

    .nav-container {
        gap: 10px;
        padding: 0 14px;
        min-height: 74px;
    }

    .logo {
        min-height: 74px;
    }

    .nav-right {
        gap: 6px;
    }

    .hero-section {
        padding: 110px 14px 56px;
    }

    .hero-shell {
        max-width: 600px;
    }

    .hero-main {
        padding: 24px;
    }

    .hero-main::before {
        top: -210px;
        width: 620px;
        height: 500px;
    }

    .hero-main::after {
        top: -130px;
        width: 560px;
        height: 340px;
    }

    .logo-large {
        font-size: 56px;
    }

    .tagline {
        font-size: 20px;
    }

    .hero-actions {
        gap: 10px;
    }

    .feature-cards {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .feature-card {
        width: 100%;
        max-width: none;
        min-height: 130px;
    }

    .nav-links {
        gap: 4px;
        padding: 3px;
        overflow-x: auto;
        scrollbar-width: none;
        max-width: 56vw;
    }

    .nav-links::-webkit-scrollbar {
        display: none;
    }

    .nav-link {
        font-size: 13px;
        padding: 7px 10px;
        white-space: nowrap;
    }

    .nav-auth-button {
        font-size: 12px;
        padding: 7px 12px;
        white-space: nowrap;
    }

    .terms-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .terms-header .logo {
        font-size: 48px;
    }

    .terms-title h1 {
        font-size: 28px;
    }

    .premium-header h1 {
        font-size: 30px;
    }

    .premium-header p {
        font-size: 14px;
    }

    .premium-card {
        padding: 18px;
        grid-template-columns: 1fr;
    }

    .premium-mini-grid {
        grid-template-columns: 1fr 1fr;
    }

    .premium-price-row {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 16px;
    }

    .premium-price {
        font-size: 28px;
    }

    .account-page-brand {
        font-size: 44px;
        margin-bottom: 12px;
    }

    .premium-features {
        columns: 1;
    }

    .login-card,
    .account-card {
        padding: 30px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 28px;
    }

    .nav-links {
        max-width: 52vw;
    }

    .nav-auth-button {
        padding: 7px 10px;
    }

    .hero-main {
        padding: 20px;
        border-radius: 18px;
    }

    .hero-main::before {
        top: -180px;
        width: 500px;
        height: 420px;
        opacity: 0.72;
    }

    .hero-main::after {
        top: -110px;
        width: 420px;
        height: 280px;
    }

    .logo-large {
        font-size: 44px;
    }

    .tagline {
        font-size: 18px;
    }

    .hero-fill-copy {
        font-size: 13px;
    }

    .hero-fill-points span {
        font-size: 11px;
        padding: 7px 10px;
    }

    .spotlight-grid {
        grid-template-columns: 1fr;
    }

    .btn-discord {
        padding: 12px 30px;
        font-size: 16px;
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }

    .feature-card h3 {
        font-size: 14px;
    }

    .feature-copy {
        font-size: 12px;
    }

    .cta-text {
        font-size: 18px;
    }

    .premium-header h1 {
        font-size: 26px;
    }

    .premium-price-row h2 {
        font-size: 20px;
    }

    .premium-price {
        font-size: 24px;
    }

    .account-page-brand {
        font-size: 36px;
    }
}
