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

:root {
    --neon-cyan: #00f3ff;
    --neon-purple: #b026ff;
    --neon-pink: #ff00ff;
    --neon-blue: #0066ff;
    --neon-green: #00ff88;
    --neon-yellow: #ffff00;
    --background-dark: #0a0a0f;
    --background-card: rgba(15, 15, 25, 0.8);
    --background-hover: rgba(30, 30, 45, 0.9);
    --text-primary: #ffffff;
    --text-secondary: #b0b0d0;
    --error-color: #ff3366;
    --border-color: rgba(176, 38, 255, 0.3);
}

@keyframes neonPulse {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan), 0 0 30px var(--neon-cyan);
    }
    50% {
        opacity: 0.8;
        text-shadow: 0 0 5px var(--neon-cyan), 0 0 10px var(--neon-cyan), 0 0 15px var(--neon-cyan);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px var(--neon-purple), 0 0 10px var(--neon-purple), 0 0 15px var(--neon-purple);
    }
    50% {
        box-shadow: 0 0 10px var(--neon-purple), 0 0 20px var(--neon-purple), 0 0 30px var(--neon-purple), 0 0 40px var(--neon-purple);
    }
}

@keyframes backgroundShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(-45deg, #0a0a0f, #1a0a2e, #16213e, #0f3460);
    background-size: 400% 400%;
    animation: backgroundShift 15s ease infinite;
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(176, 38, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 243, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

.hidden {
    display: none !important;
}

/* Landing Page Styles */
.landing-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 0;
}

.logo-section {
    text-align: center;
    margin-bottom: 3rem;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
    animation: neonPulse 3s ease-in-out infinite;
    letter-spacing: 1px;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 300;
    text-shadow: 0 0 10px rgba(176, 38, 255, 0.5);
}

.description-section {
    background: var(--background-card);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 2px solid var(--border-color);
    box-shadow: 
        0 0 20px rgba(176, 38, 255, 0.3),
        0 0 40px rgba(0, 243, 255, 0.1),
        inset 0 0 20px rgba(176, 38, 255, 0.1);
    transition: all 0.3s ease;
}

.description-section:hover {
    border-color: var(--neon-purple);
    box-shadow: 
        0 0 30px rgba(176, 38, 255, 0.5),
        0 0 60px rgba(0, 243, 255, 0.2),
        inset 0 0 30px rgba(176, 38, 255, 0.2);
    transform: translateY(-2px);
}

.description-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.description-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.description-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.detail-item {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.5rem;
    border-left: 3px solid var(--neon-cyan);
    color: var(--text-secondary);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.detail-item:hover {
    border-left-color: var(--neon-purple);
    background: rgba(0, 0, 0, 0.4);
    transform: translateX(5px);
}

.detail-item strong {
    color: var(--neon-cyan);
    display: block;
    margin-bottom: 0.5rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(15, 15, 25, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 0.5rem;
    border: 1px solid rgba(176, 38, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 0 15px rgba(176, 38, 255, 0.4);
    transform: translateX(5px);
    background: rgba(15, 15, 25, 0.8);
}

.feature-icon {
    font-size: 1.5rem;
}

/* CTA Section Styles */
.cta-section {
    background: var(--background-card);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    border: 2px solid var(--border-color);
    box-shadow: 
        0 0 20px rgba(0, 243, 255, 0.2),
        inset 0 0 20px rgba(0, 243, 255, 0.05);
    transition: all 0.3s ease;
}

.cta-section:hover {
    border-color: var(--neon-cyan);
    box-shadow: 
        0 0 30px rgba(0, 243, 255, 0.4),
        inset 0 0 30px rgba(0, 243, 255, 0.1);
}

.cta-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.cta-password-input-wrapper {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto 1.5rem;
}

.cta-telegram {
    margin-top: 1rem;
}

.cta-telegram p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.cta-telegram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.cta-telegram-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
}

.contact-section {
    background: var(--background-card);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    border: 2px solid var(--border-color);
    box-shadow: 
        0 0 20px rgba(0, 243, 255, 0.2),
        inset 0 0 20px rgba(0, 243, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-section:hover {
    border-color: var(--neon-cyan);
    box-shadow: 
        0 0 30px rgba(0, 243, 255, 0.4),
        inset 0 0 30px rgba(0, 243, 255, 0.1);
}

.contact-section h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-section p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.telegram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.telegram-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 0 30px rgba(0, 243, 255, 0.6),
        0 0 60px rgba(0, 243, 255, 0.3);
    border-color: var(--neon-cyan);
    animation: glow 1.5s ease-in-out infinite;
}

.tg-icon {
    font-size: 1.25rem;
}

/* Games Preview Slider */
.games-preview-section {
    background: var(--background-card);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 2px solid var(--border-color);
    box-shadow: 
        0 0 20px rgba(176, 38, 255, 0.3),
        inset 0 0 20px rgba(176, 38, 255, 0.05);
    transition: all 0.3s ease;
}

.games-preview-section:hover {
    border-color: var(--neon-purple);
    box-shadow: 
        0 0 30px rgba(176, 38, 255, 0.5),
        inset 0 0 30px rgba(176, 38, 255, 0.1);
}

.games-preview-section h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.games-preview-text {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.games-slider-container {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
}

.games-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.slider-slide {
    min-width: 100%;
    flex-shrink: 0;
    padding: 0;
}

.slider-game-card {
    background: rgba(15, 15, 25, 0.8);
    border-radius: 0.75rem;
    overflow: hidden;
    border: 2px solid rgba(176, 38, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.slider-game-card:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.5);
    transform: translateY(-5px);
}

.slider-game-image {
    width: 100%;
    height: 350px;
    object-fit: contain;
    background: var(--background-dark);
    padding: 1rem;
    display: block;
}

.slider-game-info {
    padding: 1.25rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
}

.slider-game-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.slider-game-type {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(176, 38, 255, 0.2);
    border-radius: 0.25rem;
    font-size: 0.85rem;
    color: var(--neon-purple);
    border: 1px solid rgba(176, 38, 255, 0.3);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(176, 38, 255, 0.3);
    border: 2px solid var(--neon-purple);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: rgba(176, 38, 255, 0.5);
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn-prev {
    left: 10px;
}

.slider-btn-next {
    right: 10px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(176, 38, 255, 0.3);
    border: 2px solid rgba(176, 38, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background: rgba(176, 38, 255, 0.5);
    transform: scale(1.2);
}

.slider-dot.active {
    background: var(--neon-purple);
    border-color: var(--neon-purple);
    box-shadow: 0 0 10px rgba(176, 38, 255, 0.8);
}

/* Benefits Section */
.benefits-section {
    background: var(--background-card);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 2px solid var(--border-color);
    box-shadow: 
        0 0 20px rgba(0, 243, 255, 0.2),
        inset 0 0 20px rgba(0, 243, 255, 0.05);
}

.benefits-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background: rgba(15, 15, 25, 0.6);
    backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 2px solid rgba(176, 38, 255, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 0 25px rgba(176, 38, 255, 0.4);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.5));
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* How It Works Section */
.how-it-works-section {
    background: var(--background-card);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 2px solid var(--border-color);
    box-shadow: 
        0 0 20px rgba(255, 0, 255, 0.2),
        inset 0 0 20px rgba(255, 0, 255, 0.05);
}

/* Testimonials Section */
.testimonials-section {
    background: var(--background-card);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 2px solid var(--border-color);
    box-shadow: 
        0 0 20px rgba(0, 255, 150, 0.2),
        inset 0 0 20px rgba(0, 255, 150, 0.05);
}

/* Investors Section */
.investors-section {
    background: var(--background-card);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 2px solid var(--border-color);
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.2),
        inset 0 0 20px rgba(255, 215, 0, 0.05);
}

.investors-section h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--neon-yellow), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.investors-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.investors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: center;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.investor-logo {
    width: 280px;
    height: 140px;
    object-fit: contain;
    padding: 2rem;
    background: rgba(15, 15, 25, 0.8);
    border-radius: 1rem;
    border: 2px solid rgba(255, 215, 0, 0.15);
    transition: all 0.3s ease;
    filter: brightness(0.95) grayscale(0.2);
    cursor: pointer;
    display: block;
    visibility: visible;
    box-sizing: border-box;
}

.investor-logo:hover {
    filter: brightness(1.15) grayscale(0);
    border-color: var(--neon-yellow);
    box-shadow: 
        0 0 25px rgba(255, 215, 0, 0.5),
        inset 0 0 25px rgba(255, 215, 0, 0.1);
    transform: translateY(-8px) scale(1.03);
    background: rgba(15, 15, 25, 0.95);
}


.testimonials-section h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(0, 255, 150, 0.5);
}

.testimonials-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: rgba(15, 15, 25, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 2px solid rgba(0, 255, 150, 0.2);
    box-shadow: 0 0 15px rgba(0, 255, 150, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 150, 0.4);
    box-shadow: 0 0 25px rgba(0, 255, 150, 0.3);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 255, 150, 0.4);
    box-shadow: 0 0 15px rgba(0, 255, 150, 0.4);
    flex-shrink: 0;
}

.testimonial-info h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    text-shadow: 0 0 5px rgba(0, 255, 150, 0.3);
}

.testimonial-location {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.testimonial-rating {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
    font-style: italic;
}

.how-it-works-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.step-item {
    background: rgba(15, 15, 25, 0.6);
    backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 2px solid rgba(255, 0, 255, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.step-item:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.4);
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.step-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.step-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.password-section {
    background: var(--background-card);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--border-color);
    box-shadow: 
        0 0 20px rgba(255, 0, 255, 0.2),
        inset 0 0 20px rgba(255, 0, 255, 0.05);
    transition: all 0.3s ease;
}

.password-section:hover {
    border-color: var(--neon-pink);
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.4),
        inset 0 0 30px rgba(255, 0, 255, 0.1);
}

.password-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.password-input-wrapper {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.password-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(5px);
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.password-input:focus {
    outline: none;
    border-color: var(--neon-pink);
    box-shadow: 
        0 0 15px rgba(255, 0, 255, 0.4),
        inset 0 0 10px rgba(255, 0, 255, 0.1);
    background: rgba(10, 10, 15, 0.9);
}

.activate-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    color: white;
    border: 2px solid transparent;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.activate-btn::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;
}

.activate-btn:hover::before {
    width: 300px;
    height: 300px;
}

.activate-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.6),
        0 0 60px rgba(255, 0, 255, 0.3);
    border-color: var(--neon-pink);
    animation: glow 1.5s ease-in-out infinite;
}

.activate-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.error-message {
    margin-top: 1rem;
    color: var(--error-color);
    font-size: 0.9rem;
    min-height: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 51, 102, 0.8);
    animation: neonPulse 2s ease-in-out infinite;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: var(--background-card);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    border: 2px solid var(--error-color);
    box-shadow: 
        0 0 30px rgba(255, 51, 102, 0.4),
        inset 0 0 20px rgba(255, 51, 102, 0.1);
    animation: glow 2s ease-in-out infinite;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 51, 102, 0.3);
}

.modal-header h3 {
    color: var(--error-color);
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 51, 102, 0.8);
    margin: 0;
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(255, 51, 102, 0.2);
    transform: rotate(90deg);
    box-shadow: 0 0 10px rgba(255, 51, 102, 0.5);
}

.modal-body {
    text-align: center;
}

.modal-body p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.modal-telegram-link {
    display: inline-flex;
    margin-top: 1rem;
}

/* Risk protection modal (GPT26) */
.risk-protection-modal {
    border-color: var(--neon-yellow);
    box-shadow: 0 0 30px rgba(255, 255, 0, 0.25), inset 0 0 20px rgba(255, 255, 0, 0.08);
}
#riskProtectionModal .modal-header,
#riskProtectionModal .modal-body {
    padding-left: 40px;
    padding-right: 40px;
}

#riskProtectionModal .modal-header {
    position: relative;
    padding: 22px 40px;
    min-height: 60px;
    border-bottom: none;
}

#riskProtectionModal .modal-header h3 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    white-space: nowrap;
    color: var(--neon-yellow);
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.6);
}
.gpt26-manager-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    color: var(--background-dark);
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}
.gpt26-manager-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.5);
}

/* GPT26 Session page */
.gpt26-session-wrap {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 0;
}
.gpt26-session-header {
    text-align: center;
    margin-bottom: 2rem;
}
.gpt26-session-status {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 0.5rem;
}
.gpt26-signal-area {
    min-height: 140px;
    margin-bottom: 1.5rem;
}
.gpt26-waiting {
    color: var(--text-secondary);
    font-size: 1.1rem;
    text-align: center;
    padding: 2rem;
}
.gpt26-current-signal {
    background: var(--background-card);
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.2);
}
.gpt26-current-signal .signal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}
.gpt26-current-signal .signal-time {
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.gpt26-current-signal .signal-coefficient {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.gpt26-current-signal .coeff-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}
.gpt26-current-signal .coeff-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-green);
}
.gpt26-current-signal .signal-message {
    color: var(--text-primary);
    font-size: 0.95rem;
}
.gpt26-signals-history {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.gpt26-signal-past {
    background: rgba(15, 15, 25, 0.6);
    border: 1px solid rgba(176, 38, 255, 0.2);
    border-radius: 0.75rem;
    padding: 1rem;
    font-size: 0.9rem;
}
.gpt26-signal-past .signal-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
.gpt26-signal-past .coeff-value {
    color: var(--neon-cyan);
    font-size: 1.1rem;
}

/* GPT26 Blocked page */
.gpt26-blocked-wrap {
    max-width: 560px;
    margin: 0 auto;
    padding: 3rem 1rem;
    text-align: center;
}
.gpt26-blocked-banner {
    background: var(--background-card);
    border: 2px solid var(--neon-yellow);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0 30px rgba(255, 255, 0, 0.2), inset 0 0 20px rgba(255, 255, 0, 0.05);
    margin-bottom: 2rem;
}
.gpt26-blocked-title {
    color: var(--neon-yellow);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.5);
}
.gpt26-blocked-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}
.gpt26-blocked-back {
    margin: 0 auto;
}

/* GPT26 signal counter (games + game detail header) */
.gpt26-signal-counter {
    display: none !important; /* скрыто с фронта, счётчик только для логики */
    font-size: 0.95rem;
    color: var(--text-secondary);
    white-space: nowrap;
}
.gpt26-signal-counter .gpt26-signal-count-num {
    font-weight: 700;
    color: var(--neon-cyan);
}
.game-detail-header .gpt26-signal-counter {
    margin-left: auto;
}
@media (max-width: 768px) {
    .gpt26-signal-counter {
        font-size: 0.875rem;
    }
    .games-header .gpt26-signal-counter {
        width: 100%;
        text-align: center;
    }
    .game-detail-header .gpt26-signal-counter {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
    .risk-protection-modal .modal-content {
        padding: 1.25rem;
        width: 92%;
        max-width: none;
    }
    .risk-protection-modal .modal-header h3 {
        font-size: 1.25rem;
    }
    .risk-protection-modal .modal-body p {
        font-size: 0.9rem;
    }
    .gpt26-manager-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .gpt26-signal-counter {
        font-size: 0.8rem;
        white-space: normal;
    }
    .risk-protection-modal .modal-content {
        padding: 1rem;
        width: 95%;
    }
    .risk-protection-modal .modal-header h3 {
        font-size: 1.1rem;
    }
    .risk-protection-modal .modal-body p {
        font-size: 0.85rem;
    }
    .gpt26-manager-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}
@media (max-width: 360px) {
    .gpt26-signal-counter {
        font-size: 0.75rem;
        white-space: normal;
    }
}

/* Games Page Styles */
.games-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(176, 38, 255, 0.2);
}

.games-header h1 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
    animation: neonPulse 3s ease-in-out infinite;
    letter-spacing: 1px;
}

.logout-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(15, 15, 25, 0.6);
    backdrop-filter: blur(5px);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.logout-btn:hover {
    background: rgba(30, 30, 45, 0.9);
    border-color: var(--neon-pink);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.4);
    transform: translateY(-2px);
}

.games-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.games-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.games-section-title {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
    margin-bottom: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(176, 38, 255, 0.3);
}

.games-grid-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, max-content));
    column-gap: 0.33px;
    row-gap: 1rem;
    justify-content: center;
    justify-items: center;
}

.slots-soon-section {
    margin: 3rem 0;
    padding: 4rem 2rem;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 2px solid rgba(176, 38, 255, 0.3);
    box-shadow: 0 0 30px rgba(176, 38, 255, 0.2);
    text-align: center;
    animation: neonPulse 2s ease-in-out infinite;
}

.slots-soon-text {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(176, 38, 255, 0.5);
    letter-spacing: 0.2em;
    animation: glow 2s ease-in-out infinite;
}

.game-card {
    background: var(--background-card);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 
        0 0 20px rgba(176, 38, 255, 0.2),
        inset 0 0 20px rgba(176, 38, 255, 0.05);
    width: fit-content;
    max-width: 100%;
}

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

.game-card:hover::before {
    left: 100%;
}

.game-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 0 30px rgba(176, 38, 255, 0.5),
        0 0 60px rgba(0, 243, 255, 0.3),
        inset 0 0 30px rgba(176, 38, 255, 0.2);
    border-color: var(--neon-purple);
}

.game-card-image {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    background: var(--background-dark);
    transition: all 0.3s ease;
    filter: brightness(0.8);
    padding: 0.5rem;
    box-sizing: border-box;
    display: block;
}

.game-card:hover .game-card-image {
    filter: brightness(1.1);
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.5);
}

.game-card-info {
    padding: 1.5rem;
}

.game-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.game-card-type {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--background-dark);
    border-radius: 0.25rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.game-card-type.crash {
    border-left: 3px solid var(--neon-green);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.game-card-type.slots {
    border-left: 3px solid var(--neon-purple);
    box-shadow: 0 0 10px rgba(176, 38, 255, 0.3);
}

/* Game Detail Page Styles */
.game-detail-header {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.back-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(15, 15, 25, 0.6);
    backdrop-filter: blur(5px);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.back-btn:hover {
    background: rgba(30, 30, 45, 0.9);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
    transform: translateX(-5px);
}

.game-detail-header h1 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
    animation: neonPulse 3s ease-in-out infinite;
    letter-spacing: 1px;
}

/* Game Logic Page Styles */
.game-logic-console {
    padding: 2rem;
    max-width: 1600px;
    margin: 0 auto;
    background: #0a0a0f;
    min-height: 100vh;
}

.game-logic-header {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(10, 10, 15, 0.8);
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 243, 255, 0.2);
    margin-bottom: 2rem;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
}

.header-left {
    display: flex;
    align-items: center;
}

.game-logic-logo {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
    margin: 0;
}

.header-center {
    text-align: center;
}

.header-title {
    font-size: 1.75rem;
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-right {
    display: flex;
    justify-content: flex-end;
}

.header-badges {
    display: flex;
    gap: 0.75rem;
}

.badge {
    padding: 0.5rem 1rem;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 0.5rem;
    color: var(--neon-cyan);
    font-size: 0.85rem;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(0, 243, 255, 0.5);
}

.game-logic-layout {
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 2rem;
    align-items: start;
}

/* Left Column: Logic Matrix */
.logic-left {
    display: flex;
    flex-direction: column;
}

.logic-matrix {
    background: rgba(10, 10, 15, 0.8);
    border-radius: 0.5rem;
    padding: 2rem;
    border: 1px solid rgba(0, 243, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
}

.matrix-title {
    color: var(--neon-cyan);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    text-align: center;
}

.matrix-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.matrix-column {
    display: flex;
    flex-direction: column;
}

.column-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 243, 255, 0.3);
}

.column-title {
    color: var(--neon-cyan);
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    margin: 0;
}

.logic-blocks {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.logic-block {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 0.5rem;
    padding: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logic-block:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
    transform: translateY(-2px);
}

.block-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.block-name {
    color: var(--neon-cyan);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 8px rgba(0, 243, 255, 0.5);
}

.block-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Right Column: Summary */
.logic-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.summary-block {
    background: rgba(10, 10, 15, 0.8);
    border-radius: 0.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(0, 243, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
}

.summary-block.selected-block {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.summary-title {
    color: var(--neon-cyan);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
    font-size: 1rem;
}

.item-icon {
    font-size: 1.25rem;
}

.item-text {
    flex: 1;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
    font-size: 1rem;
}

.check-icon {
    color: #27c93f;
    font-size: 1.25rem;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(39, 201, 63, 0.5);
}

.check-text {
    flex: 1;
}

.selected-blocks {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.selected-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.selected-item.active {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

.selected-icon {
    font-size: 1.25rem;
}

.selected-name {
    color: var(--neon-cyan);
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(0, 243, 255, 0.5);
}

.game-logic-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 243, 255, 0.2);
    text-align: center;
}

/* Core Console Page Styles */
.core-console {
    padding: 2rem;
    max-width: 1600px;
    margin: 0 auto;
    background: #0a0a0f;
    min-height: 100vh;
}

.console-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 243, 255, 0.2);
}

.console-title {
    font-size: 2rem;
    color: var(--neon-cyan);
    font-weight: 600;
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
    letter-spacing: 1px;
}

.console-layout {
    display: flex;
    justify-content: center;
    align-items: start;
}

/* Centered Content */
.console-center {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Code Viewer */
.code-viewer {
    background: #1e1e1e;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.viewer-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: #252526;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.viewer-dots {
    display: flex;
    gap: 0.5rem;
}

.viewer-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.viewer-dot.red {
    background: #ff5f56;
}

.viewer-dot.yellow {
    background: #ffbd2e;
}

.viewer-dot.green {
    background: #27c93f;
}

.viewer-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-family: 'Courier New', monospace;
}

.code-content {
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
    background: #1e1e1e;
    color: #d4d4d4;
    overflow-x: auto;
}

.code-line {
    display: flex;
    margin-bottom: 0.25rem;
    white-space: pre;
}

.line-number {
    color: rgba(255, 255, 255, 0.3);
    margin-right: 1.5rem;
    user-select: none;
    min-width: 3ch;
    text-align: right;
}

.code-keyword {
    color: #569cd6;
}

.code-type {
    color: #4ec9b0;
}

.code-brace {
    color: #d4d4d4;
}

.code-property {
    color: #9cdcfe;
}

.code-number {
    color: #b5cea8;
}

.code-operator {
    color: #d4d4d4;
}

.code-semicolon {
    color: #d4d4d4;
}

.code-string {
    color: #ce9178;
}

.code-function {
    color: #dcdcaa;
}

.code-param {
    color: #9cdcfe;
}

/* JSON Viewer */
.json-viewer {
    background: #1e1e1e;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.json-content {
    padding: 1.5rem;
    background: #1e1e1e;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
}

.json-code {
    margin: 0;
    color: #d4d4d4;
    white-space: pre;
}

.json-key {
    color: #9cdcfe;
}

.json-string {
    color: #ce9178;
}

.json-brace {
    color: #d4d4d4;
}


/* Risk Dashboard */
.risk-dashboard {
    background: rgba(10, 10, 15, 0.8);
    border-radius: 0.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(0, 243, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
}

.dashboard-title {
    color: var(--neon-cyan);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.kpi-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.kpi-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 3px solid var(--neon-cyan);
}

.kpi-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.kpi-value {
    color: var(--neon-cyan);
    font-size: 1.1rem;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(0, 243, 255, 0.5);
}

.kpi-value.enabled {
    color: #27c93f;
    text-shadow: 0 0 8px rgba(39, 201, 63, 0.5);
    animation: subtleGlow 3s ease-in-out infinite;
}

.dashboard-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-style: italic;
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Charts Section */
.charts-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.chart-container {
    background: rgba(10, 10, 15, 0.8);
    border-radius: 0.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(0, 243, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
}

.chart-title {
    color: var(--neon-cyan);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-shadow: 0 0 8px rgba(0, 243, 255, 0.5);
}

.chart-svg {
    width: 100%;
    height: 150px;
}

.chart-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawChartLine 3s ease forwards;
    filter: drop-shadow(0 0 3px rgba(0, 243, 255, 0.5));
}

.chart-point {
    animation: chartPointPulse 2s ease infinite;
    filter: drop-shadow(0 0 2px rgba(0, 243, 255, 0.6));
}

.bar-chart {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.bar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bar-label {
    min-width: 60px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.bar-wrapper {
    flex: 1;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    border-radius: 10px;
    animation: barFillAnimation 2s ease;
    box-shadow: 0 0 8px rgba(0, 243, 255, 0.5);
}

.bar-value {
    min-width: 40px;
    text-align: right;
    color: var(--neon-cyan);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Compliance Grid */
.compliance-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.compliance-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.compliance-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.compliance-value {
    font-size: 1.25rem;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(0, 243, 255, 0.5);
}

.compliance-value.high {
    color: #27c93f;
    text-shadow: 0 0 8px rgba(39, 201, 63, 0.5);
}

.compliance-value.medium {
    color: #ffbd2e;
    text-shadow: 0 0 8px rgba(255, 189, 46, 0.5);
}

.compliance-bar {
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.compliance-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-green));
    border-radius: 8px;
    animation: barFillAnimation 2s ease;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    position: relative;
}

.compliance-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

/* Decision Stats */
.decision-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.5rem;
    border-left: 3px solid var(--neon-cyan);
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(0, 0, 0, 0.4);
    border-left-width: 4px;
    transform: translateX(3px);
}

.stat-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 243, 255, 0.3);
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-number {
    color: var(--neon-cyan);
    font-size: 1.75rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    margin-bottom: 0.25rem;
}

.stat-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* Shimmer Animation */
@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Sessions Table */
.sessions-table {
    background: rgba(10, 10, 15, 0.8);
    border-radius: 0.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(0, 243, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
    margin-top: 0;
}

.table-title {
    color: var(--neon-cyan);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.sessions-data {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.sessions-data th {
    color: var(--neon-cyan);
    text-align: left;
    padding: 0.75rem 0.5rem;
    border-bottom: 2px solid rgba(0, 243, 255, 0.3);
    font-weight: 600;
    text-shadow: 0 0 8px rgba(0, 243, 255, 0.5);
}

.sessions-data td {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sessions-data tr:hover {
    background: rgba(0, 243, 255, 0.05);
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.active {
    background: rgba(39, 201, 63, 0.2);
    color: #27c93f;
    box-shadow: 0 0 8px rgba(39, 201, 63, 0.3);
    animation: subtleGlow 2.5s ease-in-out infinite;
}

.status-badge.stopped {
    background: rgba(255, 95, 86, 0.2);
    color: #ff5f56;
    box-shadow: 0 0 8px rgba(255, 95, 86, 0.3);
}

/* Animations */
@keyframes drawChartLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes chartPointPulse {
    0%, 100% {
        opacity: 1;
        r: 4;
    }
    50% {
        opacity: 0.7;
        r: 5;
    }
}

@keyframes barFillAnimation {
    from {
        width: 0;
    }
}

@keyframes subtleGlow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.game-detail-content {
    background: var(--background-card);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    border: 2px solid var(--border-color);
    box-shadow: 
        0 0 30px rgba(176, 38, 255, 0.3),
        inset 0 0 30px rgba(176, 38, 255, 0.1);
}

.game-image-wrapper {
    text-align: center;
    margin-bottom: 2rem;
}

.game-detail-image {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    max-height: 400px;
    object-fit: contain;
    border: 2px solid rgba(176, 38, 255, 0.3);
    box-shadow: 
        0 0 20px rgba(176, 38, 255, 0.3),
        0 0 40px rgba(0, 243, 255, 0.2);
    transition: all 0.3s ease;
}

.game-detail-image:hover {
    box-shadow: 
        0 0 30px rgba(176, 38, 255, 0.5),
        0 0 60px rgba(0, 243, 255, 0.3);
    border-color: var(--neon-purple);
    transform: scale(1.02);
}

.game-content {
    color: var(--text-secondary);
    line-height: 1.8;
}

.game-content h2 {
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-content h2:first-child {
    margin-top: 0;
}

.game-content p {
    margin-bottom: 1rem;
}

.game-content ul, .game-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.game-content li {
    margin-bottom: 0.5rem;
}

/* Signals specific styles */
.signal-item {
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(5px);
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    transition: all 0.3s ease;
}

.signal-item:hover {
    box-shadow: 0 0 35px rgba(0, 255, 136, 0.5);
    transform: translateX(5px);
    border-left-width: 6px;
}

.signal-item.new-signal {
    border-left-color: var(--neon-cyan);
    border-left-width: 5px;
    background: rgba(10, 10, 15, 0.85);
    box-shadow: 
        0 0 30px rgba(0, 243, 255, 0.5),
        0 0 60px rgba(0, 243, 255, 0.2),
        inset 0 0 30px rgba(0, 243, 255, 0.1);
    animation: signalAppear 0.6s ease, signalPulse 2s ease-in-out infinite;
    transform-origin: center;
}

@keyframes signalAppear {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes signalPulse {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(0, 243, 255, 0.5),
            0 0 60px rgba(0, 243, 255, 0.2),
            inset 0 0 30px rgba(0, 243, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(0, 243, 255, 0.7),
            0 0 80px rgba(0, 243, 255, 0.4),
            inset 0 0 40px rgba(0, 243, 255, 0.2);
    }
}

.signal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.signal-time {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.signal-coefficient {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.15), rgba(176, 38, 255, 0.15));
    border: 2px solid var(--neon-cyan);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    min-width: 180px;
    max-width: 100%;
    box-sizing: border-box;
    box-shadow: 
        0 0 25px rgba(0, 243, 255, 0.5),
        inset 0 0 20px rgba(0, 243, 255, 0.1);
    animation: coefficientGlow 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

@keyframes coefficientGlow {
    0%, 100% {
        box-shadow: 
            0 0 25px rgba(0, 243, 255, 0.5),
            inset 0 0 20px rgba(0, 243, 255, 0.1);
        border-color: var(--neon-cyan);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(0, 243, 255, 0.8),
            0 0 60px rgba(176, 38, 255, 0.4),
            inset 0 0 30px rgba(0, 243, 255, 0.2);
        border-color: var(--neon-purple);
    }
}


.coeff-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 5px rgba(0, 243, 255, 0.5);
}

.coeff-value {
    font-size: clamp(4rem, 15vw, 9rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.8);
    animation: coefficientPulse 1.5s ease-in-out infinite, gradientShift 3s ease infinite;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.6));
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: nowrap;
}

@keyframes coefficientPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.6));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 20px rgba(0, 243, 255, 1));
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.signal-message {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 0.75rem;
}

.signal-difficulty {
    margin: 0.75rem 0;
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.difficulty-medium {
    color: var(--neon-yellow);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.8);
}

/* Aviator Info Section */
.aviator-info-section {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 0.75rem;
    border: 2px solid rgba(0, 243, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
}

.aviator-info-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aviator-info-section > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.strategy-point {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.5rem;
    border-left: 3px solid var(--neon-cyan);
}

.strategy-point strong {
    color: var(--neon-cyan);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.strategy-point p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.strategy-conclusion {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 243, 255, 0.3);
    color: var(--text-primary);
    font-weight: 500;
    text-align: center;
    font-size: 1.05rem;
}

/* Get Signal Button Styles */
.get-signal-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 0.75rem;
    border: 2px solid rgba(176, 38, 255, 0.3);
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.2);
    text-align: center;
}

.get-signal-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    color: white;
    border: 2px solid transparent;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.get-signal-btn:hover:not(.disabled) {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 0 30px rgba(0, 243, 255, 0.6),
        0 0 60px rgba(0, 243, 255, 0.3);
    border-color: var(--neon-cyan);
    animation: glow 1.5s ease-in-out infinite;
}

.get-signal-btn:active:not(.disabled) {
    transform: translateY(-1px) scale(1.02);
}

.get-signal-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: linear-gradient(135deg, #666, #444);
    box-shadow: none;
}

.signal-timer {
    margin-top: 1rem;
    color: var(--neon-pink);
    font-weight: 600;
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}

.generated-signal {
    margin-top: 1.5rem;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mines Info Section */
.mines-info-section {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 0.75rem;
    border: 2px solid rgba(176, 38, 255, 0.3);
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.2);
}

.mines-info-section > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.game-rules-section {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.5rem;
    border-left: 3px solid var(--neon-purple);
}

.game-rules-section h4 {
    color: var(--neon-purple);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(176, 38, 255, 0.5);
}

.mines-rules-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.mines-rules-list li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.mines-rules-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--neon-purple);
    font-weight: bold;
    font-size: 1.2rem;
}

.rules-conclusion {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(176, 38, 255, 0.2);
    color: var(--text-primary);
    font-weight: 500;
    font-style: italic;
}

/* Cricket Road Info Section */
.cricket-info-section {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 0.75rem;
    border: 2px solid rgba(255, 255, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 255, 0, 0.2);
}

.cricket-info-section > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.cricket-rules-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.cricket-rules-list li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.cricket-rules-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--neon-yellow);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Mines Grid Styles */
.mines-signal-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 0.75rem;
    border: 2px solid rgba(176, 38, 255, 0.3);
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.2);
    text-align: center;
}

.mines-grid-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mines-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    max-width: 400px;
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.5rem;
    border: 2px solid rgba(176, 38, 255, 0.2);
}

.mines-cell {
    aspect-ratio: 1;
    background: rgba(15, 15, 25, 0.8);
    border: 2px solid rgba(176, 38, 255, 0.3);
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.mines-cell:hover {
    border-color: rgba(176, 38, 255, 0.5);
    box-shadow: 0 0 10px rgba(176, 38, 255, 0.3);
}

.mines-cell.has-diamond {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--neon-green);
    box-shadow: 
        0 0 15px rgba(0, 255, 136, 0.4),
        inset 0 0 10px rgba(0, 255, 136, 0.1);
    animation: diamondPulse 0.5s ease;
}

.mines-cell.has-diamond::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: diamondGlow 2s ease-in-out infinite;
}

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

@keyframes diamondGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* Responsive Mines Grid */
@media (max-width: 768px) {
    .mines-grid {
        max-width: 100%;
        gap: 0.4rem;
        padding: 0.75rem;
    }
    
    .mines-cell {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .mines-grid {
        gap: 0.3rem;
        padding: 0.5rem;
    }
    
    .mines-cell {
        font-size: 1rem;
    }
}

/* Penalty Info Section */
.penalty-info-section {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 0.75rem;
    border: 2px solid rgba(255, 0, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
}

.penalty-info-section > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.game-features-section,
.game-strategies-section {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.5rem;
    border-left: 3px solid var(--neon-pink);
}

.game-features-section h4,
.game-strategies-section h4 {
    color: var(--neon-pink);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.penalty-features-list,
.penalty-strategies-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.penalty-features-list li,
.penalty-strategies-list li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.penalty-features-list li::before,
.penalty-strategies-list li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--neon-pink);
    border-radius: 50%;
    top: 0.6rem;
    box-shadow: 0 0 5px rgba(255, 0, 255, 0.5);
}

/* Penalty Goal Styles */
.penalty-signal-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 0.75rem;
    border: 2px solid rgba(176, 38, 255, 0.3);
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.2);
    text-align: center;
}

.penalty-goal-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.penalty-goal {
    position: relative;
    width: 400px;
    height: 300px;
    max-width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    box-shadow: 
        0 0 20px rgba(0, 0, 0, 0.5),
        inset 0 0 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.penalty-goal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
}

.penalty-goal::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.penalty-point {
    position: absolute;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.3;
    transform-origin: center;
}

.penalty-point.active {
    opacity: 1;
    animation: penaltyPulse 1s ease-in-out infinite;
    cursor: pointer;
    filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.8));
}

.penalty-point.clicked {
    opacity: 1;
    animation: penaltySuccess 0.5s ease;
}

@keyframes penaltyPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.8));
    }
    50% {
        transform: scale(1.2);
        filter: drop-shadow(0 0 20px rgba(0, 243, 255, 1));
    }
}

@keyframes penaltySuccess {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3) rotate(15deg);
    }
    100% {
        transform: scale(1);
    }
}

.penalty-goalkeeper {
    position: absolute;
    left: 50%;
    bottom: 20%;
    transform: translateX(-50%);
    font-size: 3rem;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    animation: goalkeeperMove 3s ease-in-out infinite;
}

@keyframes goalkeeperMove {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.penalty-result {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    animation: fadeIn 0.5s ease;
}

.penalty-success {
    color: var(--neon-green);
    font-weight: 600;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
}

/* Responsive Penalty Goal */
@media (max-width: 768px) {
    .penalty-goal {
        width: 100%;
        max-width: 350px;
        height: 250px;
    }
    
    .penalty-point {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .penalty-goalkeeper {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .penalty-goal {
        width: 100%;
        max-width: 300px;
        height: 220px;
    }
    
    .penalty-point {
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }
    
    .penalty-goalkeeper {
        font-size: 2rem;
    }
}

/* Tower Rush Info Section */
.tower-info-section {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 0.75rem;
    border: 2px solid rgba(0, 243, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
}

.tower-info-section > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.tower-features-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.tower-features-list li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.tower-features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--neon-cyan);
    border-radius: 50%;
    top: 0.6rem;
    box-shadow: 0 0 5px rgba(0, 243, 255, 0.5);
}

.tower-info-section .game-features-section {
    border-left-color: var(--neon-cyan) !important;
}

.tower-info-section .game-features-section h4 {
    color: var(--neon-cyan) !important;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5) !important;
}

/* Chicken Road Info Section */
.chicken-info-section {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 0.75rem;
    border: 2px solid rgba(0, 255, 150, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 150, 0.2);
}

.chicken-info-section > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Tower Rush Styles */
.tower-signal-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 0.75rem;
    border: 2px solid rgba(176, 38, 255, 0.3);
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.2);
    text-align: center;
}

.tower-container {
    position: relative;
    width: 200px;
    height: 400px;
    margin: 0 auto 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.tower-base {
    width: 120px;
    height: 20px;
    background: linear-gradient(135deg, rgba(100, 100, 100, 0.8), rgba(60, 60, 60, 0.8));
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.25rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.tower-blocks {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    width: 100%;
    min-height: 0;
}

.tower-block {
    width: 100px;
    height: 20px;
    margin-bottom: 2px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.25rem;
    box-shadow: 
        0 0 10px rgba(0, 243, 255, 0.5),
        inset 0 0 10px rgba(176, 38, 255, 0.3);
    animation: blockAppear 0.3s ease;
    transform-origin: bottom;
}

@keyframes blockAppear {
    0% {
        opacity: 0;
        transform: scaleY(0);
    }
    100% {
        opacity: 1;
        transform: scaleY(1);
    }
}

.tower-target {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--neon-yellow);
    box-shadow: 
        0 0 10px rgba(255, 255, 0, 0.8),
        0 0 20px rgba(255, 255, 0, 0.5);
    z-index: 10;
    display: none;
    animation: targetPulse 1s ease-in-out infinite;
}

@keyframes targetPulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 
            0 0 10px rgba(255, 255, 0, 0.8),
            0 0 20px rgba(255, 255, 0, 0.5);
    }
    50% {
        opacity: 0.7;
        box-shadow: 
            0 0 15px rgba(255, 255, 0, 1),
            0 0 30px rgba(255, 255, 0, 0.7);
    }
}

.tower-info {
    margin-bottom: 1.5rem;
    min-height: 2rem;
}

.tower-coefficient {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.tower-coefficient span {
    color: var(--neon-yellow);
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.8);
    font-size: 1.3rem;
}

/* Responsive Tower */
@media (max-width: 768px) {
    .tower-container {
        width: 150px;
        height: 350px;
    }
    
    .tower-block {
        width: 80px;
        height: 18px;
    }
    
    .tower-base {
        width: 100px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .tower-container {
        width: 120px;
        height: 300px;
    }
    
    .tower-block {
        width: 60px;
        height: 15px;
    }
    
    .tower-base {
        width: 80px;
        height: 15px;
    }
    
    .tower-coefficient {
        font-size: 1rem;
    }
}

/* Strategy specific styles */
.strategy-section {
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(5px);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(176, 38, 255, 0.3);
    box-shadow: 0 0 15px rgba(176, 38, 255, 0.2);
    transition: all 0.3s ease;
}

.strategy-section:hover {
    box-shadow: 0 0 25px rgba(176, 38, 255, 0.4);
    border-color: var(--neon-purple);
    transform: translateY(-2px);
}

.strategy-title {
    color: var(--neon-purple);
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 10px rgba(176, 38, 255, 0.8);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(10, 10, 15, 0.5);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(176, 38, 255, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.6);
}

/* Selection Styling */
::selection {
    background: rgba(176, 38, 255, 0.3);
    color: var(--text-primary);
    text-shadow: 0 0 5px rgba(176, 38, 255, 0.8);
}

/* Responsive Design */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .container {
        padding: 1.5rem;
    }

    .games-grid-section {
        grid-template-columns: repeat(auto-fit, minmax(280px, max-content));
        column-gap: 0.33px;
        row-gap: 1rem;
        justify-content: center;
        justify-items: center;
    }
    
    .games-section-title {
        font-size: 1.75rem;
    }
    
    .games-container {
        gap: 2.5rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .landing-content {
        padding: 2rem 0;
    }

    .main-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .description-section,
    .contact-section,
    .password-section,
    .cta-section,
    .games-preview-section,
    .benefits-section,
    .how-it-works-section,
    .testimonials-section {
        padding: 1.5rem;
        border-radius: 0.75rem;
    }
    
    .description-details {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .games-preview-section h2,
    .benefits-section h2,
    .how-it-works-section h2,
    .testimonials-section h2 {
        font-size: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .testimonials-subtitle {
        font-size: 1rem;
    }
    
    .investors-section {
        padding: 1.5rem;
        border-radius: 0.75rem;
    }
    
    .investors-section h2 {
        font-size: 1.5rem;
    }
    
    .investors-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .investors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .investor-logo {
        width: 240px;
        height: 120px;
        padding: 1.5rem;
    }
    
    
    .games-slider-container {
        padding: 1rem;
        max-width: 100%;
    }
    
    .slider-game-image {
        height: 280px;
    }
    
    .slider-game-info {
        padding: 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .slider-btn-prev {
        left: 5px;
    }
    
    .slider-btn-next {
        right: 5px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .step-item {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .description-section h2 {
        font-size: 1.75rem;
    }

    .description-text {
        font-size: 1rem;
    }

    .features {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .feature-item {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .password-input-wrapper {
        flex-direction: column;
        gap: 0.75rem;
    }

    .password-input,
    .activate-btn {
        width: 100%;
        padding: 0.875rem 1.25rem;
    }
    
    .modal-content {
        padding: 1.5rem;
        width: 95%;
    }
    
    .modal-header h3 {
        font-size: 1.25rem;
    }
    
    .modal-body p {
        font-size: 0.9rem;
    }

    .telegram-link {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }

    .games-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .games-header h1 {
        font-size: 2rem;
    }

    .logout-btn {
        width: 100%;
        text-align: center;
    }

    .games-grid-section {
        grid-template-columns: repeat(auto-fit, minmax(250px, max-content));
        column-gap: 0.33px;
        row-gap: 1rem;
        justify-content: center;
        justify-items: center;
    }
    
    .games-section-title {
        font-size: 1.5rem;
    }
    
    .games-container {
        gap: 2rem;
    }
    
    .games-section {
        gap: 1.25rem;
    }
    
    .slots-soon-section {
        padding: 3rem 1.5rem;
        margin: 2rem 0;
    }
    
    .slots-soon-text {
        font-size: 2.5rem;
    }

    .game-detail-header,
    .core-logic-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .game-detail-header h1 {
        font-size: 2rem;
    }
    
    .core-logic-title {
        font-size: 2rem;
    }
    
    .message-text {
        font-size: 1.25rem;
    }
    
    .core-console {
        padding: 1rem;
    }
    
    .console-header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .console-title {
        font-size: 1.5rem;
    }
    
    .console-center {
        max-width: 100%;
        gap: 1.5rem;
    }
    
    .risk-dashboard {
        padding: 1rem;
    }
    
    .dashboard-title {
        font-size: 1.1rem;
    }
    
    .kpi-cards {
        gap: 0.75rem;
    }
    
    .kpi-card {
        padding: 0.75rem;
    }
    
    .chart-container {
        padding: 1rem;
    }
    
    .chart-title {
        font-size: 1rem;
    }
    
    .chart-svg {
        height: 120px;
    }
    
    .bar-chart {
        gap: 1rem;
    }
    
    .bar-item {
        gap: 0.75rem;
    }
    
    .bar-label {
        min-width: 50px;
        font-size: 0.8rem;
    }
    
    .compliance-grid {
        gap: 1rem;
    }
    
    .compliance-item {
        gap: 0.4rem;
    }
    
    .compliance-value {
        font-size: 1rem;
    }
    
    .compliance-bar {
        height: 14px;
    }
    
    .decision-stats {
        gap: 0.75rem;
    }
    
    .stat-box {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .stat-icon {
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-desc {
        font-size: 0.8rem;
    }
    
    .sessions-table {
        padding: 1rem;
    }
    
    .table-title {
        font-size: 1.1rem;
    }
    
    .sessions-data {
        font-size: 0.75rem;
    }
    
    .sessions-data th,
    .sessions-data td {
        padding: 0.5rem 0.25rem;
    }

    .back-btn {
        width: 100%;
        text-align: center;
    }

    .game-detail-content {
        padding: 1.5rem;
    }

    .game-detail-image {
        max-height: 300px;
    }

    .game-content h2 {
        font-size: 1.25rem;
    }
    
    .aviator-info-section,
    .mines-info-section,
    .penalty-info-section,
    .tower-info-section,
    .cricket-info-section,
    .chicken-info-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .aviator-info-section h3,
    .mines-info-section h3,
    .penalty-info-section h3,
    .tower-info-section h3,
    .cricket-info-section h3,
    .chicken-info-section h3 {
        font-size: 1.25rem;
        margin-bottom: 0.875rem;
    }
    
    .strategy-point {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .strategy-point strong {
        font-size: 0.95rem;
    }
    
    .strategy-point p {
        font-size: 0.9rem;
    }
    
    .strategy-conclusion {
        font-size: 0.9rem;
        padding: 1rem;
    }
    
    .get-signal-section {
        margin: 1.5rem 0;
    }
    
    .get-signal-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
    
    .generated-signal {
        padding: 0.875rem;
        margin-top: 1rem;
        font-size: 0.95rem;
    }
    
    .signal-timer {
        padding: 0.875rem;
        margin-top: 1rem;
        font-size: 0.95rem;
    }
}

/* Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0.75rem;
    }

    .landing-content {
        padding: 1.5rem 0;
    }

    .main-title {
        font-size: 2rem;
        letter-spacing: 0.5px;
        margin-bottom: 0.75rem;
    }

    .subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .logo-section {
        margin-bottom: 2rem;
    }

    .description-section,
    .contact-section,
    .password-section,
    .cta-section,
    .games-preview-section,
    .benefits-section,
    .how-it-works-section,
    .testimonials-section {
        padding: 1.25rem;
        border-radius: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .description-details {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .detail-item {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .games-preview-section h2,
    .benefits-section h2,
    .how-it-works-section h2,
    .testimonials-section h2 {
        font-size: 1.25rem;
    }
    
    .games-preview-text {
        font-size: 0.9rem;
    }
    
    .testimonials-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .investors-section {
        padding: 1.25rem;
        border-radius: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .investors-section h2 {
        font-size: 1.25rem;
    }
    
    .investors-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .investors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .investor-logo {
        width: 200px;
        height: 100px;
        padding: 1rem;
    }
    
    
    .testimonial-avatar {
        width: 45px;
        height: 45px;
    }
    
    .testimonial-info h4 {
        font-size: 1rem;
    }
    
    .testimonial-location {
        font-size: 0.85rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .core-console {
        padding: 0.75rem;
    }
    
    .console-header {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .console-title {
        font-size: 1.25rem;
    }
    
    .console-center {
        max-width: 100%;
        gap: 1.25rem;
    }
    
    .risk-dashboard {
        padding: 0.75rem;
    }
    
    .dashboard-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .kpi-cards {
        gap: 0.5rem;
    }
    
    .kpi-card {
        padding: 0.5rem;
    }
    
    .kpi-label {
        font-size: 0.8rem;
    }
    
    .kpi-value {
        font-size: 0.9rem;
    }
    
    .dashboard-note {
        font-size: 0.75rem;
        padding-top: 0.75rem;
    }
    
    .chart-container {
        padding: 0.75rem;
    }
    
    .chart-title {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .chart-svg {
        height: 100px;
    }
    
    .bar-chart {
        gap: 0.75rem;
    }
    
    .bar-item {
        gap: 0.5rem;
    }
    
    .bar-label {
        min-width: 45px;
        font-size: 0.75rem;
    }
    
    .bar-wrapper {
        height: 18px;
    }
    
    .bar-value {
        font-size: 0.8rem;
        min-width: 35px;
    }
    
    .compliance-grid {
        gap: 0.75rem;
    }
    
    .compliance-item {
        gap: 0.3rem;
    }
    
    .compliance-label {
        font-size: 0.75rem;
    }
    
    .compliance-value {
        font-size: 0.9rem;
    }
    
    .compliance-bar {
        height: 12px;
    }
    
    .decision-stats {
        gap: 0.5rem;
    }
    
    .stat-box {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .stat-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-desc {
        font-size: 0.75rem;
    }
    
    .sessions-table {
        padding: 0.75rem;
    }
    
    .table-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .sessions-data {
        font-size: 0.7rem;
    }
    
    .sessions-data th,
    .sessions-data td {
        padding: 0.4rem 0.2rem;
    }
    
    .status-badge {
        padding: 0.2rem 0.5rem;
        font-size: 0.65rem;
    }
    
    .game-logic-console {
        padding: 0.75rem;
    }
    
    .game-logic-header {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        text-align: center;
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .game-logic-logo {
        font-size: 1.25rem;
    }
    
    .header-title {
        font-size: 1.25rem;
    }
    
    .header-badges {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .badge {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .header-center {
        order: 1;
    }
    
    .header-left {
        order: 2;
        justify-content: center;
    }
    
    .header-right {
        order: 3;
        justify-content: center;
    }
    
    .game-logic-layout {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .logic-matrix {
        padding: 1rem;
    }
    
    .matrix-title {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .matrix-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .column-header {
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }
    
    .column-title {
        font-size: 1rem;
    }
    
    .logic-blocks {
        gap: 0.75rem;
    }
    
    .logic-block {
        padding: 0.75rem;
    }
    
    .block-icon {
        font-size: 1.25rem;
        margin-bottom: 0.4rem;
    }
    
    .block-name {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
    
    .block-desc {
        font-size: 0.75rem;
    }
    
    .logic-right {
        gap: 1.25rem;
    }
    
    .summary-block {
        padding: 1rem;
    }
    
    .summary-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .summary-list {
        gap: 0.75rem;
    }
    
    .summary-item {
        font-size: 0.85rem;
        gap: 0.75rem;
    }
    
    .item-icon {
        font-size: 1.1rem;
    }
    
    .checklist {
        gap: 0.75rem;
    }
    
    .checklist-item {
        font-size: 0.85rem;
        gap: 0.75rem;
    }
    
    .check-icon {
        font-size: 1.1rem;
    }
    
    .selected-blocks {
        gap: 0.5rem;
    }
    
    .selected-item {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .selected-icon {
        font-size: 1.1rem;
    }
    
    .selected-name {
        font-size: 0.8rem;
    }
    
    .game-logic-footer {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .modal-content {
        padding: 1.25rem;
    }
    
    .modal-header h3 {
        font-size: 1.1rem;
    }
    
    .modal-body p {
        font-size: 0.85rem;
    }
    
    .games-slider-container {
        padding: 0.75rem;
        max-width: 100%;
    }
    
    .slider-game-image {
        height: 220px;
        padding: 0.75rem;
    }
    
    .slider-game-info {
        padding: 0.875rem;
    }
    
    .slider-game-info h3 {
        font-size: 1.15rem;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .benefit-card {
        padding: 1.25rem;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .benefit-card h3 {
        font-size: 1.1rem;
    }
    
    .benefit-card p {
        font-size: 0.85rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-item {
        padding: 1.25rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .step-item h3 {
        font-size: 1.1rem;
    }
    
    .step-item p {
        font-size: 0.85rem;
    }

    .description-section h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .description-text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .feature-item {
        padding: 0.875rem;
        font-size: 0.85rem;
    }

    .feature-icon {
        font-size: 1.25rem;
    }

    .contact-section h3 {
        font-size: 1.25rem;
    }

    .contact-section p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .telegram-link {
        font-size: 0.95rem;
        padding: 0.875rem 1.25rem;
    }

    .password-section h3,
    .cta-content h3 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .cta-content > p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .cta-telegram-link {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
    }

    .password-input,
    .activate-btn {
        font-size: 0.95rem;
        padding: 0.875rem 1rem;
    }

    .error-message {
        font-size: 0.85rem;
    }

    .games-header {
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
    }

    .games-header h1 {
        font-size: 1.75rem;
        letter-spacing: 0.5px;
    }

    .logout-btn {
        font-size: 0.85rem;
        padding: 0.625rem 1.25rem;
    }

    .games-grid-section {
        grid-template-columns: 1fr;
        column-gap: 0.33px;
        row-gap: 1rem;
        justify-items: center;
    }
    
    .games-section-title {
        font-size: 1.25rem;
    }
    
    .games-container {
        gap: 1.5rem;
    }
    
    .games-section {
        gap: 1rem;
    }
    
    .slots-soon-section {
        padding: 2.5rem 1rem;
        margin: 1.5rem 0;
    }
    
    .slots-soon-text {
        font-size: 2rem;
    }

    .game-card {
        border-radius: 0.75rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .game-card-image {
        height: 180px;
        width: 100%;
    }

    .game-card-info {
        padding: 1.25rem;
    }

    .game-card-title {
        font-size: 1.1rem;
    }

    .game-card-type {
        font-size: 0.8rem;
        padding: 0.2rem 0.625rem;
    }

    .game-detail-header {
        margin-bottom: 1.5rem;
    }

    .game-detail-header h1 {
        font-size: 1.75rem;
        letter-spacing: 0.5px;
    }
    
    .core-logic-title {
        font-size: 1.75rem;
    }
    
    .message-text {
        font-size: 1.1rem;
    }
    
    .screen-content {
        min-height: 350px;
        padding: 0.75rem;
    }
    
    .code-block,
    .json-data,
    .table-data {
        padding: 1rem;
    }
    
    .code-block code,
    .json-block {
        font-size: 0.7rem;
    }
    
    .data-table {
        font-size: 0.8rem;
    }

    .back-btn {
        font-size: 0.9rem;
        padding: 0.625rem 1.25rem;
    }

    .game-detail-content {
        padding: 1.25rem;
        border-radius: 0.75rem;
    }

    .game-image-wrapper {
        margin-bottom: 1.5rem;
    }

    .game-detail-image {
        max-height: 250px;
        border-radius: 0.5rem;
    }

    .game-content {
        font-size: 0.9rem;
    }

    .game-content h2 {
        font-size: 1.15rem;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .game-content p {
        font-size: 0.9rem;
        margin-bottom: 0.875rem;
    }

    .game-content ul,
    .game-content ol {
        margin-left: 1.5rem;
        margin-bottom: 0.875rem;
    }

    .game-content li {
        font-size: 0.9rem;
        margin-bottom: 0.375rem;
    }

    .signal-item {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .signal-header {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .signal-time {
        font-size: 0.9rem;
        text-align: left;
    }
    
    .signal-coefficient {
        min-width: 100%;
        max-width: 100%;
        padding: 1rem;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    .coeff-label {
        font-size: 0.65rem;
    }
    
    .coeff-value {
        font-size: clamp(3rem, 12vw, 6rem);
        max-width: 100%;
    }
    
    .signal-message {
        font-size: 0.9rem;
    }

    .strategy-section {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .strategy-title {
        font-size: 1rem;
        margin-bottom: 0.625rem;
    }

    /* Reduce animations on mobile for better performance */
    .main-title,
    .games-header h1,
    .game-detail-header h1 {
        animation: none;
        text-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
    }

    .game-card::before {
        display: none;
    }

    .activate-btn::before {
        display: none;
    }
}

/* Very Small Mobile Devices */
@media (max-width: 360px) {
    .main-title {
        font-size: 1.75rem;
    }

    .description-section h2 {
        font-size: 1.25rem;
    }

    .games-header h1,
    .game-detail-header h1 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0.5rem;
    }

    .description-section,
    .contact-section,
    .password-section,
    .game-detail-content {
        padding: 1rem;
    }
    
    .aviator-info-section,
    .mines-info-section,
    .penalty-info-section,
    .tower-info-section,
    .cricket-info-section,
    .chicken-info-section {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .aviator-info-section h3,
    .mines-info-section h3,
    .penalty-info-section h3,
    .tower-info-section h3,
    .cricket-info-section h3,
    .chicken-info-section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .strategy-point {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .strategy-point strong {
        font-size: 0.9rem;
    }
    
    .strategy-point p {
        font-size: 0.85rem;
    }
    
    .strategy-conclusion {
        font-size: 0.85rem;
        padding: 0.75rem;
    }
    
    .get-signal-section {
        margin: 1.5rem 0;
    }
    
    .get-signal-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .generated-signal {
        padding: 0.75rem;
        margin-top: 1rem;
        font-size: 0.9rem;
    }
    
    .signal-timer {
        padding: 0.75rem;
        margin-top: 1rem;
        font-size: 0.9rem;
    }
    
    .signal-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .signal-header {
        gap: 0.75rem;
    }
    
    .signal-coefficient {
        padding: 0.875rem;
        min-width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .coeff-label {
        font-size: 0.6rem;
        margin-bottom: 0.4rem;
    }
    
    .coeff-value {
        font-size: clamp(2.5rem, 10vw, 5rem);
        max-width: 100%;
    }
    
    .signal-message {
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }
    
    .signal-difficulty {
        font-size: 0.85rem;
        margin: 0.5rem 0;
    }
}

/* Prevent horizontal scroll on all devices */
img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

input,
textarea,
select {
    max-width: 100%;
    box-sizing: border-box;
}

/* Improve touch targets for mobile */
@media (max-width: 768px) {
    button,
    .activate-btn,
    .telegram-link,
    .logout-btn,
    .back-btn,
    .game-card {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .landing-content {
        padding: 1.5rem 0;
    }

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

    .logo-section {
        margin-bottom: 1.5rem;
    }

    .description-section,
    .contact-section,
    .password-section,
    .cta-section {
        margin-bottom: 1.25rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .activate-btn,
    .telegram-link,
    .logout-btn,
    .back-btn,
    .game-card {
        -webkit-tap-highlight-color: rgba(176, 38, 255, 0.3);
    }

    .game-card:hover {
        transform: none;
    }

    .game-card:active {
        transform: scale(0.98);
    }

    .activate-btn:hover,
    .telegram-link:hover,
    .logout-btn:hover,
    .back-btn:hover {
        transform: none;
    }

    .activate-btn:active,
    .telegram-link:active {
        transform: scale(0.95);
    }
}
