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

:root {
    --orange-400: #fb923c;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-400: #a8a29e;
    --stone-500: #78716c;
    --stone-600: #57534e;
    --stone-700: #44403c;
    --stone-800: #292524;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
    background: linear-gradient(180deg, var(--stone-50) 0%, white 50%, rgba(251, 191, 36, 0.1) 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Floating Cards Background */
.floating-cards {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.floating-card {
    position: absolute;
    width: 80px;
    height: 110px;
    background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,255,255,0.5));
    border-radius: 8px;
    box-shadow: 
        0 4px 20px rgba(249, 115, 22, 0.15),
        inset 0 1px 0 rgba(255,255,255,0.8);
    border: 1px solid rgba(249, 115, 22, 0.2);
    opacity: 0;
    animation: float-card 25s linear infinite;
}

.floating-card::before {
    content: '🎴';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    opacity: 0.6;
}

.floating-card:nth-child(1) { left: 5%; animation-delay: 0s; }
.floating-card:nth-child(2) { left: 15%; animation-delay: -5s; }
.floating-card:nth-child(3) { left: 25%; animation-delay: -10s; }
.floating-card:nth-child(4) { left: 40%; animation-delay: -3s; }
.floating-card:nth-child(5) { left: 55%; animation-delay: -8s; }
.floating-card:nth-child(6) { left: 70%; animation-delay: -12s; }
.floating-card:nth-child(7) { left: 80%; animation-delay: -18s; }
.floating-card:nth-child(8) { left: 90%; animation-delay: -22s; }

@keyframes float-card {
    0% {
        transform: translateY(calc(100vh + 150px)) rotate(-8deg);
        opacity: 0;
    }
    5% {
        opacity: 0.5;
    }
    95% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-200px) rotate(12deg);
        opacity: 0;
    }
}

/* Main Container */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(249, 115, 22, 0.05);
    padding: 3rem 4rem;
    text-align: center;
    max-width: 600px;
    width: 100%;
    animation: fade-in 0.8s ease-out forwards;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.icon-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--orange-400) 0%, var(--amber-500) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 4s ease-in-out infinite, glow-pulse 3s ease-in-out infinite;
    box-shadow: 
        0 20px 40px rgba(249, 115, 22, 0.3),
        0 0 60px rgba(249, 115, 22, 0.2);
}

.icon-container span {
    font-size: 3.5rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes glow-pulse {
    0%, 100% { 
        box-shadow: 
            0 20px 40px rgba(249, 115, 22, 0.3),
            0 0 60px rgba(249, 115, 22, 0.2);
    }
    50% { 
        box-shadow: 
            0 25px 50px rgba(249, 115, 22, 0.4),
            0 0 80px rgba(249, 115, 22, 0.3);
    }
}

.title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.title .gradient {
    background: linear-gradient(135deg, var(--orange-500) 0%, var(--amber-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title .dark {
    color: var(--stone-800);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(249, 115, 22, 0.15) 100%);
    border: 1px solid rgba(249, 115, 22, 0.2);
    color: var(--orange-600);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 2rem;
    animation: pulse-badge 2s ease-in-out infinite;
}

.badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--orange-500);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.subtitle {
    font-size: 1.25rem;
    color: var(--stone-500);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.description {
    font-size: 1rem;
    color: var(--stone-400);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* Discord Button */
.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #5865F2;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.discord-btn:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
}

.discord-btn:active {
    transform: translateY(0);
}

.discord-icon {
    width: 24px;
    height: 24px;
}

/* Footer */
.footer {
    margin-top: 3rem;
    font-size: 0.75rem;
    color: var(--stone-400);
}

.footer a {
    color: var(--orange-500);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer a:hover {
    color: var(--orange-600);
}

/* Responsive */
@media (max-width: 640px) {
    .glass-card {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .icon-container {
        width: 100px;
        height: 100px;
    }

    .icon-container span {
        font-size: 2.5rem;
    }

    .floating-card {
        width: 60px;
        height: 85px;
    }

    .floating-card::before {
        font-size: 1.5rem;
    }
}

/* Ambient glow */
.ambient-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.ambient-glow.top {
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
}

.ambient-glow.bottom {
    bottom: -400px;
    right: -200px;
}

