/* === CSS Variables === */
:root {
    --bg-dark: #0a0e1a;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(255, 255, 255, 0.15);
    --primary: #ff6b35;
    --primary-glow: rgba(255, 107, 53, 0.3);
    --cyan: #00e5ff;
    --cyan-glow: rgba(0, 229, 255, 0.25);
    --gold: #ffd700;
    --gold-glow: rgba(255, 215, 0, 0.3);
    --text: #e8e8e8;
    --text-muted: #8a8fa8;
    --success: #00e676;
    --danger: #ff1744;
    --radius: 12px;
    --radius-lg: 16px;
}

/* === Reset & Base === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

h1,
h2,
h3,
h4 {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.highlight {
    color: var(--primary);
}

.highlight-cyan {
    color: var(--cyan);
}

a {
    color: var(--cyan);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--primary);
}

/* === Particles BG === */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* === Container === */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* === Glass Card === */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color 0.3s, transform 0.3s;
}

.glass-card:hover {
    border-color: var(--glass-border-hover);
}

/* === Header === */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 14, 26, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.header-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
}

.logo-icon {
    font-size: 1.4rem;
}

.nav-desktop {
    display: flex;
    gap: 24px;
}

.nav-desktop a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.nav-desktop a:hover {
    color: var(--text);
    border-bottom-color: var(--primary);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text);
    border-radius: 3px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}

.nav-mobile.active {
    max-height: 200px;
}

.nav-mobile a {
    display: block;
    padding: 12px 20px;
    color: var(--text-muted);
    border-top: 1px solid var(--glass-border);
    font-weight: 500;
}

.nav-mobile a:hover {
    color: var(--text);
    background: var(--bg-card);
}

/* === Hero === */
.hero {
    text-align: center;
    padding: 50px 10px 40px;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-glow);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 8px var(--primary-glow);
    }

    50% {
        box-shadow: 0 0 20px var(--primary-glow);
    }
}

.hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    margin-bottom: 16px;
    font-weight: 900;
}

.hero-sub {
    color: var(--text-muted);
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    max-width: 600px;
    margin: 0 auto 28px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #ff8f00);
    color: #fff;
    padding: 13px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px var(--primary-glow);
}

.btn-outline {
    border: 2px solid var(--cyan);
    color: var(--cyan);
    padding: 11px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    background: transparent;
}

.btn-outline:hover {
    background: var(--cyan-glow);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* === Features Grid === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 24px 18px;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.1);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.feature-card h3 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.feature-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* === Section Badge === */
.section-badge {
    display: inline-block;
    background: var(--gold-glow);
    color: var(--gold);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 215, 0, 0.25);
}

/* === Prime Section === */
.prime-section {
    text-align: center;
}

.prime-section h2 {
    font-size: clamp(1.3rem, 3.5vw, 1.8rem);
    margin-bottom: 12px;
}

.prime-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 24px;
    font-size: 0.95rem;
}

.prime-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}

.prime-card {
    background: rgba(255, 215, 0, 0.04);
    border: 1px solid rgba(255, 215, 0, 0.12);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    transition: all 0.3s;
}

.prime-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 20px var(--gold-glow);
    transform: translateY(-3px);
}

.prime-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.prime-card h4 {
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--gold);
}

.prime-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* === Step Sections === */
.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.step-num {
    background: linear-gradient(135deg, var(--primary), #ff8f00);
    color: #fff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
}

.step-header h3 {
    font-size: 1.1rem;
}

.step-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 18px;
}

/* === Login Box === */
.login-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
}

.input-group {
    display: flex;
    gap: 0;
}

.input-group input {
    flex: 1;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius) 0 0 var(--radius);
    color: var(--text);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
}

.input-group input:focus {
    border-color: var(--cyan);
}

.input-group input::placeholder {
    color: var(--text-muted);
}

.btn-action {
    background: linear-gradient(135deg, var(--primary), #ff8f00);
    color: #fff;
    border: none;
    padding: 0 24px;
    border-radius: 0 var(--radius) var(--radius) 0;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-action:hover {
    filter: brightness(1.15);
}

.uid-status {
    margin-top: 10px;
    font-size: 0.85rem;
    min-height: 20px;
}

.uid-status.success {
    color: var(--success);
}

.uid-status.error {
    color: var(--danger);
}

/* === Amount Grid === */
.grid-amounts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
}

.amount-card {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--glass-border);
    padding: 20px 14px;
    text-align: center;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.amount-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.12);
}

.amount-card.selected {
    border-color: var(--primary);
    background: rgba(255, 107, 53, 0.08);
    box-shadow: 0 0 0 1px var(--primary), 0 8px 25px var(--primary-glow);
}

.diamond-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.price-tag {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.price-pkr {
    color: var(--text-muted);
    font-size: 0.72rem;
    margin-top: 3px;
    opacity: 0.7;
}

.best-badge {
    position: absolute;
    top: 8px;
    right: -28px;
    background: var(--primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 32px;
    transform: rotate(45deg);
    letter-spacing: 0.5px;
}

.amount-card.best-value .best-badge {
    background: linear-gradient(135deg, var(--primary), #ff8f00);
}

.amount-card.popular .best-badge {
    background: linear-gradient(135deg, #ff1744, #ff6b35);
}

/* === Payment Box === */
.payment-box {
    background: rgba(240, 185, 11, 0.04);
    border: 1px solid rgba(240, 185, 11, 0.2);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 18px;
}

.payment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.payment-header small {
    color: var(--text-muted);
}

.address-container {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.4);
    padding: 12px 14px;
    border-radius: 8px;
    margin-top: 8px;
}

.address-container code {
    flex: 1;
    font-size: 0.78rem;
    word-break: break-all;
    color: var(--cyan);
}

.copy-btn {
    background: var(--cyan-glow);
    color: var(--cyan);
    border: 1px solid rgba(0, 229, 255, 0.3);
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s;
}

.copy-btn:hover {
    background: rgba(0, 229, 255, 0.3);
}

.payment-note {
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* === Order Summary === */
.order-summary {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
    padding: 0 10px;
}

.summary-val {
    font-weight: 700;
    color: var(--gold);
    font-family: 'Orbitron', sans-serif;
}

.buy-now {
    width: 100%;
    background: linear-gradient(135deg, #555, #444);
    color: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 15px;
    border-radius: var(--radius);
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    cursor: not-allowed;
    transition: all 0.4s;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.buy-now.ready {
    background: linear-gradient(135deg, var(--primary), #ff8f00);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 25px var(--primary-glow);
    animation: pulse-glow 2s infinite;
}

.buy-now.ready:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 35px var(--primary-glow);
}

/* === Roulette Section === */
.roulette-section {
    text-align: center;
}

.roulette-section h2 {
    font-size: clamp(1.3rem, 3.5vw, 1.7rem);
    margin-bottom: 10px;
}

.roulette-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 500px;
    margin: 0 auto 24px;
}

.wheel-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.wheel-pointer {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.8rem;
    color: var(--primary);
    z-index: 5;
    filter: drop-shadow(0 2px 6px var(--primary-glow));
    line-height: 1;
}

#wheelCanvas {
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.15), 0 0 60px rgba(0, 229, 255, 0.08);
    border: 3px solid var(--glass-border);
}

.spin-btn {
    background: linear-gradient(135deg, var(--primary), #ff8f00);
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 30px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px var(--primary-glow);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.spin-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 30px var(--primary-glow);
}

.spin-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.spin-btn:disabled .fa-sync-alt {
    animation: spin-icon 0.6s linear infinite;
}

@keyframes spin-icon {
    to {
        transform: rotate(360deg);
    }
}

.wheel-result {
    margin-top: 16px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: var(--text-muted);
    min-height: 30px;
    transition: color 0.3s;
}

.wheel-result.won {
    color: var(--gold);
    text-shadow: 0 0 15px var(--gold-glow);
}

/* === Diamond Claim Section === */
.diamond-claim-section {
    text-align: center;
}

.diamond-claim-section h2 {
    font-size: clamp(1.3rem, 3.5vw, 1.7rem);
    margin-bottom: 10px;
}

.claim-form-wrapper {
    margin-top: 20px;
    animation: fadeInUp 0.4s ease-out;
}

.claim-input-group {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 0 auto;
}

.claim-input-group input {
    flex: 1;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius) 0 0 var(--radius);
    color: var(--text);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
}

.claim-input-group input:focus {
    border-color: var(--cyan);
}

.claim-input-group input::placeholder {
    color: var(--text-muted);
}

.claim-input-group .btn-action {
    border-radius: 0 var(--radius) var(--radius) 0;
}

/* === How It Works === */
.how-it-works {
    text-align: center;
    margin-bottom: 30px;
}

.how-it-works h2 {
    font-size: clamp(1.3rem, 3.5vw, 1.7rem);
    margin-bottom: 24px;
}

.steps-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.flow-step {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 20px 16px;
    width: 150px;
    transition: all 0.3s;
}

.flow-step:hover {
    border-color: var(--cyan);
    transform: translateY(-3px);
}

.flow-icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.flow-step h4 {
    font-size: 0.82rem;
    margin-bottom: 4px;
}

.flow-step p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.flow-arrow {
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 700;
}

/* === Pages (About, Contact, etc.) === */
.page {
    display: none;
}

.page.active {
    display: block;
}

.page-content {
    max-width: 700px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: clamp(1.4rem, 4vw, 2rem);
    margin-bottom: 16px;
}

.page-content p {
    color: var(--text-muted);
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.page-content ul {
    list-style: none;
    margin: 0 0 18px 0;
}

.page-content li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-muted);
}

.page-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.contact-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: var(--cyan);
    transform: translateY(-3px);
}

.contact-card i {
    color: var(--cyan);
    margin-bottom: 12px;
}

.contact-card h4 {
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.contact-card p {
    font-size: 0.82rem;
    margin: 0;
}

/* === Footer === */
footer {
    border-top: 1px solid var(--glass-border);
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.footer-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

.footer-col h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.footer-col p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 3px 0;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding: 18px 20px;
    border-top: 1px solid var(--glass-border);
    max-width: 900px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* === Responsive === */
@media(max-width:768px) {
    .nav-desktop {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-mobile {
        display: flex;
    }

    .hero {
        padding: 30px 5px 30px;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-num {
        font-size: 1.2rem;
    }

    .grid-amounts {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .amount-card {
        padding: 16px 10px;
    }

    .diamond-amount {
        font-size: 0.95rem;
    }

    .steps-flow {
        flex-direction: column;
        gap: 8px;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .flow-step {
        width: 80%;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .address-container {
        flex-direction: column;
        text-align: center;
    }

    .address-container code {
        font-size: 0.72rem;
    }

    .prime-benefits {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:480px) {
    .container {
        padding: 12px;
    }

    .glass-card {
        padding: 20px 16px;
    }

    .hero h1 {
        font-size: 1.4rem;
    }

    .hero-sub {
        font-size: 0.9rem;
    }

    .btn-primary,
    .btn-outline {
        padding: 11px 22px;
        font-size: 0.9rem;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feature-card {
        padding: 18px 12px;
    }

    .grid-amounts {
        grid-template-columns: 1fr 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .prime-benefits {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .input-group {
        flex-direction: column;
        gap: 10px;
    }

    .input-group input {
        border-radius: var(--radius);
    }

    .btn-action {
        border-radius: var(--radius);
        padding: 12px;
        justify-content: center;
    }

    .claim-input-group {
        flex-direction: column;
        gap: 10px;
    }

    .claim-input-group input {
        border-radius: var(--radius);
    }

    .claim-input-group .btn-action {
        border-radius: var(--radius);
        padding: 12px;
        justify-content: center;
    }

    #wheelCanvas {
        width: 260px;
        height: 260px;
    }
}

/* === Animations === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass-card,
.feature-card,
.hero {
    animation: fadeInUp 0.6s ease-out both;
}

.feature-card:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.3s;
}

/* === Confetti === */
.confetti {
    position: fixed;
    top: -10px;
    z-index: 200;
    pointer-events: none;
    animation: confetti-fall 2.5s ease-in forwards;
    font-size: 1.2rem;
}

@keyframes confetti-fall {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }

    100% {
        opacity: 0;
        transform: translateY(100vh) rotate(720deg);
    }
}