@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
    --primary-yellow: #ffd700;
    --secondary-yellow: #ffeb3b;
    --black: #000000;
    --white: #ffffff;
    --dark-gray: #1a1a1a;
    --darker-gray: #0a0a0a;
    --card-bg: rgba(0, 0, 0, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

body {
    background: linear-gradient(135deg, var(--darker-gray) 0%, var(--black) 50%, var(--darker-gray) 100%);
    color: var(--white);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.particles-container {
    display: none;
    pointer-events: none;
}

body.home .particles-container {
    display: block;
}

.particles-container canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    filter: blur(1px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    animation: slideInFromTop 0.8s ease-out;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-yellow);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    animation: slideInFromLeft 0.8s ease-out 0.2s;
    animation-fill-mode: both;
}

.logo:hover {
    background: rgba(255, 215, 0, 0.1);
    text-shadow: 0 0 15px var(--primary-yellow);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-yellow);
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 1rem;
    list-style: none;
    animation: slideInFromRight 0.8s ease-out 0.2s;
    animation-fill-mode: both;
}

.nav-links li a {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-yellow);
    background: rgba(255, 215, 0, 0.1);
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 40px;
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
    animation: fadeIn 1s ease-out 0.4s;
    animation-fill-mode: both;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-yellow), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.buttons-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.action-btn {
    flex: 1;
    max-width: 200px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-yellow);
    border: 1px solid var(--primary-yellow);
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.action-btn:hover {
    background: var(--primary-yellow);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.bonus-action {
    background: linear-gradient(45deg, var(--primary-yellow), #ff9900);
    color: var(--black);
    border: none;
}

.explore-btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 2rem;
}

.explore-btn {
    background: transparent;
    border: none;
    color: var(--primary-yellow);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    animation: bounce 2s infinite;
}

.podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 50px;
    padding: 20px;
    background: linear-gradient(to bottom, rgba(26,26,26,0.6) 0%, rgba(26,26,26,0) 100%);
    border-radius: 10px;
}

.podium-spot {
    text-align: center;
    margin: 0 15px;
    animation: fadeIn 0.5s ease-out forwards;
}

.podium-spot:nth-child(2) { animation-delay: 0.2s; }
.podium-spot:nth-child(3) { animation-delay: 0.4s; }

.podium-spot:hover {
    transform: translateY(-10px);
}

.podium-block {
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 20px;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    position: relative;
}

.first-place {
    height: 240px;
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border-color: #ffd700;
}

.second-place {
    height: 200px;
    background: linear-gradient(135deg, #1a1a1a 0%, #222222 100%);
    border-color: #c0c0c0;
}

.third-place {
    height: 200px;
    background: linear-gradient(135deg, #1a1a1a 0%, #201a16 100%);
    border-color: #cd7f32;
}

.podium-number {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}

.first-place .podium-number { color: #ffd700; }
.second-place .podium-number { color: #c0c0c0; }
.third-place .podium-number { color: #cd7f32; }

.podium-name {
    font-size: 20px;
    margin: 5px 0;
    font-weight: bold;
}

.podium-wagered {
    font-size: 18px;
    margin: 8px 0;
    padding: 5px 10px;
    background: rgba(0,0,0,0.2);
    border-radius: 15px;
}

.podium-prize {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    padding: 8px 15px;
    border-radius: 20px;
    background: rgba(0,0,0,0.3);
}

.first-place .podium-prize { color: #ffd700; }
.second-place .podium-prize { color: #c0c0c0; }
.third-place .podium-prize { color: #cd7f32; }

.podium-medal {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.first-place .podium-medal { background: #ffd700; color: #000; }
.second-place .podium-medal { background: #c0c0c0; color: #000; }
.third-place .podium-medal { background: #cd7f32; color: #000; }

.page-section {
    min-height: 80vh;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-heading {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 3rem;
    text-align: center;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.show-all-btn {
    background: linear-gradient(45deg, var(--primary-yellow), #ff9900);
    color: var(--black);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.show-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.footer {
    position: relative;
    padding: 3rem 0;
    background: rgba(0, 0, 0, 0.9);
    min-height: 200px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    color: var(--white);
    font-size: 1.5rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    text-decoration: none;
}

.social-icon:hover {
    color: var(--primary-yellow);
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--primary-yellow);
}

.footer-text {
    color: var(--white);
    opacity: 0.7;
    text-align: center;
    font-size: 0.9rem;
}

.sliding-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.1;
}

.icon-row {
    width: 200%;
    height: 100%;
    display: flex;
    justify-content: space-around;
}

.icons-slide {
    display: flex;
    align-items: center;
    animation: slide 20s linear infinite;
}

.icons-slide i {
    font-size: 2.5rem;
    margin: 0 2rem;
    color: var(--primary-yellow);
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideInFromTop {
    0% { transform: translateY(-100px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes slideInFromLeft {
    0% { transform: translateX(-100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInFromRight {
    0% { transform: translateX(100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.95);
        padding: 1rem;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .hero {
        padding: 80px 1rem 120px;
        justify-content: flex-start;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .buttons-container {
        flex-direction: column;
        gap: 1rem;
    }

    .action-btn {
        width: 100%;
        justify-content: center;
        max-width: none;
    }

    .podium {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .podium-spot {
        width: 100%;
        margin: 10px 0;
        max-width: 350px;
    }

    .podium-block {
        width: 100%;
        height: auto;
        min-height: 180px;
        padding: 20px;
    }

    .section-heading {
        font-size: 2rem;
    }

    .page-section {
        padding: 3rem 1rem;
    }

    .footer {
        padding: 2rem 0 7rem;
    }

    .icons-slide i {
        font-size: 2rem;
        margin: 0 1.5rem;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .nav-links li a {
        font-size: 0.8rem;
        padding: 0.4rem;
    }

    .social-icon {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
}