<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', 'Helvetica Neue', sans-serif;
            background: linear-gradient(180deg, #0a1628 0%, #1a2332 50%, #0d1420 100%);
            color: #ffffff;
            line-height: 1.7;
            overflow-x: hidden;
        }

        .hero-section {
            position: relative;
            min-height: 650px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 60px 20px;
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
        }
        
        .hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-1;
}

.seo-title {
    font-size: 22px;        /* mobilga mos */
    font-weight: 600;
    margin: 20px 0 15px;
    text-align: center;
    color: #ffffff;        /* agar dark fon bo‘lsa */
    opacity: 0.95;
}

        .hero-title {
            font-size: 3.8em;
            font-weight: 900;
            text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.9);
            margin-bottom: 50px;
            max-width: 1100px;
            animation: fadeInDown 1.2s ease-out;
            letter-spacing: 1px;
            line-height: 1.3;
        }

        @keyframes fadeInDown {
            from { 
                opacity: 0; 
                transform: translateY(-40px); 
            }
            to { 
                opacity: 1; 
                transform: translateY(0); 
            }
        }

        .hero-buttons {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
            justify-content: center;
            animation: fadeInUp 1.2s ease-out 0.3s both;
        }

        @keyframes fadeInUp {
            from { 
                opacity: 0; 
                transform: translateY(40px); 
            }
            to { 
                opacity: 1; 
                transform: translateY(0); 
            }
        }

        .btn-primary {
            background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
            color: white;
            justify-content: center; /* gorizontal markaz */
            align-items: center;     /* vertikal markaz */
            text-align: center;      /* matn markazda */
            padding: 20px 50px;
            border: none;
            border-radius: 12px;
            font-size: 1.3em;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }

        .btn-primary:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .btn-primary:hover:before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 12px 35px rgba(0, 102, 255, 0.6);
            background: linear-gradient(135deg, #0052CC 0%, #003D99 100%);
        }

        .btn-primary:active {
            transform: translateY(-2px) scale(0.98);
        }

        .floating-bonus {
            position: fixed;
            bottom: 25px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            padding: 18px 45px;
            border-radius: 50px;
            font-size: 1.2em;
            font-weight: 900;
            z-index: 1000;
            box-shadow: 0 10px 35px rgba(255, 215, 0, 0.6);
            animation: bonusPulse 2.5s infinite;
            cursor: pointer;
            text-decoration: none;
            color: #000;
            display: inline-block;
            border: 3px solid rgba(255, 255, 255, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @keyframes bonusPulse {
            0%, 100% { 
                transform: translateX(-50%) translateY(0) scale(1);
                box-shadow: 0 10px 35px rgba(255, 215, 0, 0.6);
            }
            50% { 
                transform: translateX(-50%) translateY(-12px) scale(1.05);
                box-shadow: 0 15px 45px rgba(255, 215, 0, 0.8);
            }
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 50px 25px;
        }

        .content-dropdown {
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 82, 204, 0.05) 100%);
            border-radius: 20px;
            padding: 35px;
            margin: 50px 0;
            backdrop-filter: blur(15px);
            border: 2px solid rgba(0, 102, 255, 0.2);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }

        .dropdown-btn {
            background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
            color: white;
            padding: 20px 35px;
            border: none;
            border-radius: 12px;
            font-size: 1.4em;
            font-weight: 800;
            cursor: pointer;
            width: 100%;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.4s ease;
            box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .dropdown-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0, 102, 255, 0.5);
            background: linear-gradient(135deg, #0052CC 0%, #003D99 100%);
        }

        .dropdown-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            margin-top: 25px;
        }

        .dropdown-content.active {
            max-height: 800px;
        }

        .dropdown-link {
            display: block;
            padding: 20px 25px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
            margin: 12px 0;
            border-radius: 12px;
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
            border-left: 5px solid #0066FF;
            font-size: 1.05em;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .dropdown-link:hover {
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.2) 0%, rgba(0, 82, 204, 0.15) 100%);
            transform: translateX(12px);
            border-left-width: 8px;
            box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
        }

        .section {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
            border-radius: 25px;
            padding: 50px 45px;
            margin: 50px 0;
            backdrop-filter: blur(15px);
            scroll-margin-top: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
            transition: transform 0.3s ease;
        }

        .section:hover {
            transform: translateY(-5px);
        }

        .section h2 {
            font-size: 2.5em;
            margin-bottom: 30px;
            color: #0066FF;
            border-bottom: 4px solid #0066FF;
            padding-bottom: 20px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section h3 {
            font-size: 1.8em;
            color: #0066FF;
            margin: 35px 0 20px;
            font-weight: 800;
        }

        .section img {
            width: 100%;
            max-width: 700px;
            border-radius: 20px;
            margin: 25px 0;
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);
            transition: transform 0.4s ease;
        }

        .section img:hover {
            transform: scale(1.03);
        }

        .section p {
            font-size: 1.15em;
            line-height: 1.9;
            color: #e0e0e0;
        }

        .features-list {
            list-style: none;
            padding-left: 0;
            margin: 25px 0;
        }

        .features-list li {
            padding: 15px 0 15px 45px;
            position: relative;
            font-size: 1.15em;
            line-height: 1.7;
            background: linear-gradient(90deg, rgba(0, 102, 255, 0.1) 0%, transparent 100%);
            margin: 10px 0;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .features-list li:hover {
            background: linear-gradient(90deg, rgba(0, 102, 255, 0.2) 0%, transparent 100%);
            transform: translateX(8px);
        }

        .features-list li:before {
            content: "⚡";
            position: absolute;
            left: 12px;
            color: #FFD700;
            font-size: 1.5em;
            animation: sparkle 2s infinite;
        }

        @keyframes sparkle {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        .table-container {
            overflow-x: auto;
            margin: 35px 0;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 82, 204, 0.05) 100%);
            border-radius: 15px;
            overflow: hidden;
        }

        th, td {
            padding: 20px;
            text-align: left;
            border-bottom: 2px solid rgba(0, 102, 255, 0.2);
            font-size: 1.05em;
        }

        th {
            background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
            font-weight: 800;
            font-size: 1.15em;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        td {
            background: rgba(255, 255, 255, 0.03);
        }

        tr:hover td {
            background: rgba(0, 102, 255, 0.1);
        }

        .contact-list {
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 82, 204, 0.08) 100%);
            padding: 30px;
            border-radius: 15px;
            border-left: 6px solid #0066FF;
            box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
        }

        .contact-list li {
            padding: 15px 0;
            font-size: 1.15em;
            list-style: none;
            transition: all 0.3s ease;
        }

        .contact-list li:hover {
            transform: translateX(8px);
            color: #0066FF;
        }

        .highlight-box {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.08) 100%);
            padding: 30px;
            border-radius: 15px;
            margin: 35px 0;
            border-left: 6px solid #FFD700;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
        }

        footer {
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.9) 100%);
            padding: 50px 25px;
            text-align: center;
            margin-top: 80px;
            border-top: 3px solid #0066FF;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #0066FF;
            text-decoration: none;
            font-size: 1.15em;
            transition: all 0.3s ease;
            font-weight: 600;
            cursor: pointer;
        }

        .footer-links a:hover {
            color: #FFD700;
            transform: translateY(-3px);
        }

        .logo-section {
    display: flex;
    justify-content: center; /* gorizontal markazlash */
    align-items: center;     /* vertikal markazlash */
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 82, 204, 0.05) 100%);
    border-radius: 20px;
    flex-direction: column;  /* rasm va matn bo‘lsa ustma-ust joylashadi */
    text-align: center;
    min-height: 200px;       /* vertikal markazlash uchun */
}

.logo-section img {
    max-width: 350px;
    filter: drop-shadow(0 10px 30px rgba(0, 102, 255, 0.5));
    transition: transform 0.4s ease;
    cursor: pointer;
}

.logo-section img:hover {
    transform: scale(1.05);
}

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1001;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
        }

        .modal-content {
            background: linear-gradient(180deg, #1a2332 0%, #0d1420 100%);
            margin: 5% auto;
            padding: 40px;
            border: 2px solid #0066FF;
            border-radius: 20px;
            width: 90%;
            max-width: 900px;
            max-height: 80vh;
            overflow-y: auto;
            color: #ffffff;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 102, 255, 0.5);
        }

        .close {
            color: #aaa;
            float: right;
            font-size: 35px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close:hover {
            color: #FFD700;
        }

        .modal h2 {
            color: #0066FF;
            margin-bottom: 20px;
            font-size: 2em;
            text-align: center;
            border-bottom: 2px solid #0066FF;
            padding-bottom: 10px;
        }

        .modal p, .modal li {
            font-size: 1.1em;
            line-height: 1.8;
            margin-bottom: 15px;
            color: #e0e0e0;
        }

        .modal ul {
            list-style-type: disc;
            padding-left: 20px;
        }

        .modal .btn-primary {
            margin-top: 20px;
            display: inline-block;
        }

        @media (max-width: 1024px) {
            .hero-title {
                font-size: 2.8em;
            }
            
            .section {
                padding: 40px 35px;
            }
        }
        
        @media (min-width: 768px) {
    .seo-title {
        font-size: 26px;
    }
}

        @media (max-width: 768px) {
            .hero-section {
                min-height: 500px;
                padding: 40px 15px;
            }

            .hero-title {
                font-size: 2em;
                margin-bottom: 35px;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
                max-width: 350px;
            }

            .btn-primary {
                width: 100%;
                padding: 18px 30px;
                font-size: 1.1em;
                border-radius: 10px;
            }
           
             .anchor-offset {
                padding-top: 90px;
                margin-top: -90px;
             }

            .section {
            	scroll-margin-top: 90px; /* header balandligi */
                padding: 30px 25px;
            }

            .section h2 {
                font-size: 1.8em;
            }

            .section h3 {
                font-size: 1.4em;
            }

            .section p, .features-list li, .contact-list li {
                font-size: 1em;
            }

            .floating-bonus {
                font-size: 1em;
                padding: 14px 30px;
                bottom: 15px;
            }

            .content-dropdown {
                padding: 25px 20px;
            }

            .dropdown-btn {
                font-size: 1.1em;
                padding: 16px 20px;
                border-radius: 10px;
            }

            .dropdown-link {
                padding: 16px 20px;
                font-size: 0.95em;
                border-radius: 10px;
            }

            table {
                font-size: 0.9em;
            }

            th, td {
                padding: 12px;
            }

            .footer-links {
                flex-direction: column;
                gap: 15px;
            }

            .modal-content {
                width: 95%;
                margin: 10% auto;
                padding: 20px;
                border-radius: 15px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.5em;
            }

            .container {
                padding: 30px 15px;
            }

            .btn-primary {
                padding: 15px 25px;
                font-size: 1em;
                border-radius: 8px;
            }

            .section h2 {
                font-size: 1.5em;
            }

            .floating-bonus {
                font-size: 0.9em;
                padding: 12px 25px;
                border-radius: 25px;
            }

            .dropdown-btn {
                border-radius: 8px;
            }

            .dropdown-link {
                border-radius: 8px;
            }
        }
    </style>