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

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

body {
    font-family: 'Rajdhani', sans-serif;
    background: #082229;
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(22, 214, 208, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(22, 214, 208, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(22, 214, 208, 0.05) 0%, transparent 50%);
    z-index: -2;
    animation: gradientShift 15s ease-in-out infinite alternate;
}

@keyframes gradientShift {
    0% {
        opacity: 0.6;
        transform: scale(1) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: scale(1.1) rotate(10deg);
    }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(22, 214, 208, 0.03) 50%, transparent 100%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(22, 214, 208, 0.03) 2px,
            rgba(22, 214, 208, 0.03) 4px
        );
    z-index: -1;
    pointer-events: none;
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    z-index: -1;
    pointer-events: none;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjc1IiBudW1PY3RhdmVzPSIxMCIvPjxmZUNvbG9yTWF0cml4IHR5cGU9InNhdHVyYXRlIiB2YWx1ZXM9IjAiLz48L2ZpbHRlcj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWx0ZXI9InVybCgjYSkiIG9wYWNpdHk9IjEiLz48L3N2Zz4=');
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

header {
    padding: 30px 0;
    background: linear-gradient(180deg, rgba(8, 34, 41, 0.95) 0%, rgba(8, 34, 41, 0) 100%);
    position: relative;
    z-index: 100;
    border-bottom: 1px solid rgba(22, 214, 208, 0.2);
}

header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.menu {
    display: flex;
    gap: 20px;
}

.menu a {
    color: #16d6d0;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    letter-spacing: 0.05em;
}

.menu a:hover, .menu a.active {
    background: rgba(22, 214, 208, 0.15);
    border: 2px solid #16d6d0;
    box-shadow: 
        0 0 20px rgba(22, 214, 208, 0.4),
        inset 0 0 20px rgba(22, 214, 208, 0.1);
    transform: translateY(-2px);
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    margin: 0;
    max-width: 200px;
    height: auto;
    text-align: center;
    position: relative;
    filter: drop-shadow(0 0 30px rgba(22, 214, 208, 0.8));
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(22, 214, 208, 0.6));
    }
    100% {
        filter: drop-shadow(0 0 40px rgba(22, 214, 208, 1));
    }
}

/* Animated Particles Background */
.particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #16d6d0;
    border-radius: 50%;
    opacity: 0.3;
    animation: floatParticle 20s infinite ease-in-out;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.2;
    }
    25% {
        transform: translate(100px, -100px) scale(1.2);
        opacity: 0.4;
    }
    50% {
        transform: translate(-50px, -200px) scale(0.8);
        opacity: 0.3;
    }
    75% {
        transform: translate(-100px, -100px) scale(1.1);
        opacity: 0.5;
    }
}

/* Hero Split Layout */
.hero-split {
    padding: 80px 0 100px;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-left {
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.hero-right {
    opacity: 0;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease forwards 0.2s;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.brand-title {
    width: 100%;
}

.brand-title h1 {
    font-size: 4rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    color: #16d6d0;
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 0 30px rgba(22, 214, 208, 0.6);
}

.brand-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #16d6d0, transparent);
    margin: 20px 0 30px 0;
    animation: expandLine 1s ease forwards 0.5s;
    transform-origin: left;
}

@keyframes expandLine {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.tagline {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 20px 0;
    letter-spacing: 0.05em;
    width: 100%;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0 0 30px 0;
    max-width: 100%;
    width: 100%;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(135deg, #16d6d0, #0ea5a0);
    color: #082229;
    padding: 15px 45px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 auto 40px auto;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(22, 214, 208, 0.3);
    position: relative;
    overflow: hidden;
    align-self: center;
    min-width: 300px;
}

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

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

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(22, 214, 208, 0.5);
}

.cta-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.cta-logo img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.cta-text {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0;
    width: 100%;
}

.stat-card {
    background: linear-gradient(135deg, rgba(22, 214, 208, 0.1), rgba(8, 34, 41, 0.8));
    border: 2px solid rgba(22, 214, 208, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #16d6d0;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(22, 214, 208, 0.3);
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    color: #16d6d0;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Competition Card */
.competition-card {
    background: linear-gradient(135deg, rgba(22, 214, 208, 0.15), rgba(8, 34, 41, 0.9));
    border: 2px solid #16d6d0;
    border-radius: 25px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(22, 214, 208, 0.3);
    position: relative;
    overflow: hidden;
}

.competition-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(22, 214, 208, 0.1) 90deg,
        transparent 180deg
    );
    animation: rotateBg 10s linear infinite;
}

@keyframes rotateBg {
    100% { transform: rotate(360deg); }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #16d6d0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 2;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #16d6d0;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(22, 214, 208, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(22, 214, 208, 0);
    }
}

.countdown-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.time-block {
    text-align: center;
    min-width: 70px;
}

.time-value {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    color: #16d6d0;
    text-shadow: 0 0 20px rgba(22, 214, 208, 0.8);
    line-height: 1;
}

.time-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-top: 8px;
    letter-spacing: 0.1em;
}

.time-separator {
    font-size: 2.5rem;
    font-weight: 700;
    color: #16d6d0;
    opacity: 0.5;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.1; }
}

@keyframes digitFlip {
    0%, 100% { transform: rotateX(0deg); }
    50% { transform: rotateX(90deg); }
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.feature-item svg {
    flex-shrink: 0;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.quick-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(22, 214, 208, 0.05);
    border: 1px solid rgba(22, 214, 208, 0.3);
    border-radius: 12px;
    padding: 15px 20px;
    color: #16d6d0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quick-link:hover {
    background: rgba(22, 214, 208, 0.15);
    border-color: #16d6d0;
    transform: translateX(5px);
}

.quick-link .arrow {
    transition: transform 0.3s ease;
}

.quick-link:hover .arrow {
    transform: translateX(5px);
}

/* Info Cards Section */
.info-section {
    padding: 80px 0;
    position: relative;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    background: linear-gradient(135deg, rgba(22, 214, 208, 0.08), rgba(8, 34, 41, 0.9));
    border: 2px solid rgba(22, 214, 208, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}

.slide-up {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.info-card:hover {
    border-color: #16d6d0;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(22, 214, 208, 0.3);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #16d6d0;
    filter: drop-shadow(0 0 20px rgba(22, 214, 208, 0.5));
}

.card-icon i {
    color: #16d6d0;
    transition: all 0.3s ease;
}

.info-card:hover .card-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 30px rgba(22, 214, 208, 0.8));
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #16d6d0;
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
}

.info-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.hero {
    padding: 40px 0;
    text-align: center;
    position: relative;
}

.hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #16d6d0 0%, #0ea5a0 50%, #16d6d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: textShine 3s linear infinite;
}

@keyframes textShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.countdown-container {
    background: linear-gradient(135deg, rgba(22, 214, 208, 0.1) 0%, rgba(8, 34, 41, 0.8) 100%);
    border: 2px solid #16d6d0;
    border-radius: 20px;
    padding: 40px;
    margin: 40px auto;
    max-width: 700px;
    box-shadow: 
        0 0 40px rgba(22, 214, 208, 0.3),
        inset 0 0 40px rgba(22, 214, 208, 0.05);
    position: relative;
    overflow: hidden;
}

.countdown-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(22, 214, 208, 0.1) 50%,
        transparent 60%
    );
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.countdown-label {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #16d6d0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 2;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.countdown-item {
    background: linear-gradient(135deg, rgba(8, 34, 41, 0.9), rgba(22, 214, 208, 0.1));
    border: 2px solid #16d6d0;
    border-radius: 12px;
    padding: 20px;
    min-width: 90px;
    box-shadow: 
        0 0 20px rgba(22, 214, 208, 0.4),
        inset 0 0 20px rgba(22, 214, 208, 0.1);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 30px rgba(22, 214, 208, 0.6),
        inset 0 0 30px rgba(22, 214, 208, 0.2);
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #16d6d0;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 20px rgba(22, 214, 208, 0.8);
}

.countdown-unit {
    font-size: 0.8rem;
    color: #16d6d0;
    opacity: 0.7;
    text-transform: uppercase;
    margin-top: 8px;
    letter-spacing: 0.1em;
}

.prize-pool {
    background: linear-gradient(135deg, rgba(22, 214, 208, 0.15), rgba(8, 34, 41, 0.9));
    border: 3px solid #16d6d0;
    border-radius: 25px;
    padding: 50px 40px;
    margin: 40px auto;
    max-width: 900px;
    box-shadow: 
        0 0 50px rgba(22, 214, 208, 0.5),
        0 0 100px rgba(22, 214, 208, 0.3),
        inset 0 0 50px rgba(22, 214, 208, 0.1);
    position: relative;
    overflow: hidden;
    animation: prizePulse 4s ease-in-out infinite;
}

@keyframes prizePulse {
    0%, 100% { 
        box-shadow: 
            0 0 50px rgba(22, 214, 208, 0.5),
            0 0 100px rgba(22, 214, 208, 0.3),
            inset 0 0 50px rgba(22, 214, 208, 0.1);
    }
    50% { 
        box-shadow: 
            0 0 70px rgba(22, 214, 208, 0.7),
            0 0 120px rgba(22, 214, 208, 0.5),
            inset 0 0 70px rgba(22, 214, 208, 0.2);
    }
}

.prize-pool::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(22, 214, 208, 0.2) 45deg,
        transparent 90deg
    );
    animation: rotate 6s linear infinite;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.prize-label {
    font-size: 1.6rem;
    color: #16d6d0;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.15em;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 20px rgba(22, 214, 208, 0.8);
}

.prize-amount {
    font-size: 5rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    text-shadow: 
        0 0 20px rgba(22, 214, 208, 1),
        0 0 40px rgba(22, 214, 208, 0.8),
        0 0 60px rgba(22, 214, 208, 0.6),
        0 5px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    letter-spacing: 0.05em;
    animation: amountGlow 3s ease-in-out infinite alternate;
}

@keyframes amountGlow {
    from {
        text-shadow: 
            0 0 20px rgba(22, 214, 208, 1),
            0 0 40px rgba(22, 214, 208, 0.8),
            0 0 60px rgba(22, 214, 208, 0.6),
            0 5px 15px rgba(0, 0, 0, 0.5);
    }
    to {
        text-shadow: 
            0 0 30px rgba(22, 214, 208, 1),
            0 0 60px rgba(22, 214, 208, 1),
            0 0 90px rgba(22, 214, 208, 0.8),
            0 5px 20px rgba(0, 0, 0, 0.7);
    }
}

.play-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #16d6d0 0%, #0ea5a0 100%);
    color: #082229;
    padding: 30px 90px;
    border-radius: 20px;
    font-size: 2.2rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    margin: 40px 0;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 40px rgba(22, 214, 208, 0.6),
        inset 0 -5px 20px rgba(0, 0, 0, 0.2),
        inset 0 5px 20px rgba(255, 255, 255, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.15em;
    min-width: 420px;
    font-family: 'Orbitron', sans-serif;
}

.play-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.play-button:hover::before {
    width: 400px;
    height: 400px;
}

.play-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 60px rgba(22, 214, 208, 0.8),
        0 0 100px rgba(22, 214, 208, 0.6),
        inset 0 -5px 20px rgba(0, 0, 0, 0.2),
        inset 0 5px 20px rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.8);
}

.stake-logo {
    width: 70px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(8, 34, 41, 0.8));
}

.stake-logo svg {
    width: 100%;
    height: 100%;
    fill: #082229;
}

.play-button span {
    order: 2;
    position: relative;
    z-index: 2;
    text-shadow: 
        0 2px 5px rgba(0, 0, 0, 0.3);
}

.play-button .stake-logo {
    order: 1;
}

.play-button-small {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #16d6d0 0%, #0ea5a0 100%);
    color: #082229;
    padding: 15px 35px;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    margin: 30px auto;
    transition: all 0.3s ease;
    box-shadow: 
        0 5px 20px rgba(22, 214, 208, 0.6),
        inset 0 -3px 10px rgba(0, 0, 0, 0.2),
        inset 0 3px 10px rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.1em;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
}

.play-button-small::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.play-button-small:hover::before {
    width: 300px;
    height: 300px;
}

.play-button-small:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 30px rgba(22, 214, 208, 0.8),
        0 0 50px rgba(22, 214, 208, 0.6),
        inset 0 -3px 10px rgba(0, 0, 0, 0.2),
        inset 0 3px 10px rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.8);
}

.play-button-small .stake-logo {
    width: 50px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 8px rgba(8, 34, 41, 0.8));
}

.play-button-small .stake-logo svg {
    width: 100%;
    height: 100%;
    fill: #082229;
}

.play-button-small span {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.button-wrapper {
    text-align: center;
    padding: 20px 0;
}

/* Page CTA Banner */
.page-cta {
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(22, 214, 208, 0.05), rgba(8, 34, 41, 0.8));
    border-top: 1px solid rgba(22, 214, 208, 0.2);
    border-bottom: 1px solid rgba(22, 214, 208, 0.2);
    position: relative;
    overflow: hidden;
}

.page-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(22, 214, 208, 0.1) 0%, transparent 70%);
    animation: rotateBg 20s linear infinite;
}

.cta-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #16d6d0;
    margin-bottom: 10px;
    font-family: 'Orbitron', sans-serif;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.cta-button-alt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, #16d6d0, #0ea5a0);
    color: #082229;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(22, 214, 208, 0.4);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.cta-button-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

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

.cta-button-alt:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(22, 214, 208, 0.6);
}

.leaderboard {
    background: linear-gradient(135deg, rgba(22, 214, 208, 0.08), rgba(8, 34, 41, 0.9));
    border: 2px solid #16d6d0;
    border-radius: 20px;
    padding: 40px 30px;
    margin: 50px auto;
    max-width: 900px;
    box-shadow: 
        0 0 40px rgba(22, 214, 208, 0.3),
        inset 0 0 40px rgba(22, 214, 208, 0.05);
}

@media (max-width: 600px) {
    .leaderboard {
        margin-left: 10px;
        margin-right: 10px;
    }
}

.leaderboard h3 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
    color: #16d6d0;
    text-shadow: 0 0 30px rgba(22, 214, 208, 0.8);
    letter-spacing: 0.1em;
}

.leaderboard-header {
    display: grid;
    grid-template-columns: 60px 2fr 1fr 1fr;
    gap: 20px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(22, 214, 208, 0.2), rgba(22, 214, 208, 0.1));
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #16d6d0;
    align-items: center;
    border: 1px solid rgba(22, 214, 208, 0.3);
}

.leaderboard-header > div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.leaderboard-header > div:nth-child(2) {
    justify-content: flex-start;
}

.leaderboard-header.three-col {
    grid-template-columns: 1fr 1fr 1fr;
}

.leaderboard-header.three-col > div {
    text-align: center;
    justify-content: center;
}

.leaderboard-item {
    display: grid;
    grid-template-columns: 60px 2fr 1fr 1fr;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(22, 214, 208, 0.05), rgba(8, 34, 41, 0.8));
    border: 1px solid rgba(22, 214, 208, 0.3);
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    align-items: center;
}

.leaderboard-item.three-col {
    grid-template-columns: 1fr 1fr 1fr;
}

.leaderboard-item.three-col > div {
    justify-content: center;
}

.leaderboard-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(22, 214, 208, 0.2), transparent);
    transition: left 0.5s;
}

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

.leaderboard-item:hover {
    transform: translateX(8px);
    background: linear-gradient(135deg, rgba(22, 214, 208, 0.12), rgba(8, 34, 41, 0.9));
    border-color: #16d6d0;
    box-shadow: 
        0 0 25px rgba(22, 214, 208, 0.4),
        inset 0 0 25px rgba(22, 214, 208, 0.1);
}

.rank {
    font-size: 1.6rem;
    font-weight: 700;
    color: #16d6d0;
    font-family: 'Orbitron', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rank.gold { 
    color: #ffd700; 
    text-shadow: 0 0 15px #ffd700;
}
.rank.silver { 
    color: #c0c0c0; 
    text-shadow: 0 0 15px #c0c0c0;
}
.rank.bronze { 
    color: #cd7f32; 
    text-shadow: 0 0 15px #cd7f32;
}

.username {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.wager {
    font-size: 1.3rem;
    color: #16d6d0;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prize {
    font-size: 1.3rem;
    color: #4ade80;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.6);
}

footer {
    background: linear-gradient(180deg, rgba(8, 34, 41, 0) 0%, rgba(8, 34, 41, 0.95) 100%);
    border-top: 2px solid rgba(22, 214, 208, 0.3);
    padding: 40px 0;
    margin-top: 100px;
}

.footer-content {
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.social-links a {
    color: #16d6d0;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 12px 24px;
    border: 2px solid rgba(22, 214, 208, 0.3);
    border-radius: 10px;
    background: rgba(22, 214, 208, 0.05);
}

.social-links a:hover {
    color: #fff;
    border-color: #16d6d0;
    background: rgba(22, 214, 208, 0.15);
    transform: translateY(-3px);
    box-shadow: 
        0 5px 20px rgba(22, 214, 208, 0.4),
        inset 0 0 20px rgba(22, 214, 208, 0.1);
}

.social-links img {
    height: 30px;
    max-width: 100%;
    object-fit: contain;
    vertical-align: middle;
    filter: brightness(0) saturate(100%) invert(72%) sepia(51%) saturate(577%) hue-rotate(124deg) brightness(96%) contrast(91%);
    transition: filter 0.3s ease;
}

.social-links a:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

/* Footer Updates */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand h3 {
    color: #16d6d0;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .header-content {
        gap: 15px;
    }
    
    .logo { 
        font-size: 2rem;
        max-width: 150px;
    }
    .menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    .menu a {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    
    /* Hero Split - Stack on Mobile */
    .hero-split {
        padding: 40px 0 60px;
        min-height: auto;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .brand-title h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 350px;
        justify-content: center;
        padding: 14px 30px;
        font-size: 1rem;
        gap: 15px;
        min-width: auto;
    }
    
    .cta-logo img {
        width: 60px !important;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .time-block {
        min-width: 50px;
    }
    
    .time-value {
        font-size: 2rem;
    }
    
    .time-separator {
        font-size: 1.8rem;
    }
    
    .competition-card {
        padding: 30px 20px;
    }
    
    .countdown-grid {
        gap: 8px;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-button-alt {
        width: 100%;
        max-width: 300px;
        padding: 14px 30px;
        font-size: 1rem;
        gap: 12px;
    }
    
    .cta-button-alt .cta-logo img {
        width: 60px !important;
    }
    
    .hero h2 { font-size: 2.2rem; }
    .countdown { flex-wrap: wrap; }
    
    .leaderboard {
        padding: 20px 10px;
        margin: 30px 10px;
    }
    
    .leaderboard h3 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .leaderboard-header {
        gap: 10px;
        padding: 10px 5px;
        font-size: 0.75rem;
    }
    
    .leaderboard-item {
        gap: 10px;
        padding: 12px 5px;
        font-size: 0.85rem;
    }
    
    .rank {
        font-size: 1.3rem;
    }
    
    .username {
        font-size: 0.95rem;
    }
    
    .wager, .prize {
        font-size: 0.95rem;
    }
    
    .play-button { 
        padding: 20px 40px;
        font-size: 1.4rem;
        min-width: auto;
        width: 90%;
        max-width: 350px;
    }
    
    .play-button-small {
        padding: 12px 24px;
        font-size: 1.1rem;
        gap: 10px;
    }
    
    .play-button-small .stake-logo {
        width: 40px;
        height: 20px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }
    .social-links a {
        width: 80%;
        max-width: 300px;
        overflow: hidden;
    }
    
    .social-links img {
        height: 25px;
        max-width: 80px;
    }
    
    .social-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
}
