:root {
    /* Gaming Red & Dark Palette */
    --accent-red: #ff2a2a;
    --accent-red-glow: rgba(255, 42, 42, 0.5);
    --bg-main: #050505;
    --bg-darker: #000000;
    --text-main: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.6);
    
    /* Effects - More Aggressive Gaming Style */
    --glass-blur: 20px;
    --glass-bg: rgba(20, 20, 20, 0.7);
    --glass-border: rgba(255, 42, 42, 0.2);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --red-glow: 0 0 20px var(--accent-red-glow);
}

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

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-main);
    overscroll-behavior-y: none;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Liquid Background Elements */
.liquid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1a0202 0%, #050505 100%);
    z-index: -2;
}

.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
    animation: blobFloat 20s infinite alternate;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #ff2a2a0a 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ff2a2a05 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff2a2a0a 0%, transparent 70%);
    top: 40%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes blobFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 50px) scale(1.1); }
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition-fast);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 0 10px rgba(255, 42, 42, 0.4));
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--text-main);
    text-shadow: var(--red-glow);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.6rem 1.5rem;
    background: transparent;
    color: var(--accent-red);
    border: 1px solid var(--accent-red);
    border-radius: 5px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: var(--transition-fast);
}

.nav-cta:hover {
    background: var(--accent-red);
    color: #fff;
    box-shadow: var(--red-glow);
}

.telegram-btn {
    display: flex !important;
    align-items: center;
    gap: 0.6rem;
    color: #0088cc !important;
    border-color: #0088cc !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.telegram-btn:hover {
    background: #0088cc !important;
    color: #fff !important;
    box-shadow: 0 0 20px rgba(0, 136, 204, 0.5) !important;
    transform: translateY(-2px);
}

.telegram-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    min-height: 100svh; /* Better support for mobile browsers */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 5% 4rem;
    position: relative;
    background-color: var(--bg-main);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    z-index: 10;
}

.hero-content h1 {
    font-size: clamp(3.5rem, 10vw, 6rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1;
    color: #fff;
    letter-spacing: -3px;
}

.highlight-red {
    color: var(--accent-red);
    text-shadow: 0 0 30px rgba(255, 42, 42, 0.4);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin: 0 auto;
    max-width: 600px;
    line-height: 1.5;
    font-weight: 400;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Hero Games Grid */
.hero-games {
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
    justify-content: center;
    width: 100%;
    max-width: 1000px;
}

.featured-game-card {
    position: relative;
    width: 300px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.featured-game-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-red);
    box-shadow: 0 10px 30px rgba(255, 42, 42, 0.2);
}

.game-img {
    height: 180px;
    position: relative;
}

.game-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-info {
    padding: 1.5rem;
    text-align: left;
}

.game-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.game-info p {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 1rem;
}

.play-btn {
    width: 100%;
    padding: 0.8rem;
    background: var(--accent-red);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.play-btn:hover {
    background: #ff0000;
    box-shadow: var(--red-glow);
}

.teaser {
    opacity: 0.7;
    filter: grayscale(0.5);
}

.teaser:hover {
    filter: grayscale(0);
    opacity: 1;
}

.b-live { background: #ff2a2a; color: #fff; }
.b-soon { background: #333; color: #aaa; }

.cta-button {
    padding: 1.2rem 3rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(45deg, #990000, #ff2a2a);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 0, 127, 0.5);
}

/* Telegram Section */
.telegram-section {
    padding: 5rem 0;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.telegram-card {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: linear-gradient(135deg, rgba(255, 42, 42, 0.1), rgba(0, 0, 0, 0.5));
    border: 1px solid rgba(255, 42, 42, 0.2);
    border-radius: 40px;
    padding: 5rem;
    backdrop-filter: blur(var(--glass-blur));
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.tg-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.tg-content p {
    color: var(--text-dim);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.tg-btn {
    display: inline-block;
    background: #ff2a2a;
    box-shadow: 0 10px 20px rgba(255, 42, 42, 0.2);
}

.tg-btn:hover {
    background: #ff0000;
    box-shadow: 0 15px 30px rgba(255, 42, 42, 0.4);
}

/* Floating Elements */
.float-arrow {
    position: absolute;
    width: 50px;
    height: 50px;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

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

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 5%;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.underline {
    display: none;
}

/* Featured Section */
.featured {
    padding: 8rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-card {
    display: flex;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-slow);
}

.featured-img {
    flex: 1;
    min-height: 400px;
    overflow: hidden;
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.featured-card:hover .featured-img img {
    transform: scale(1.1);
}

.featured-info {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Games Slider Section */
.games-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    padding: 0 10%;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-slider-container {
    width: 100%;
    max-width: 1200px;
    overflow: hidden; /* Prevent manual scroll and scroll-snap fighting */
    position: relative;
    padding: 4rem 0;
    /* Edge Fade Effect */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.game-slider-container::-webkit-scrollbar {
    display: none;
}

.game-track {
    display: flex;
    gap: 40px;
    padding: 0 40px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.game-card {
    min-width: calc((100% - 80px) / 3);
    height: 520px;
    flex-shrink: 0;
    cursor: pointer;
    transition: var(--transition-fast);
}

@media (max-width: 768px) {
    .game-card {
        min-width: 70%; /* Further reduced for better mobile viewport fit */
        height: 400px;
    }
    .game-card.active .card-glass {
        border-color: var(--accent-red) !important;
        box-shadow: 0 0 20px var(--accent-red-glow) !important;
        background: rgba(var(--accent-red-rgb), 0.1) !important;
    }
    .game-track {
        gap: 15px; 
        padding: 0 20px;
    }
    .card-content h3 {
        font-size: 1.5rem !important;
    }
    .card-content p {
        font-size: 0.9rem !important;
    }
}

.card-glass {
    height: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 40px; 
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-fast);
}

.game-card:hover .card-glass {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.card-image {
    height: 75%;
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.game-card:hover .card-image img {
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 10;
    letter-spacing: 1px;
}

.card-content {
    padding: 2rem;
    text-align: center;
    flex-grow: 1;
}

.card-content h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.card-content p {
    font-size: 1rem;
    color: var(--text-dim);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
}

.prev-arrow { left: 2%; }
.next-arrow { right: 2%; }

/* Stats Section */
.stats {
    padding: 5rem 0;
    display: flex;
    justify-content: space-around;
    text-align: center;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.stat-item h2 {
    font-size: 3.5rem;
    color: var(--accent-red);
    text-shadow: var(--red-glow);
    margin-bottom: 0.5rem;
    display: inline-block;
}

.stat-plus {
    font-size: 3rem;
    color: var(--accent-red);
    text-shadow: var(--red-glow);
    font-weight: 700;
    margin-left: 0.2rem;
}

/* Game Overlay */
.game-modal {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: none;
    flex-direction: column;
}

.close-btn {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-red);
    color: #fff;
    padding: 1rem 3rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255, 42, 42, 0.4);
    z-index: 2010;
    transition: var(--transition-fast);
}

.close-btn:hover {
    transform: translateX(-50%) translateY(-3px) scale(1.05);
    background: #ff0000;
    box-shadow: 0 10px 30px rgba(255, 42, 42, 0.6);
}

iframe {
    width: 100%;
    height: 100vh;
    border: none;
}

/* Site Footer */
.site-footer {
    padding: 6rem 0 3rem;
    background: transparent;
    border-top: 1px solid rgba(255, 42, 42, 0.1);
    position: relative;
    overflow: hidden;
}

.footer-content {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 10;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
}

.footer-contact {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.footer-contact a {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.footer-contact a:hover {
    text-shadow: var(--red-glow);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    nav {
        padding: 1rem 5%;
    }
    
    .nav-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        font-size: 1.1rem;
        gap: 0.5rem;
    }

    .logo-icon {
        width: 20px;
        height: 20px;
    }

    .nav-links {
        display: none; /* Hide on mobile to prevent squishing */
    }

    .nav-cta {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .hero-content h1 {
        font-size: 3rem;
        letter-spacing: -2px;
    }

    .hero-games {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        margin-top: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .featured-game-card {
        width: 100%;
        max-width: 320px;
    }

    .telegram-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .stats {
        flex-direction: column;
        gap: 3rem;
    }

    .stat-item h2 {
        font-size: 2.5rem;
    }
    
    .slider-wrapper {
        padding: 0 3%; /* Reduced side spacing */
    }

    .slider-arrow {
        display: flex; /* Re-enabled for mobile */
        width: 35px;
        height: 35px;
        font-size: 1rem;
        background: rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(255, 42, 42, 0.3);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        z-index: 101;
    }
    
    .prev-arrow { left: 10px; }
    .next-arrow { right: 10px; }
}
.info-section {
    padding: 5rem 0;
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.glass-content-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.glass-content-card h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: var(--text-main);
}

.glass-content-card h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--accent-red);
}

.glass-content-card p {
    color: var(--text-dim);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.glass-content-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.glass-content-card li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dim);
}

.glass-content-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: bold;
}

/* FAQ Styling */
.faq-grid {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition-fast);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-item h3 {
    margin: 0 0 1rem 0 !important;
    font-size: 1.3rem !important;
}

.faq-item p {
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    .info-section {
        padding: 3rem 15px;
        width: 100%;
        margin: 0;
    }
    .glass-content-card {
        padding: 1.5rem;
        border-radius: 20px;
        margin-bottom: 1.5rem;
    }
    .glass-content-card h2 {
        font-size: 1.6rem;
    }
    .glass-content-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Legal & Informational Pages */
.policy-container {
    max-width: 900px;
    margin: 4rem auto 3rem;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 3rem;
}

.glass-panel h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 800;
}

.glass-panel h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.glass-panel h2::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--accent-red), transparent);
}

.glass-panel p, .glass-panel ul, .glass-panel li {
    font-size: 1.1rem;
    line-height: 1.7;
}

.back-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 2rem;
    transition: var(--transition-fast);
}

.back-home:hover {
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .policy-container {
        padding: 0 15px;
        margin-top: 2rem;
    }
    .glass-panel {
        padding: 1.5rem;
        border-radius: 20px;
    }
    .glass-panel h1 {
        font-size: 2.2rem;
    }
    .glass-panel h2 {
        font-size: 1.5rem;
    }
    .contact-box {
        padding: 1.5rem !important;
        margin-top: 2rem !important;
    }
    .last-updated {
        margin-bottom: 2rem !important;
    }
}

.glass-panel a {
    color: var(--accent-red) !important;
}


