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

body {
    font-family: 'Inter', sans-serif;
    color: white;
}

h1, h2, h3, .countdown-timer {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.05em;
}
/* Provider Carousel */
.provider-carousel-container {
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}
.provider-carousel {
    animation: scrollProviders 20s linear infinite;
    width: calc(120px * 40);
    gap: 40px;
}

@keyframes scrollProviders {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-120px * 20));
    }
}
.provider-logo {
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 120px;
    position: relative;
}
.provider-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.9);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    z-index: 20;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    min-width: 80px;
    text-align: center;
}
.provider-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: rgba(0,0,0,0.9) transparent transparent transparent;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.3));
}
.provider-logo:hover .provider-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(-8px);
    transition-delay: 0.1s;
}
.provider-logo img {
    filter: drop-shadow(0 0 5px currentColor);
    transition: all 0.3s ease;
}

.provider-logo:hover img {
    transform: scale(1.2);
    filter: drop-shadow(0 0 15px currentColor);
}

.provider-logo.text-neonblue img {
    filter: drop-shadow(0 0 5px rgba(15, 240, 252, 0.7));
}

.provider-logo.text-neonmagenta img {
    filter: drop-shadow(0 0 5px rgba(255, 0, 255, 0.7));
}

.provider-logo.text-white img {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.7));
}
/* Glass Panel Effect */
.glass-panel {
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Game Thumbnail Styles */
.game-thumbnail {
    min-width: 150px;
    height: 150px;
    background: rgba(20, 20, 20, 0.7);
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    border: 1px solid rgba(15, 240, 252, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.game-thumbnail::before {
    content: 'GAME PREVIEW';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 0 8px rgba(15, 240, 252, 0.5);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    white-space: nowrap;
}
.game-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 60%, rgba(15, 240, 252, 0.1) 100%);
    border-radius: 12px;
}
/* Hover Effects */
.game-thumbnail:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(15, 240, 252, 0.8);
    box-shadow: 0 10px 30px rgba(15, 240, 252, 0.3);
    background: rgba(30, 30, 30, 0.8);
    animation: thumbnailPulse 2s infinite ease-in-out;
    filter: blur(0.5px) brightness(1.1);
}

.game-thumbnail:hover::after {
    background: radial-gradient(circle at center, transparent 30%, rgba(15, 240, 252, 0.3) 100%);
}

@keyframes thumbnailPulse {
    0%, 100% {
        transform: translateY(-5px) scale(1.05);
        filter: blur(0.5px) brightness(1.1);
    }
    50% {
        transform: translateY(-5px) scale(1.08);
        filter: blur(0.8px) brightness(1.2);
    }
}
/* Carousel Animation */
.game-carousel {
    animation: scroll 30s linear infinite;
    width: calc(150px * 20);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-150px * 10));
    }
}
.game-carousel-container {
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}
/* Crypto Icons */
img[alt="BTC"],
img[alt="ETH"],
img[alt="USDT"],
img[alt="LTC"],
img[alt="DOGE"],
img[alt="SOL"],
img[alt="ADA"],
img[alt="MATIC"],
img[alt="BNB"] {
    transition: all 0.3s ease;
}
img[alt="BTC"]:hover { transform: scale(1.1); }
img[alt="ETH"]:hover { transform: scale(1.1); }
img[alt="USDT"]:hover { transform: scale(1.1); }
img[alt="LTC"]:hover { transform: scale(1.1); }
img[alt="DOGE"]:hover { transform: scale(1.1); }
img[alt="SOL"]:hover { transform: scale(1.1); }
img[alt="ADA"]:hover { transform: scale(1.1); }
img[alt="MATIC"]:hover { transform: scale(1.1); }
img[alt="BNB"]:hover { transform: scale(1.1); }

/* Tooltip styles for crypto names in main content */
.group {
    position: relative;
}
.group .provider-tooltip {
    bottom: auto;
    top: 100%;
    margin-top: 8px;
    margin-bottom: 0;
}
.group .provider-tooltip::after {
    top: auto;
    bottom: 100%;
    border-color: transparent transparent rgba(0,0,0,0.8) transparent;
}
/* Footer Styles */
footer a {
    transition: all 0.3s ease;
}

footer i {
    transition: all 0.3s ease;
}
/* Facebook Promo Popup */
.facebook-popup {
    animation: floatIn 1s ease-out forwards, pulse 2s infinite ease-in-out;
    opacity: 0;
    transform: translateX(20px);
}

@keyframes floatIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}
.holographic-panel {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(15, 240, 252, 0.3),
                0 0 40px rgba(255, 0, 255, 0.3);
    transition: all 0.3s ease;
}

.holographic-panel:hover {
    transform: scale(1.05);
box-shadow: 0 0 30px rgba(15, 240, 252, 0.5),
                0 0 60px rgba(255, 0, 255, 0.5);
}

.holographic-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(15, 240, 252, 0.2) 0%,
        rgba(255, 0, 255, 0.2) 50%,
        rgba(15, 240, 252, 0.2) 100%
    );
    animation: hologram 3s infinite alternate;
    z-index: -1;
}

@keyframes hologram {
    0% {
        opacity: 0.3;
        background-position: 0% 50%;
    }
    100% {
        opacity: 0.5;
        background-position: 100% 50%;
    }
}

.facebook-popup button {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.facebook-popup button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        transparent 45%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 55%
    );
    transform: rotate(30deg);
    animation: shine 3s infinite;
    z-index: -1;
}

@keyframes shine {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}
/* Interactive Particle Network */
.cosmic-web {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at center, rgba(10, 10, 10, 0.9) 0%, #0a0a0a 100%);
    overflow: hidden;
    z-index: 1;
}

.cosmic-web canvas {
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1;
}
/* Brand Logo Positioning */
.brand-logo {
    transition: all 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}
/* Star Field */
.cosmic-web::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 2%) 0 0,
        radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 2%) 50px 50px,
        radial-gradient(circle at 60% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 2%) 100px 100px;
    background-size: 150px 150px;
    animation: starMove 100s linear infinite;
    z-index: 2;
    pointer-events: none;
}
@keyframes starMove {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 1000px 500px;
    }
}
/* Cosmic Energy Waves */
.cosmic-web::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at center, transparent 60%, rgba(15, 240, 252, 0.05) 80%, transparent 100%);
    animation: pulseWave 12s infinite ease-in-out;
    z-index: 2;
    pointer-events: none;
}
@keyframes pulseWave {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}
