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

body {
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0418;
    background-image:
        radial-gradient(ellipse at 50% 80%, rgba(88, 28, 135, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 20%, rgba(59, 7, 100, 0.3) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 30%, rgba(30, 10, 60, 0.5) 0%, transparent 35%);
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

/* Background glows */
.bg-glow {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.bg-glow-1 {
    width: 600px;
    height: 600px;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(128, 45, 255, 0.25) 0%, transparent 70%);
    animation: breathe 6s ease-in-out infinite;
}

.bg-glow-2 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 5%;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.12) 0%, transparent 70%);
    animation: breathe 8s ease-in-out infinite reverse;
}

.bg-glow-3 {
    width: 250px;
    height: 250px;
    top: 20%;
    left: 8%;
    background: radial-gradient(circle, rgba(88, 28, 135, 0.2) 0%, transparent 70%);
    animation: breathe 7s ease-in-out infinite 2s;
}

.container {
    text-align: center;
    padding: 2rem 1.5rem;
    max-width: 520px;
    width: 100%;
    animation: fadeIn 1s ease-out;
    position: relative;
    z-index: 1;
}

/* Hero Image */
.hero-image {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.mascot {
    width: 320px;
    height: 320px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 30px 60px rgba(255, 153, 0, 0.35));
}

.glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(128, 45, 255, 0.3) 0%, rgba(255, 153, 0, 0.15) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 2.5s ease-in-out infinite;
}

/* Floating coins */
.coin {
    position: absolute;
    border-radius: 50%;
    z-index: 3;
    filter: drop-shadow(0 4px 12px rgba(245, 166, 35, 0.4));
}

.coin-1 {
    width: 72px;
    height: 72px;
    top: 10px;
    right: -40px;
    animation: coinFloat 4s ease-in-out infinite;
}

.coin-2 {
    width: 56px;
    height: 56px;
    bottom: 40px;
    left: -30px;
    animation: coinFloat 5s ease-in-out infinite reverse;
}

.coin-3 {
    width: 40px;
    height: 40px;
    top: 50%;
    right: -60px;
    animation: coinFloat 3.5s ease-in-out infinite 1s;
    opacity: 0.7;
}

/* Typography */
.title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #ffffff 0%, #f5a623 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.4;
    padding-bottom: 0.1em;
    white-space: nowrap;
}

.subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    background: linear-gradient(135deg, #f5a623 0%, #e8840c 100%);
    color: #000;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 25px rgba(245, 166, 35, 0.4);
    animation: glowPulse 2s ease-in-out infinite;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 35px rgba(245, 166, 35, 0.6);
}

.cta-button svg {
    flex-shrink: 0;
}

/* Links */
.links {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.links a:hover {
    color: #f5a623;
}

.divider {
    color: rgba(255, 255, 255, 0.2);
}

/* Social Links */
.socials {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.socials a {
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.socials a:hover {
    color: #f5a623;
    border-color: rgba(245, 166, 35, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.2);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 4px 25px rgba(245, 166, 35, 0.4);
    }
    50% {
        box-shadow: 0 4px 35px rgba(245, 166, 35, 0.6);
    }
}

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

@keyframes breathe {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
}

/* Mobile */
@media (max-width: 480px) {
    .mascot {
        width: 260px;
        height: 260px;
    }

    .title {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }

    .coin-1 {
        width: 56px;
        height: 56px;
        right: -20px;
    }

    .coin-2 {
        width: 44px;
        height: 44px;
        left: -15px;
    }

    .coin-3 {
        width: 32px;
        height: 32px;
        right: -35px;
    }
}
