.landing-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: url('/uploads/images/hero-bg.png') center center / cover no-repeat;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.45) 40%,
        rgba(0, 0, 0, 0.6) 100%
    );
    pointer-events: none;
}

.landing-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 60px 20px;
}

.landing-headline {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
    line-height: 1.1;
}

.landing-subheadline {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: #bbb;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-hero {
    display: inline-block;
    padding: 16px 44px;
    background: linear-gradient(135deg, #FFD700, #f0c000);
    color: #000;
    font-weight: 800;
    font-size: 1.15rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 4px 24px rgba(255, 215, 0, 0.25);
}

.btn-cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 32px rgba(255, 215, 0, 0.4);
}

.btn-login-hero {
    display: inline-block;
    margin-left: 16px;
    padding: 16px 32px;
    background: transparent;
    color: #FFD700;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-login-hero:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
}

.tiers-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #FFD700;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle-text {
    text-align: center;
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 60px;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.tier-card {
    background: linear-gradient(180deg, #151515 0%, #111 100%);
    border: 1px solid #222;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.tier-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.tier-card-featured {
    border-color: #FFD700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
}

.tier-card-featured:hover {
    border-color: #FFD700;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.2);
}

.tier-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700, #f0c000);
    color: #000;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 20px;
    border-radius: 20px;
    white-space: nowrap;
}

.tier-badge {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.tier-price {
    margin-bottom: 28px;
}

.price-amount {
    font-size: 2.8rem;
    font-weight: 900;
    color: #FFD700;
}

.price-period {
    font-size: 1rem;
    color: #888;
}

.tier-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    flex-grow: 1;
    text-align: left;
}

.tier-perks li {
    padding: 8px 0;
    color: #ccc;
    font-size: 0.92rem;
    border-bottom: 1px solid #1a1a1a;
    position: relative;
    padding-left: 24px;
}

.tier-perks li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

.tier-perks li:last-child {
    border-bottom: none;
}

.btn-tier {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
    border: none;
}

.btn-tier-free {
    background: transparent;
    color: #FFD700;
    border: 2px solid rgba(255, 215, 0, 0.4);
}

.btn-tier-free:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
}

.btn-tier-paid {
    background: linear-gradient(135deg, #FFD700, #f0c000);
    color: #000;
}

.btn-tier-paid:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.tier-card-active {
    border-color: #FFD700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
}

.tier-card-active .tier-badge::after {
    content: ' \2713';
    color: #FFD700;
}

.tier-active-label {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #f0c000);
    color: #000;
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.btn-tier-current {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    cursor: default;
    pointer-events: none;
}

.faq-section {
    padding: 100px 0;
    background: #0d0d0d;
}

.faq-list {
    max-width: 750px;
    margin: 40px auto 0;
}

.faq-item {
    border-bottom: 1px solid #222;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    color: #eee;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-icon {
    color: #FFD700;
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .tiers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .tiers-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .landing-hero {
        min-height: 70vh;
    }

    .auth-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .btn-login-hero {
        margin-left: 0;
    }

    .tiers-section, .faq-section {
        padding: 60px 0;
    }

    .discord-widget {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }

    .discord-join-btn {
        width: 100%;
        text-align: center;
    }
}

.discord-widget-section {
    padding: 30px 0 10px;
}

.discord-widget {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    transition: border-color 0.3s;
}

.discord-widget:hover {
    border-color: rgba(255, 215, 0, 0.35);
}

.discord-widget-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
}

.discord-widget-info {
    flex: 1;
    min-width: 0;
}

.discord-widget-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 4px;
}

.discord-widget-stats {
    display: flex;
    gap: 16px;
}

.discord-stat {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #999;
    font-size: 0.85rem;
}

.discord-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.discord-dot-online {
    background: #3ba55d;
    box-shadow: 0 0 4px rgba(59, 165, 93, 0.5);
}

.discord-dot-total {
    background: #72767d;
}

.discord-join-btn {
    flex-shrink: 0;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid #FFD700;
    color: #FFD700;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.discord-join-btn:hover {
    background: #FFD700;
    color: #000;
}
