:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #1a1a25;
    --ice-blue: #00d4ff;
    --ice-glow: rgba(0, 212, 255, 0.3);
    --ice-subtle: rgba(0, 212, 255, 0.1);
    --accent-green: #00ff88;
    --accent-red: #ff4466;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-dim: #606070;
    --border-color: rgba(255, 255, 255, 0.08);
    --gradient-main: linear-gradient(135deg, #00d4ff 0%, #0088ff 50%, #00d4ff 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Neural Background */
.neural-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    opacity: 0.4;
}
.neural-bg canvas { width: 100%; height: 100%; }

/* Navigation */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
.nav.scrolled { padding: 0.7rem 2rem; background: rgba(10, 10, 15, 0.95); }
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}
.logo-icon {
    width: 45px; height: 45px;
    background: var(--gradient-main);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--bg-primary);
    box-shadow: 0 0 30px var(--ice-glow);
}
.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}
.logo-text span { color: var(--ice-blue); }
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 0; height: 2px;
    background: var(--ice-blue);
    transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--ice-blue); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 1.5rem; }

/* Language Selector */
.lang-selector { position: relative; }
.lang-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}
.lang-btn:hover { border-color: var(--ice-blue); }
.lang-dropdown {
    position: absolute;
    top: 100%; right: 0;
    margin-top: 0.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}
.lang-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-option {
    padding: 0.7rem 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
}
.lang-option:hover { background: var(--ice-subtle); color: var(--ice-blue); }

.btn-download-nav {
    background: var(--gradient-main);
    color: var(--bg-primary);
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px var(--ice-glow);
}
.btn-download-nav:hover { transform: translateY(-2px); box-shadow: 0 5px 30px var(--ice-glow); }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.menu-toggle span { width: 25px; height: 2px; background: var(--text-primary); transition: all 0.3s ease; }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}
.hero-glow {
    position: absolute;
    width: 800px; height: 800px;
    background: radial-gradient(circle, var(--ice-glow) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.1); }
}
.hero-content {
    text-align: center;
    max-width: 1000px;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--ice-subtle);
    border: 1px solid var(--ice-blue);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--ice-blue);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease forwards;
}
.hero-badge::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}
.hero h1 .highlight, .highlight {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}
.stat-item { text-align: center; }
.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ice-blue);
    display: block;
}
.stat-label {
    font-size: 0.9rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.btn-primary {
    background: var(--gradient-main);
    color: var(--bg-primary);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px var(--ice-glow);
    border: none;
    cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 40px var(--ice-glow); }
.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
.btn-secondary:hover { border-color: var(--ice-blue); color: var(--ice-blue); }

/* Live Signals */
.live-signals {
    position: absolute;
    bottom: 5%; right: 5%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    min-width: 200px;
}
.live-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.8rem;
    color: var(--text-dim);
}
.live-dot {
    width: 8px; height: 8px;
    background: var(--accent-red);
    border-radius: 50%;
    animation: livePulse 1s infinite;
}
@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 68, 102, 0.7); }
    50% { box-shadow: 0 0 0 5px rgba(255, 68, 102, 0); }
}
.signal-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
}
.signal-row:last-child { border-bottom: none; }
.signal-row .pair { font-weight: 700; }
.signal-row .direction { padding: 0.2rem 0.5rem; border-radius: 4px; font-weight: 700; }
.signal-row .direction.long { background: rgba(0, 255, 136, 0.2); color: var(--accent-green); }
.signal-row .direction.short { background: rgba(255, 68, 102, 0.2); color: var(--accent-red); }

/* Sections */
section { padding: 6rem 2rem; position: relative; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}
.section-header p { color: var(--text-secondary); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* Features */
.features { background: #0a0a0f;
    backdrop-filter: blur(20px); }
.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.feature-card:hover { transform: translateY(-5px); border-color: var(--ice-blue); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
    width: 60px; height: 60px;
    background: var(--ice-subtle);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}
.feature-card h3 { font-family: 'Orbitron', sans-serif; font-size: 1.2rem; margin-bottom: 0.8rem; }
.feature-card p { color: var(--text-secondary); font-size: 0.95rem; }

/* How It Works */
.how-it-works { background: var(--bg-primary); }
.steps-container { max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; gap: 3rem; }
.step { display: flex; align-items: center; gap: 3rem; }
.step:nth-child(even) { flex-direction: row-reverse; }
.step-number {
    width: 80px; height: 80px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--bg-primary);
    flex-shrink: 0;
    box-shadow: 0 0 40px var(--ice-glow);
}
.step-content { flex: 1; }
.step-content h3 { font-family: 'Orbitron', sans-serif; font-size: 1.5rem; margin-bottom: 0.8rem; }
.step-content p { color: var(--text-secondary); font-size: 1.05rem; }

/* Pricing */
.pricing { background: #0a0a0f;
    backdrop-filter: blur(20px); }
.pricing-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.4s ease;
}
.pricing-card.popular {
    border-color: var(--ice-blue);
    transform: scale(1.05);
    box-shadow: 0 0 50px var(--ice-glow);
}
.pricing-card.popular::before {
    content: 'POPULAR';
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    color: var(--bg-primary);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}
.pricing-card:hover { transform: translateY(-5px); border-color: var(--ice-blue); }
.pricing-card.popular:hover { transform: scale(1.05) translateY(-5px); }
.pricing-header { text-align: center; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border-color); }
.pricing-name { font-family: 'Orbitron', sans-serif; font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--ice-blue); }
.pricing-price { font-family: 'Orbitron', sans-serif; font-size: 3rem; font-weight: 800; }
.pricing-price span { font-size: 1rem; color: var(--text-dim); font-weight: 400; }
.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li {
    padding: 0.7rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features .check { color: var(--accent-green); font-weight: bold; }
.pricing-features .cross { color: var(--text-dim); }
.pricing-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
}
.pricing-btn.primary {
    background: var(--gradient-main);
    color: var(--bg-primary);
    border: none;
    box-shadow: 0 0 20px var(--ice-glow);
}
.pricing-btn.primary:hover { box-shadow: 0 0 35px var(--ice-glow); }
.pricing-btn.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}
.pricing-btn.secondary:hover { border-color: var(--ice-blue); color: var(--ice-blue); }

/* Technologies */
.technologies { background: var(--bg-primary); }
.tech-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.tech-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    transition: all 0.4s ease;
}
.tech-card:hover { border-color: var(--ice-blue); }
.tech-icon {
    width: 50px; height: 50px;
    background: var(--ice-subtle);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.tech-content h3 { font-family: 'Orbitron', sans-serif; font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--ice-blue); }
.tech-content p { color: var(--text-secondary); font-size: 0.9rem; }

/* FAQ */
.faq { background: #0a0a0f;
    backdrop-filter: blur(20px); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover { border-color: var(--ice-blue); }
.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--ice-blue); transition: transform 0.3s ease; }
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer p { padding: 0 1.5rem 1.5rem; color: var(--text-secondary); }

/* Download */
.download { background: var(--bg-primary); text-align: center; }
.download-content { max-width: 600px; margin: 0 auto; }
.download h2 { font-family: 'Orbitron', sans-serif; font-size: clamp(2rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.download p { color: var(--text-secondary); font-size: 1.1rem; margin-bottom: 2rem; }
.download-buttons { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.download-btn.apk {
    background: var(--gradient-main);
    color: var(--bg-primary);
    box-shadow: 0 0 30px var(--ice-glow);
}
.download-btn.apk:hover { transform: translateY(-3px); box-shadow: 0 10px 40px var(--ice-glow); }
.download-btn.play {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}
.download-btn-icon { font-size: 1.5rem; }
.download-btn-text { text-align: left; }
.download-btn-text small { font-size: 0.75rem; opacity: 0.7; }
.download-btn-text strong { display: block; font-size: 1.1rem; }
.coming-soon { color: var(--text-dim); font-size: 0.9rem; }

/* Footer */
.footer { background: #0a0a0f;
    backdrop-filter: blur(20px); padding: 4rem 2rem 2rem; border-top: 1px solid var(--border-color); }
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand p { color: var(--text-secondary); font-size: 0.95rem; margin-top: 1rem; }
.footer-links h4 { font-family: 'Orbitron', sans-serif; font-size: 1rem; margin-bottom: 1.2rem; color: var(--ice-blue); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a { color: var(--text-secondary); text-decoration: none; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--ice-blue); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid var(--border-color); color: var(--text-dim); font-size: 0.9rem; }
.footer-bottom .disclaimer { margin-top: 0.5rem; font-size: 0.8rem; }

/* Scroll Animations */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Mobile Menu */
.mobile-menu {
    z-index: 1000;
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: #0a0a0f;
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
}
.mobile-menu.active { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu li { padding: 1rem 0; border-bottom: 1px solid var(--border-color); }
.mobile-menu a { color: var(--text-primary); text-decoration: none; font-size: 1.1rem; }

/* Responsive */
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card.popular { transform: none; }
    .pricing-card.popular:hover { transform: translateY(-5px); }
    .tech-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-toggle { display: flex; }
    .hero-stats { flex-wrap: wrap; gap: 2rem; }
    .live-signals { display: none; }
    .step { flex-direction: column !important; text-align: center; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
}

/* Mobile Navigation Fix */
@media (max-width: 768px) {
    .nav {
        padding: 0.8rem 1rem;
    }
    .nav-container {
        gap: 0.5rem;
    }
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    .logo-text {
        font-size: 1.1rem;
    }
    .nav-right {
        gap: 0.5rem;
    }
    .lang-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
    .btn-download-nav {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
        white-space: nowrap;
    }
    .lang-dropdown {
        right: -50px;
        min-width: 140px;
    }
    .lang-option {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    .hero {
        padding: 6rem 1rem 3rem;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    .hero-stats {
        gap: 1.5rem;
    }
    .stat-value {
        font-size: 2rem;
    }
    .stat-label {
        font-size: 0.75rem;
    }
    .hero-buttons {
        gap: 1rem;
    }
    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 0.6rem 0.8rem;
    }
    .logo-text {
        display: none;
    }
    .lang-btn span:last-child {
        display: none;
    }
    .btn-download-nav {
        padding: 0.5rem 0.7rem;
        font-size: 0.7rem;
    }
    .lang-dropdown {
        right: -80px;
    }
}

/* Screenshots Gallery */
.screenshots {
    padding: 100px 5%;
    background: linear-gradient(180deg, #0a0a0f 0%, #0f1419 100%);
}

.screenshots-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.screenshot-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-10px);
}

.screenshot-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.15);
    margin-bottom: 20px;
}

.screenshot-item h4 {
    color: #00d4ff;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.screenshot-item p {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .screenshots {
        padding: 60px 5%;
    }
    
    .screenshots-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .screenshot-item img {
        max-width: 100%;
    }
    
    .screenshot-item h4 {
        font-size: 1.1rem;
    }
    
    .screenshot-item p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .screenshots-gallery {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
