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

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    background: #1a0a2e;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

.floating-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-image {
    position: absolute;
    width: 80px;
    height: 80px;
    object-fit: contain;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.floating-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 7s;
}

.floating-2 {
    top: 20%;
    right: 8%;
    animation-delay: 0.5s;
    animation-duration: 8s;
}

.floating-3 {
    top: 50%;
    left: 3%;
    animation-delay: 1s;
    animation-duration: 6.5s;
}

.floating-4 {
    top: 60%;
    right: 5%;
    animation-delay: 1.5s;
    animation-duration: 7.5s;
}

.floating-5 {
    top: 15%;
    left: 50%;
    animation-delay: 2s;
    animation-duration: 8.5s;
}

.floating-6 {
    top: 70%;
    left: 10%;
    animation-delay: 2.5s;
    animation-duration: 7s;
}

.floating-7 {
    top: 30%;
    right: 15%;
    animation-delay: 3s;
    animation-duration: 6s;
}

.floating-8 {
    top: 80%;
    right: 10%;
    animation-delay: 3.5s;
    animation-duration: 8s;
}

.floating-9 {
    top: 40%;
    left: 15%;
    animation-delay: 4s;
    animation-duration: 7.5s;
}

.floating-10 {
    top: 5%;
    right: 25%;
    animation-delay: 4.5s;
    animation-duration: 9s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) translateX(-10px) rotate(-5deg);
    }
    75% {
        transform: translateY(-30px) translateX(5px) rotate(3deg);
    }
}

.container {
    width: 100%;
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.content {
    background: #0f0f0f;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.logo-container {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: transparent;
    border-radius: 12px;
}

.main-logo {
    max-width: 200px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    padding: 0;
    background: transparent;
}

.partner-logo {
    max-width: 180px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.25rem;
    color: #e2e8f0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.cta-button:active {
    transform: translateY(0);
}

.button-description {
    font-size: 0.95rem;
    color: #cbd5e0;
    font-style: italic;
}

.leaderboard-button {
    background: linear-gradient(135deg, #4c1d95 0%, #2d1b3d 100%);
    color: white;
    border: none;
    padding: 16px 45px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 29, 149, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.leaderboard-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.6s ease;
    z-index: 2;
}

.leaderboard-button-wrapper {
    position: relative;
    display: inline-block;
    margin-top: 60px;
}

.logo-shadow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 120px;
    background-image: url('Logos/SweetFlips_Logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.2;
    filter: blur(12px) brightness(0.5);
    z-index: 0;
    pointer-events: none;
}

.leaderboard-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 29, 149, 0.7);
}

.leaderboard-button:hover::before {
    left: 100%;
}

.leaderboard-button:active {
    transform: translateY(0);
}

.leaderboard-button span {
    position: relative;
    z-index: 1;
}

.earn-box {
    margin-top: 40px;
    background: #0f0f0f;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    text-align: center;
    position: relative;
    z-index: 1;
}

.earn-logo {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.emerald-logo {
    max-width: 100px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.earn-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.earn-text {
    font-size: 1rem;
    color: #e2e8f0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.earn-box .cta-button {
    margin: 20px 0;
}

.earn-tagline {
    font-size: 0.95rem;
    color: #cbd5e0;
    font-style: italic;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .content {
        padding: 40px 30px;
    }

    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 16px 40px;
        font-size: 1rem;
    }

    .main-logo {
        max-width: 150px;
        max-height: 90px;
    }

    .partner-logos {
        gap: 20px;
    }

    .partner-logo {
        max-width: 140px;
        max-height: 60px;
    }

    .floating-image {
        width: 50px;
        height: 50px;
        opacity: 0.4;
    }

    .leaderboard-button {
        padding: 14px 35px;
        font-size: 0.95rem;
        margin-top: 25px;
    }

    .earn-box {
        padding: 30px 25px;
        margin-top: 30px;
    }

    .earn-title {
        font-size: 1.5rem;
    }

    .earn-text {
        font-size: 0.95rem;
    }

    .emerald-logo {
        max-width: 80px;
        max-height: 80px;
    }
}
