/* ==========================================================================
   CSS Variables for Cyberpunk/Dark Theme
   ========================================================================== */
:root {
    /* Asosiy ranglar */
    --bg-color: #050508;
    --bg-secondary: #0a0a10;
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0b0;

    /* Neon ranglar (Cyberpunk uslubi uchun) */
    --neon-blue: #00d0ff;
    --neon-blue-glow: rgba(0, 208, 255, 0.5);
    --neon-green: #00ff88;
    --neon-green-glow: rgba(0, 255, 136, 0.5);

    /* Gradient */
    --gradient-blue-green: linear-gradient(135deg, var(--neon-blue), var(--neon-green));

    /* Shrift */
    --font-main: 'Outfit', sans-serif;

    /* O'lchamlar va Tranzaktsiyalar */
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   Base Styles / Umumiy stillar
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Typography & Utilities / Matn va Yordamchi klasslar
   ========================================================================== */
.neon-text-blue {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue-glow);
}

.neon-text-green {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green-glow);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ==========================================================================
   Background Effects / Orqa fon effektlari
   ========================================================================== */
.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image:
        linear-gradient(rgba(0, 208, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 208, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -2;
    pointer-events: none;
}

.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
}

.orb-blue {
    width: 400px;
    height: 400px;
    background: var(--neon-blue);
    top: -100px;
    right: -100px;
}

.orb-green {
    width: 300px;
    height: 300px;
    background: var(--neon-green);
    bottom: 10%;
    left: -100px;
}

/* ==========================================================================
   Navbar / Navigatsiya
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(5, 5, 8, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-blue-green);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--neon-green);
}

.nav-links a:hover::after {
    width: 100%;
    box-shadow: 0 0 10px var(--neon-green-glow);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--neon-blue);
}

/* ==========================================================================
   Hero Section / Asosiy Qism
   ========================================================================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Cyber Button / Zamonaviy tugma */
.cyber-btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--bg-color);
    background: var(--gradient-blue-green);
    border: none;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.cyber-btn::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--bg-color);
    z-index: -1;
    border-radius: 2px;
    transition: var(--transition);
    opacity: 0;
}

.cyber-btn span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cyber-btn:hover {
    box-shadow: 0 0 30px rgba(0, 208, 255, 0.6);
    transform: translateY(-3px);
    color: #fff;
}

.cyber-btn.btn-outline {
    background: transparent;
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
    box-shadow: none;
}

.cyber-btn.btn-outline:hover {
    background: rgba(0, 208, 255, 0.1);
    box-shadow: inset 0 0 10px rgba(0, 208, 255, 0.5), 0 0 20px rgba(0, 208, 255, 0.3);
}

/* ==========================================================================
   Author Section / Muallif haqida
   ========================================================================== */
.author-section {
    padding: 100px 0;
    background: rgba(5, 5, 8, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.author-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.author-image-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    transform: translateX(-50px);
    opacity: 0;
    transition: all 1s ease 0.2s;
}

.reveal.active .author-image-wrapper {
    transform: translateX(0);
    opacity: 1;
}

.author-image-border {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--neon-blue);
    border-radius: 20px;
    z-index: 1;
    box-shadow: 0 0 20px var(--neon-blue-glow);
    animation: border-pulse 3s infinite alternate;
}

@keyframes border-pulse {
    0% {
        border-color: var(--neon-blue);
        box-shadow: 0 0 20px var(--neon-blue-glow);
    }

    100% {
        border-color: var(--neon-green);
        box-shadow: 0 0 20px var(--neon-green-glow);
    }
}

.author-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    position: relative;
    z-index: 2;
    background: #111;
}

.author-info {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    transform: translateX(50px);
    opacity: 0;
    transition: all 1s ease 0.4s;
}

.reveal.active .author-info {
    transform: translateX(0);
    opacity: 1;
}

.author-name {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.author-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.role-badge {
    background: rgba(0, 208, 255, 0.1);
    color: var(--neon-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--neon-blue);
}

.role-badge:nth-child(2) {
    color: var(--neon-green);
    border-color: var(--neon-green);
    background: rgba(0, 255, 136, 0.1);
}

.role-badge:nth-child(3) {
    color: #ffaa00;
    border-color: #ffaa00;
    background: rgba(255, 170, 0, 0.1);
}

.author-bio {
    margin-bottom: 35px;
    position: relative;
    padding-left: 20px;
    border-left: 4px solid var(--neon-blue);
    background: linear-gradient(90deg, rgba(0, 208, 255, 0.05) 0%, transparent 100%);
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 0 15px 15px 0;
}

.narrative-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-style: italic;
}

.narrative-text:last-child {
    margin-bottom: 0;
}

.narrative-text strong {
    color: var(--neon-green);
    font-weight: 800;
}

.mql5-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e2a000;
    color: #000;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 800;
    transition: var(--transition);
}

.mql5-link:hover {
    background: #ffb500;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(226, 160, 0, 0.3);
}

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

/* Carousel */
.products-carousel-wrapper {
    margin-top: 50px;
    position: relative;
}

.carousel-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.products-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 5px;
    scrollbar-width: none;
    /* Firefox */
}

.products-carousel::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

.product-card {
    min-width: 280px;
    max-width: 300px;
    background: rgba(10, 10, 16, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    scroll-snap-align: center;
    flex: 0 0 auto;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.1);
}

.product-icon {
    font-size: 2.5rem;
    color: var(--neon-green);
    margin-bottom: 15px;
}

.product-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.product-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-btn {
    padding: 8px 20px;
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
    border-radius: 20px;
    font-weight: 600;
}

.product-btn:hover {
    background: var(--neon-blue);
    color: #000;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.carousel-nav button {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav button:hover {
    background: var(--neon-blue);
    border-color: var(--neon-blue);
    color: #000;
}

/* ==========================================================================
   Why Us Section / Nega Aynan Biz
   ========================================================================== */
.why-us {
    padding: 100px 0;
    background: rgba(10, 10, 16, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-blue-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 136, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--neon-blue);
    margin-bottom: 20px;
    text-shadow: 0 0 15px var(--neon-blue-glow);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
}

/* ==========================================================================
   Pricing Section / Narxlar qismi
   ========================================================================== */
.pricing {
    padding: 100px 0;
}

/* Roadmap / Ketma-ket qadamlar formati */
.roadmap-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    gap: 20px;
}

.roadmap-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    border: 2px solid var(--neon-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--neon-blue);
    box-shadow: 0 0 15px var(--neon-blue-glow);
    margin-bottom: -25px;
    z-index: 2;
}

.locked-icon {
    border-color: var(--text-secondary);
    color: var(--text-secondary);
    box-shadow: none;
    font-size: 1.2rem;
}

.roadmap-card {
    background: rgba(10, 10, 16, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 50px 40px 40px;
    width: 100%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.roadmap-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(0, 208, 255, 0.3);
}

.roadmap-card.premium {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}

.roadmap-card.premium:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 255, 136, 0.2);
}

.roadmap-connector {
    height: 60px;
    width: 2px;
    background: linear-gradient(to bottom, var(--neon-blue), rgba(255, 255, 255, 0.1));
    margin: 10px 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.roadmap-connector i {
    position: absolute;
    bottom: -10px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
}

.step-desc {
    color: var(--text-secondary);
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.5;
}

.warning-text {
    color: #ffaa00;
    font-weight: 600;
}

.locked-step .roadmap-card {
    border-color: rgba(255, 255, 255, 0.05);
    background: rgba(10, 10, 16, 0.5);
}

.btn-disabled {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    cursor: not-allowed;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    width: 100%;
}

.btn-disabled:hover {
    transform: none;
    box-shadow: none;
    color: var(--text-secondary);
}

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

.badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--gradient-blue-green);
    color: var(--bg-color);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue-glow);
}

.roadmap-card.premium .price {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green-glow);
}

.price span {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-shadow: none;
}

.features-list {
    margin-bottom: 40px;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.features-list li i {
    color: var(--neon-blue);
}

.roadmap-card.premium .features-list li i {
    color: var(--neon-green);
}

/* Maxsus ajratib ko'rsatilgan matnlar (Notebook holatlari) */
.features-list li.highlight-feature {
    color: var(--neon-green);
    font-weight: 600;
}

.features-list li.warning-feature {
    color: #ffaa00;
    font-weight: 600;
}

.features-list li.warning-feature i {
    color: #ffaa00 !important;
}

.roadmap-card .cyber-btn {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

/* ==========================================================================
   Outcomes Section / Siz kursdan nima olasiz
   ========================================================================== */
.outcomes {
    padding: 100px 0;
    background: rgba(5, 5, 8, 0.8);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.outcome-card {
    background: rgba(10, 10, 16, 0.6);
    border: 1px solid rgba(0, 208, 255, 0.1);
    border-radius: 15px;
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.reveal.active .outcome-card {
    animation: slideUpFade 0.6s ease forwards;
    animation-delay: calc(var(--animation-order) * 0.15s);
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.outcome-card:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 10px 30px rgba(0, 208, 255, 0.15);
    transform: translateY(-5px) !important;
}

.outcome-icon {
    font-size: 2.5rem;
    color: var(--neon-green);
    margin-bottom: 20px;
    display: inline-block;
    padding: 15px;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.outcome-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
}

.outcome-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.outcomes-footer {
    text-align: center;
    padding: 30px;
    background: rgba(0, 208, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 208, 255, 0.2);
}

.outcomes-footer p {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--neon-blue);
    margin: 0;
}

/* Bonus feature in pricing */
.bonus-feature {
    color: var(--neon-green) !important;
    font-weight: 800;
    background: rgba(0, 255, 136, 0.1);
    padding: 5px 15px;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.bonus-feature i {
    color: var(--neon-green) !important;
}

/* ==========================================================================
   Social Section / Ijtimoiy tarmoqlar
   ========================================================================== */
.social {
    padding: 80px 0;
    background: linear-gradient(to top, rgba(0, 208, 255, 0.05), transparent);
    text-align: center;
}

.social-content {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(10, 10, 16, 0.6);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.social h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.social p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.telegram-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #0088cc;
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 136, 204, 0.3);
}

.telegram-btn:hover {
    background: #00aaff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 136, 204, 0.5);
}

.telegram-btn i {
    font-size: 1.5rem;
}

/* ==========================================================================
   Footer / Pastki qism
   ========================================================================== */
footer {
    padding: 40px 0;
    background: #020204;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ==========================================================================
   Animations & Responsive / Animatsiyalar va Moslashuvchanlik
   ========================================================================== */

/* Scroll Reveal Animatsiyasi */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Glitch Effekti */
@keyframes glitch {
    0% {
        transform: translate(0)
    }

    20% {
        transform: translate(-2px, 2px)
    }

    40% {
        transform: translate(-2px, -2px)
    }

    60% {
        transform: translate(2px, 2px)
    }

    80% {
        transform: translate(2px, -2px)
    }

    100% {
        transform: translate(0)
    }
}

.glitched:hover {
    animation: glitch 0.3s cubic-bezier(.25, .46, .45, .94) both infinite;
}

/* Mobil qurilmalar uchun (Tablet va Telefonlar) */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(5, 5, 8, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease-in-out;
        border-left: 1px solid rgba(0, 208, 255, 0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    /* Mobil uchun qo'shimcha moslashuvlar kerak bo'lsa shu yerga qo'shiladi */

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .price {
        font-size: 2.5rem;
    }
}

/* ==========================================================================
   Video Section / Video qismi
   ========================================================================== */
.video-section {
    padding: 100px 0;
    background: rgba(10, 10, 16, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 208, 255, 0.2);
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}