/* gamelicensor.pro */
/* Palette: #0c0c1d, #161629, #a855f7, #7c3aed, #e2e8f0, #2d2d4a, #c084fc */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0c0c1d;
    color: #e2e8f0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.65;
    overflow-x: hidden;
}

/* =================== HERO =================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.pro-badge {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.6rem;
    background: #a855f7;
    color: #0c0c1d;
    padding: 4px 14px;
    border-radius: 12px;
    letter-spacing: 0.15em;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 7vw, 5rem);
    color: #e2e8f0;
    text-shadow: 0 0 30px rgba(168, 85, 247, 0.35), 0 0 60px rgba(168, 85, 247, 0.15);
    letter-spacing: -0.02em;
    text-align: center;
}

.brand-dot {
    color: #a855f7;
}

.tagline {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #8b8ba7;
    margin-top: 0.75rem;
    letter-spacing: 0.05em;
}

.gradient-line {
    height: 2px;
    width: 140px;
    background: linear-gradient(to right, transparent, #a855f7, transparent);
    margin-top: 1.5rem;
}

.hero-sub {
    font-size: 0.85rem;
    color: #6b6b87;
    margin-top: 1.5rem;
    max-width: 440px;
    text-align: center;
    line-height: 1.7;
}

/* =================== GRADIENT DIVIDER =================== */
.gradient-divider {
    height: 1px;
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(to right, transparent, #a855f7, transparent);
    opacity: 0.3;
}

/* =================== SECTION COMMON =================== */
.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #c084fc;
    margin-bottom: 0.5rem;
    text-align: center;
}

.section-desc {
    font-size: 0.85rem;
    color: #8b8ba7;
    text-align: center;
    margin-bottom: 2.5rem;
}

/* =================== FEATURES =================== */
.features {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.card {
    background: #161629;
    border: 1px solid #a855f7;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 0 12px rgba(168, 85, 247, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 24px rgba(168, 85, 247, 0.3), 0 8px 32px rgba(0, 0, 0, 0.4);
}

.card-icon {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(168, 85, 247, 0.08);
    border-radius: 10px;
    border: 1px solid #2d2d4a;
}

.card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.lock-icon {
    flex-shrink: 0;
}

.card-desc {
    font-size: 0.82rem;
    color: #8b8ba7;
    line-height: 1.6;
}

/* =================== PRICING =================== */
.pricing {
    max-width: 960px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.tier-row {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.tier {
    background: #161629;
    border: 1px solid #2d2d4a;
    border-radius: 14px;
    padding: 2.25rem 1.75rem;
    flex: 1;
    min-width: 240px;
    max-width: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tier:hover {
    transform: translateY(-3px);
}

.tier.highlight {
    border-color: #a855f7;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.25), 0 4px 40px rgba(124, 58, 237, 0.15);
    transform: scale(1.04);
    z-index: 2;
}

.tier.highlight:hover {
    transform: scale(1.06);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.35), 0 8px 50px rgba(124, 58, 237, 0.2);
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.6rem;
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: #e2e8f0;
    padding: 4px 16px;
    border-radius: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.tier-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #c084fc;
    margin-bottom: 0.75rem;
}

.tier-price {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.tier-period {
    font-size: 0.75rem;
    color: #8b8ba7;
    font-weight: 400;
}

.tier-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #2d2d4a, transparent);
    margin: 1rem 0;
}

.tier-features {
    list-style: none;
    text-align: left;
    flex: 1;
    margin-bottom: 1.5rem;
}

.tier-features li {
    font-size: 0.8rem;
    color: #8b8ba7;
    padding: 0.35rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.tier-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #7c3aed;
}

.tier-btn {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    border: 1px solid #2d2d4a;
    background: transparent;
    color: #e2e8f0;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.03em;
}

.tier-btn:hover {
    border-color: #a855f7;
    box-shadow: 0 0 12px rgba(168, 85, 247, 0.2);
}

.tier-btn-primary {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    border-color: transparent;
    color: #e2e8f0;
}

.tier-btn-primary:hover {
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
    transform: translateY(-1px);
}

/* =================== DASHBOARD =================== */
.dashboard {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.mock-dashboard {
    background: #161629;
    border: 1px solid #2d2d4a;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}

.mock-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
    background: #111126;
    border-bottom: 1px solid #2d2d4a;
}

.mock-topbar-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.mock-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    border: 1px solid #2d2d4a;
}

.mock-nav-item {
    font-size: 0.7rem;
    color: #6b6b87;
    cursor: default;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: color 0.2s;
}

.mock-nav-item.active {
    color: #e2e8f0;
    background: rgba(168, 85, 247, 0.1);
}

.mock-topbar-right {
    display: flex;
    align-items: center;
}

.mock-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a855f7, #7c3aed);
}

.mock-body {
    padding: 1.5rem;
}

.mock-stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mock-stat {
    background: #0c0c1d;
    border: 1px solid #2d2d4a;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
}

.mock-stat-label {
    display: block;
    font-size: 0.65rem;
    color: #6b6b87;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
}

.mock-stat-value {
    font-family: 'Fira Code', monospace;
    font-size: 1.4rem;
    color: #a855f7;
    font-weight: 400;
}

.mock-table-section {
    background: #0c0c1d;
    border: 1px solid #2d2d4a;
    border-radius: 10px;
    overflow: hidden;
}

.mock-table-header {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #2d2d4a;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: #c084fc;
}

.mock-table {
    width: 100%;
}

.mock-table-row {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 1.2fr;
    padding: 0.6rem 1rem;
    border-bottom: 1px solid #1a1a35;
    align-items: center;
    transition: background 0.2s ease;
}

.mock-table-row:last-child {
    border-bottom: none;
}

.mock-table-row:not(.mock-table-head):hover {
    background: rgba(168, 85, 247, 0.03);
}

.mock-table-head {
    background: rgba(45, 45, 74, 0.3);
    font-size: 0.65rem;
    color: #6b6b87;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.mock-col-key code {
    font-family: 'Fira Code', monospace;
    font-size: 0.72rem;
    color: #e2e8f0;
    background: rgba(168, 85, 247, 0.08);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
}

.mock-col-game {
    font-size: 0.78rem;
    color: #e2e8f0;
}

.mock-col-status {
    font-size: 0.72rem;
}

.mock-col-date {
    font-family: 'Fira Code', monospace;
    font-size: 0.7rem;
    color: #6b6b87;
}

.status-badge {
    display: inline-block;
    font-size: 0.6rem;
    padding: 0.15rem 0.5rem;
    border-radius: 8px;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.status-badge.active {
    background: rgba(34, 197, 94, 0.12);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.status-badge.warning {
    background: rgba(250, 204, 21, 0.12);
    color: #facc15;
    border: 1px solid rgba(250, 204, 21, 0.25);
}

.status-badge.expired {
    background: rgba(239, 68, 68, 0.12);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

/* =================== CTA =================== */
.cta-section {
    text-align: center;
    padding: 2rem 0;
}

.cta-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #c084fc;
    margin-bottom: 0.5rem;
}

.cta-brand {
    font-size: 0.75rem;
    color: #4a4a6a;
    display: block;
    margin-top: 1rem;
    letter-spacing: 0.05em;
}

/* =================== FOOTER =================== */
.footer {
    padding: 0 1.5rem;
}

.footer-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: #4a4a6a;
}

.footer-copy {
    font-size: 0.7rem;
    color: #3a3a54;
}

/* =================== ANIMATIONS =================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in:nth-child(2) { transition-delay: 0.08s; }
.fade-in:nth-child(3) { transition-delay: 0.16s; }
.fade-in:nth-child(4) { transition-delay: 0.24s; }
.fade-in:nth-child(5) { transition-delay: 0.32s; }
.fade-in:nth-child(6) { transition-delay: 0.40s; }

/* Particle dot */
.particle {
    position: absolute;
    border-radius: 50%;
    background: #a855f7;
    opacity: 0;
    pointer-events: none;
}

/* =================== RESPONSIVE =================== */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .tier-row {
        flex-direction: column;
        align-items: center;
    }

    .tier {
        max-width: 100%;
        width: 100%;
    }

    .tier.highlight {
        transform: scale(1);
    }

    .tier.highlight:hover {
        transform: scale(1);
    }

    .mock-table-row {
        grid-template-columns: 1fr 1fr;
        gap: 0.3rem;
    }

    .mock-table-head {
        display: none;
    }

    .mock-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .mock-topbar-left {
        gap: 0.5rem;
    }

    .mock-nav-item {
        display: none;
    }

    .mock-nav-item.active {
        display: inline;
    }

    .footer-inner {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .mock-stats-row {
        grid-template-columns: 1fr;
    }
}
