        :root {
            --primary-red: #E70E02;
            --primary-orange: #FF7F11;
            --primary-blue: #011140;
            --accent-blue: #1E90FF;
            --text-color: #333;
            --bg-light: #f8f9fa;
            --bg-dark: #0a0a0a;
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            --card-shadow: 0 4px 20px rgba(0,0,0,0.08);
            --hover-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        /* Modern Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes scaleIn {
            from { transform: scale(0.95); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

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

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        @keyframes shimmer {
            0% { background-position: -1000px 0; }
            100% { background-position: 1000px 0; }
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            overflow-x: hidden;
            background-color: var(--bg-light);
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 30px;
        }

        /* Modern Header with Glassmorphism */
        header {
            background: rgba(1, 17, 64, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: white;
            padding: 15px 0;
            position: fixed;
            width: 100%;
            z-index: 1000;
            top: 0;
            box-shadow: 0 2px 20px rgba(0,0,0,0.2);
            transition: var(--transition);
            overflow: visible;
        }

        header.scrolled {
            padding: 10px 0;
            background: rgba(1, 17, 64, 0.98);
        }

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

        .logo {
            height: 80px;
            transition: var(--transition);
            margin-top: -40px;
            margin-bottom: -40px;
        }

        .logo:hover {
            transform: scale(1.05);
            filter: brightness(1.1);
        }

        .logo-link {
            display: block;
            line-height: 0;
        }

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

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            padding: 8px 16px;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
        }

        .nav-links a:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-orange);
            transition: width 0.3s ease;
        }

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

        .nav-links a:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-2px);
        }

        .language-selector select {
            background: rgba(255,255,255,0.1);
            color: white;
            border: 1px solid rgba(255,255,255,0.3);
            padding: 8px 16px;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 10px center;
            padding-right: 30px;
        }

        .language-selector select:hover {
            background-color: rgba(255,255,255,0.2);
        }

        /* Mobile menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            z-index: 1001;
        }

        /* Modern Hero Section with 3D-like elements */
        .hero {
            background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
            color: white;
            padding: 150px 0 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08) 0%, transparent 70%),
                radial-gradient(circle at 0% 0%, rgba(255,255,255,0.05) 0%, transparent 50%),
                radial-gradient(circle at 100% 100%, rgba(255,255,255,0.05) 0%, transparent 50%);
            background-size: 100% 100%;
            opacity: 0.4;
            animation: pulse 15s infinite ease-in-out;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 2.6em;
            font-weight: 800;
            margin-bottom: 20px;
            animation: fadeIn 1s ease;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 0.6em;
            display: block;
            margin-top: 10px;
            background: linear-gradient(45deg, #fff, rgba(255,255,255,0.8));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: 1.2em;
            margin-bottom: 40px;
            opacity: 0.9;
            animation: fadeIn 1s ease 0.2s backwards;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: linear-gradient(45deg, var(--primary-blue), #1a2980);
            color: white;
            padding: 15px 40px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.2em;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(1, 17, 64, 0.3);
            position: relative;
            overflow: hidden;
            animation: fadeIn 1s ease 0.4s backwards;
        }

        .hero-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                rgba(255,255,255,0) 0%, 
                rgba(255,255,255,0.2) 50%, 
                rgba(255,255,255,0) 100%);
            transition: all 0.6s ease;
        }

        .hero-btn:hover:before {
            left: 100%;
        }

        .hero-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(1, 17, 64, 0.4);
        }

        /* Mobile-only hero CTA section */
        .hero-cta-mobile {
            display: none;
            padding: 40px 0;
            background: var(--bg-light);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-cta-mobile:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08) 0%, transparent 70%),
                radial-gradient(circle at 0% 0%, rgba(255,255,255,0.05) 0%, transparent 50%),
                radial-gradient(circle at 100% 100%, rgba(255,255,255,0.05) 0%, transparent 50%);
            background-size: 100% 100%;
            opacity: 0.15;
        }

        .hero-cta-mobile-content {
            position: relative;
            z-index: 2;
        }

        .hero-cta-mobile-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: linear-gradient(45deg, var(--primary-orange), #FFA041);
            color: white;
            padding: 18px 50px;
            border-radius: 15px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.3em;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 6px 20px rgba(255,127,17,0.4);
            position: relative;
            overflow: hidden;
        }

        .hero-cta-mobile-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                rgba(255,255,255,0) 0%, 
                rgba(255,255,255,0.2) 50%, 
                rgba(255,255,255,0) 100%);
            transition: all 0.6s ease;
        }

        .hero-cta-mobile-btn:hover:before {
            left: 100%;
        }

        .hero-cta-mobile-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(255,127,17,0.5);
        }

        /* 3D Elements */
        .hero-3d-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .floating-shield {
            position: absolute;
            width: 180px;
            height: 180px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: floatUpDown 6s infinite ease-in-out;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .floating-shield i {
            font-size: 70px;
            color: rgba(255,255,255,0.7);
        }

        .floating-shield:nth-child(1) {
            top: 20%;
            left: 15%;
            animation-delay: 0s;
        }

        .floating-shield:nth-child(2) {
            top: 60%;
            right: 10%;
            animation-delay: 1s;
        }

        .floating-shield:nth-child(3) {
            bottom: 15%;
            left: 20%;
            animation-delay: 2s;
        }

        .floating-shield:nth-child(4) {
            top: 25%;
            right: 15%;
            width: 180px;
            height: 180px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: floatUpDown 6s infinite ease-in-out;
            animation-delay: 1.5s;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .floating-shield:nth-child(4) img {
            width: 70%;
            height: 70%;
            object-fit: contain;
            filter: brightness(1.2);
        }

        /* Modern Download Section with Card Design */
        .download {
            padding: 70px 0;
            background: white;
            border-radius: 30px 30px 0 0;
            margin-top: -30px;
            position: relative;
            box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
            z-index: 3;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.5em;
            color: var(--primary-blue);
            position: relative;
            display: inline-block;
            margin-bottom: 20px;
        }

        .section-header h2:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background: var(--primary-orange);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-header p {
            font-size: 1.2em;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .download-options {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: nowrap;
            margin-top: 50px;
        }

        .download-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            flex: 1;
            min-width: 0;
            max-width: 400px;
            transition: var(--transition);
            box-shadow: var(--card-shadow);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .download-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
        }

        .download-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--hover-shadow);
        }

        .download-card h3 {
            font-size: 1.8em;
            margin-bottom: 25px;
            color: var(--primary-blue);
        }

        .store-badge-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            margin-top: 25px;
        }

        .store-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 220px;
            min-width: 220px;
            height: 60px;
            min-height: 60px;
            max-width: 220px;
            max-height: 60px;
            box-sizing: border-box;
        }

        .store-badge:hover {
            transform: translateY(-3px);
            filter: brightness(1.05);
        }

        .store-badge img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
            margin: 0;
            padding: 0;
        }

        .install-help-link {
            color: var(--primary-blue);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            text-align: center;
            padding: 8px 12px;
            border-radius: 8px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .install-help-link:hover {
            color: var(--primary-orange);
            background: rgba(255, 107, 53, 0.1);
            border-color: var(--primary-orange);
            text-decoration: none;
        }

        .apk-button {
            gap: 10px;
            background: linear-gradient(45deg, var(--primary-orange), #FFA041);
            color: white;
            padding: 0 18px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            text-align: center;
            box-shadow: 0 4px 15px rgba(255,127,17,0.3);
            font-size: 1.15em;
            height: 50px;
            min-height: 50px;
            max-height: 50px;
            display: flex;
            align-items: center;
            line-height: 50px;
            justify-content: center;
            width: 205px;
            min-width: 205px;
            max-width: 205px;
        }

        .apk-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255,127,17,0.4);
        }

        .android-buttons {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 25px;
            margin-top: 25px;
        }

        /* Modern Features Section */
        .features {
            padding: 120px 0;
            background: var(--bg-light);
            position: relative;
            overflow: hidden;
        }

        .features:before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: linear-gradient(45deg, rgba(255,127,17,0.05), rgba(231,14,2,0.05));
            border-radius: 50%;
            top: -150px;
            right: -150px;
            z-index: 0;
        }

        .features:after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: linear-gradient(45deg, rgba(1,17,64,0.05), rgba(255,127,17,0.05));
            border-radius: 50%;
            bottom: -200px;
            left: -200px;
            z-index: 0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 60px;
            position: relative;
            z-index: 2;
        }

        .feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            transition: var(--transition);
            box-shadow: var(--card-shadow);
            position: relative;
            border: 1px solid rgba(0,0,0,0.03);
            display: flex;
            flex-direction: column;
            align-items: center;
            overflow: hidden;
            min-height: 300px;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--hover-shadow);
        }

        .feature-icon-container {
            position: relative;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(255,127,17,0.1), rgba(231,14,2,0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: var(--transition);
            flex-shrink: 0;
        }

        .feature-card:hover .feature-icon-container {
            transform: scale(1.1);
            background: linear-gradient(135deg, rgba(255,127,17,0.2), rgba(231,14,2,0.2));
        }

        .feature-icon {
            font-size: 2.2em;
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: var(--transition);
        }

        .feature-card h3 {
            font-size: 1.6em;
            margin-bottom: 15px;
            color: var(--primary-blue);
            transition: var(--transition);
            line-height: 1.3;
            padding: 0 10px;
            word-wrap: break-word;
            width: 100%;
            min-height: 2.6em;
        }

        .feature-card p {
            color: #666;
            line-height: 1.7;
            transition: var(--transition);
            padding: 0 10px;
            word-wrap: break-word;
            width: 100%;
            margin: 0;
        }

        /* Modern Footer */
        footer {
            background: var(--primary-blue);
            color: white;
            padding: 80px 0 40px;
            position: relative;
            overflow: hidden;
        }

        footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 60px;
            position: relative;
            z-index: 2;
        }

        .footer-branding h3 {
            font-size: 1.8em;
            margin-bottom: 15px;
            background: linear-gradient(45deg, #fff, #ddd);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .footer-branding p {
            color: rgba(255,255,255,0.7);
            margin-bottom: 25px;
            font-size: 1.1em;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            transition: var(--transition);
            font-size: 1.2em;
        }

        .footer-social a:hover {
            background: var(--primary-orange);
            transform: translateY(-5px);
        }

        .footer-links h4 {
            font-size: 1.3em;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
            display: inline-block;
        }

        .footer-links h4:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background: var(--primary-orange);
            bottom: 0;
            left: 0;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
            position: relative;
            padding-left: 0;
        }

        .footer-links a:before {
            content: '→';
            position: absolute;
            left: -20px;
            opacity: 0;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: white;
            padding-left: 20px;
        }

        .footer-links a:hover:before {
            opacity: 1;
            left: 0;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            margin-top: 60px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: rgba(255,255,255,0.6);
            position: relative;
            z-index: 2;
        }

        /* Modern Feedback Messages */
        .clipboard-feedback {
            margin-top: 15px;
            color: #28a745;
            font-weight: 500;
            opacity: 0;
            transition: opacity 0.3s ease;
            background: rgba(40, 167, 69, 0.1);
            border-radius: 6px;
            padding: 8px 12px;
            display: inline-block;
        }

        .error-message {
            color: var(--primary-red);
            text-align: center;
            margin-top: 20px;
            font-weight: 500;
            padding: 12px 20px;
            border-radius: 10px;
            background: rgba(231, 14, 2, 0.08);
            border-left: 3px solid var(--primary-red);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Enhanced Post Download Section */
        .post-download {
            display: none;
            background: linear-gradient(135deg, #f8f9fa, #f1f3f5);
            padding: 50px 40px;
            border-radius: 20px;
            margin-top: 40px;
            text-align: center;
            box-shadow: var(--card-shadow);
            animation: scaleIn 0.5s ease forwards;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .post-download:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-orange), var(--primary-red));
            top: 0;
            left: 0;
        }

        .post-download h3 {
            color: var(--primary-blue);
            margin-bottom: 20px;
            font-size: 1.8em;
        }

        .post-download p {
            margin-bottom: 30px;
            color: #555;
            font-size: 1.1em;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: linear-gradient(45deg, var(--primary-blue), #1a2980);
            color: white;
            padding: 12px 30px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(1, 17, 64, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-primary:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                rgba(255,255,255,0) 0%, 
                rgba(255,255,255,0.2) 50%, 
                rgba(255,255,255,0) 100%);
            transition: all 0.6s ease;
        }

        .btn-primary:hover:before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(1, 17, 64, 0.4);
        }

        /* Shimmer Effect */
        .shimmer {
            position: relative;
            overflow: hidden;
        }

        .shimmer::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                rgba(255,255,255,0) 0%, 
                rgba(255,255,255,0.2) 20%, 
                rgba(255,255,255,0) 40%);
            animation: shimmer 2s infinite linear;
        }

        /* Counter Section */
        .counter-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-blue), #0a1a5e);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .counter-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08) 0%, transparent 70%),
                radial-gradient(circle at 0% 0%, rgba(255,255,255,0.05) 0%, transparent 50%),
                radial-gradient(circle at 100% 100%, rgba(255,255,255,0.05) 0%, transparent 50%);
            background-size: 100% 100%;
            opacity: 0.15;
        }

        .counter-grid {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .counter-item {
            flex: 1;
            min-width: 200px;
        }

        .counter-value {
            font-size: 3em;
            font-weight: 700;
            margin-bottom: 10px;
            background: linear-gradient(135deg, #fff, #ccc);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .counter-label {
            font-size: 1.1em;
            color: rgba(255,255,255,0.8);
        }

        /* Features Grid Animation */
        .slide-in-element {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .slide-in-element.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 3.5em;
            }
        }

        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3em;
            }

            .hero p {
                font-size: 1.3em;
            }

            .floating-shield {
                width: 140px;
                height: 140px;
            }

            .floating-shield i {
                font-size: 50px;
            }

            .section-header h2 {
                font-size: 2.2em;
            }

            .counter-value {
                font-size: 2.5em;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: var(--primary-blue);
                flex-direction: column;
                padding: 20px 0;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
                transform: translateY(-10px);
                opacity: 0;
                pointer-events: none;
                transition: all 0.3s ease;
            }

            .nav-links.active {
                display: flex;
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }

            .nav-links a {
                padding: 15px 0;
                width: 100%;
                text-align: center;
                border-radius: 0;
            }

            .mobile-menu-btn {
                display: block;
                position: relative;
                z-index: 1001;
                margin-left: auto;
            }

            .header-content {
                position: relative;
            }

            .download-options {
                flex-direction: column;
                align-items: center;
                gap: 30px;
            }

            .download-card {
                width: 100%;
                max-width: 400px;
            }

            .hero {
                padding: 150px 0 100px;
            }

            .hero h1 {
                font-size: 2.6em;
            }

            .hero p {
                font-size: 1.2em;
            }

            .download {
                padding: 70px 0;
            }

            .features {
                padding: 80px 0;
            }

            .feature-icon-container {
                width: 70px;
                height: 70px;
            }

            .counter-grid {
                flex-direction: column;
                gap: 40px;
            }

            .counter-item {
                width: 100%;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .floating-shield:nth-child(4) {
                top: 15%;
                right: 5%;
                width: 80px;
                height: 80px;
            }
            .floating-shield:nth-child(3) {
                top: 70%;
                left: 10%;
                width: 80px;
                height: 80px;
            }
            .floating-shield:nth-child(2) {
                top: 80%;
                left: 40%;
                width: 80px;
                height: 80px;
            }
            .floating-shield:nth-child(1) {
                top: 15%;
                left: 15%;
                width: 80px;
                height: 80px;
            }

            .features-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin-left: auto;
                margin-right: auto;
            }

            .feature-card {
                min-height: auto;
                padding: 30px 20px;
            }

            .feature-card h3 {
                font-size: 1.4em;
            }

            .feature-card p {
                font-size: 0.95em;
            }

            /* Hide hero button on mobile */
            .hero-btn {
                display: none !important;
            }

            /* Show mobile-only hero CTA section */
            .hero-cta-mobile {
                display: block;
            }

            /* About section mobile styles */
            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-text p {
                font-size: 1.1em;
            }

            .projects-section {
                margin-top: 30px;
                padding-top: 25px;
                border-top: 2px solid rgba(255,127,17,0.2);
            }

            .projects-section h3 {
                font-size: 1.2em;
                color: var(--primary-orange);
                margin-bottom: 25px;
                text-align: center;
                position: relative;
                font-weight: 600;
            }

            .projects-section h3:after {
                left: 50%;
                transform: translateX(-50%);
            }

            .project-item {
                padding: 12px 15px;
            }

            .project-item h4 {
                font-size: 1.05em;
            }

            .project-item p {
                font-size: 0.85em;
            }

            .project-links {
                margin-top: 8px;
            }

            .project-links a {
                font-size: 0.85em;
                margin-right: 12px;
            }

            .stat-item {
                padding: 25px 15px;
            }

            .stat-number {
                font-size: 2em;
            }

            .stat-label {
                font-size: 1em;
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 0 20px;
            }

            .hero h1 {
                font-size: 2.2em;
            }

            .hero p {
                font-size: 1.1em;
            }

            .download-card {
                min-width: 100%;
                padding: 30px 20px;
            }

            .section-header h2 {
                font-size: 1.8em;
            }

            .feature-card {
                padding: 30px 20px;
            }

            .testimonial-item {
                padding: 30px 20px;
            }
        }

        .screenshots {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(1,17,64,0.02), rgba(255,127,17,0.02));
            position: relative;
            overflow: hidden;
        }

        .screenshots-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .screenshot-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
            aspect-ratio: 9/20;
            background: white;
        }

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

        .screenshot-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
        }

        .screenshot-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, 
                rgba(0,0,0,0) 0%,
                rgba(0,0,0,0.02) 50%,
                rgba(0,0,0,0.1) 100%);
            pointer-events: none;
            border-radius: 20px;
        }

        @media (max-width: 768px) {
            .screenshots-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            .screenshots-grid {
                grid-template-columns: 1fr;
                max-width: 280px;
                margin-left: auto;
                margin-right: auto;
            }
        }

        /* Balance Section Styles */
        .balance-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-blue), #0a1a5e);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .balance-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08) 0%, transparent 70%),
                radial-gradient(circle at 0% 0%, rgba(255,255,255,0.05) 0%, transparent 50%),
                radial-gradient(circle at 100% 100%, rgba(255,255,255,0.05) 0%, transparent 50%);
            background-size: 100% 100%;
            opacity: 0.15;
        }

        .balance-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .balance-text {
            max-width: 700px;
            margin-bottom: 40px;
        }

        .balance-text h2 {
            font-size: 2.5em;
            color: white;
            margin-bottom: 20px;
        }

        .balance-text p {
            font-size: 1.2em;
            color: rgba(255,255,255,0.9);
            margin-bottom: 30px;
        }

        .balance-btn {
            font-size: 1.1em;
            padding: 15px 40px;
            background: linear-gradient(45deg, var(--primary-orange), #FFA041);
            color: white;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(255,127,17,0.3);
            position: relative;
            overflow: hidden;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .balance-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                rgba(255,255,255,0) 0%, 
                rgba(255,255,255,0.2) 50%, 
                rgba(255,255,255,0) 100%);
            transition: all 0.6s ease;
        }

        .balance-btn:hover:before {
            left: 100%;
        }

        .balance-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255,127,17,0.4);
        }

        .balance-features {
            display: flex;
            gap: 40px;
            margin-top: 20px;
            justify-content: center;
            text-align: center;
        }

        .balance-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255,255,255,0.9);
            font-weight: 500;
        }

        .balance-feature i {
            color: var(--primary-orange);
            font-size: 1.2em;
        }

        @media (max-width: 768px) {
            .balance-features {
                flex-direction: column;
                gap: 20px;
                align-items: center;
                justify-content: center;
            }

            .balance-feature {
                justify-content: center;
                text-align: center;
            }

            .balance-text h2 {
                font-size: 2em;
            }
        }

        .download-card.android-only {
            background: none;
            color: var(--primary-blue);
            position: relative;
        }
        .download-card.ios-only {
            background: none;
            color: var(--primary-blue);
            position: relative;
        }
        .download-app-icon {
            width: 140px;
            height: 80px;
            margin: 0 auto 20px auto;
            display: flex;
            align-items: center;
            justify-content: center;
            background: none;
            border-radius: 18px;
            box-shadow: none;
            overflow: hidden;
            gap: 8px;
        }
        .download-app-icon img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 14px;
            display: block;
        }
        .download-app-icon .plus-sign {
            font-size: 1.5em;
            color: var(--primary-orange);
            margin: 0 4px;
            font-weight: bold;
        }
        .download-app-icon .platform-icon {
            font-size: 2em;
            color: var(--primary-orange);
            display: flex;
            align-items: center;
        }
        .download-card.ios-only .download-app-icon .plus-sign,
        .download-card.ios-only .download-app-icon .platform-icon {
            color: #011140;
        }
        .download-card.ios-only:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #011140, #011140 100%);
            border-top-left-radius: 20px;
            border-top-right-radius: 20px;
        }
        .download-card.android-only:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-red), var(--primary-orange));
            border-top-left-radius: 20px;
            border-top-right-radius: 20px;
        }

        /* Pricing Grid Styles */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin: 30px 0;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .pricing-card {
            background: rgba(255,255,255,0.1);
            padding: 20px 15px;
            border-radius: 15px;
            text-align: center;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            position: relative;
            border: 2px solid transparent;
            min-height: 120px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            background: rgba(255,255,255,0.15);
        }

        .pricing-card.featured {
            border-color: var(--primary-orange);
            background: rgba(255,127,17,0.2);
            transform: scale(1.05);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-5px);
            background: rgba(255,127,17,0.25);
        }

        .pricing-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
            color: white;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 11px;
            font-weight: bold;
            box-shadow: var(--card-shadow);
        }

        .pricing-duration {
            font-size: 16px;
            font-weight: 600;
            color: white;
            margin-bottom: 8px;
        }

        .pricing-price {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-orange);
            margin-bottom: 4px;
        }

        .pricing-price-rub {
            font-size: 24px;
            color: var(--primary-orange);
            font-weight: 700;
        }

        @media (max-width: 768px) {
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
                max-width: 400px;
            }

            .pricing-card {
                padding: 15px 10px;
                min-height: 100px;
            }

            .pricing-duration {
                font-size: 14px;
            }

            .pricing-price {
                font-size: 20px;
            }

            .pricing-price-rub {
                font-size: 12px;
            }

            .pricing-badge {
                top: -10px;
                right: -10px;
                padding: 4px 12px;
                font-size: 12px;
            }

            .pricing-card.featured {
                transform: scale(1.02);
            }

            .pricing-card.featured:hover {
                transform: scale(1.02) translateY(-5px);
            }
        }

        @media (max-width: 480px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 200px;
            }

            .pricing-card {
                min-height: 80px;
            }
        }

        /* Download CTA Section */
        .download-cta {
            padding: 60px 0;
            background: #011140;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .download-cta-flex {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        .download-cta-text {
            flex: 1;
            min-width: 220px;
            text-align: left;
        }
        .download-cta-header {
            color: transparent;
            background: linear-gradient(135deg, #fff 0%, #FFD700 50%, #fff 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 2.8em;
            font-weight: 900;
            line-height: 1.1;
            display: block;
            margin-bottom: 12px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
            letter-spacing: -0.02em;
            text-transform: uppercase;
            position: relative;
        }
        .download-cta-header::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-orange), #FFD700);
            border-radius: 2px;
        }
        .download-cta-headline {
            color: rgba(255,255,255,0.9);
            font-size: 1.3em;
            font-weight: 400;
            line-height: 1.4;
            display: block;
            font-style: italic;
            opacity: 0.95;
            margin-top: 8px;
        }
        .download-cta-btnwrap {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        @media (max-width: 768px) {
            .download-cta-flex {
                flex-direction: column;
                gap: 24px;
            }
            .download-cta-text {
                text-align: center;
            }
            .download-cta-btnwrap {
                width: 100%;
                justify-content: center;
            }
            .download-cta-header {
                font-size: 2.2em;
                letter-spacing: -0.01em;
                margin-bottom: 10px;
            }
            .download-cta-header::after {
                width: 40px;
                height: 2px;
                bottom: -3px;
                left: 50%;
                transform: translateX(-50%);
            }
            .download-cta-headline {
                font-size: 1.1em;
                margin-top: 6px;
            }
        }

        /* Countries Section Styles */
        .countries-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #011140 0%, #1a2980 100%);
            position: relative;
            overflow: hidden;
        }

        .countries-section .section-header h2 {
            color: white;
        }

        .countries-section .section-header p {
            color: rgba(255,255,255,0.8);
        }

        .countries-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-top: 50px;
        }

        .country-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 30px 20px;
            border-radius: 16px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid rgba(255,255,255,0.1);
        }

        .country-card:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.15);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .country-flag {
            font-size: 3em;
            display: block;
            margin-bottom: 15px;
        }

        .country-card h3 {
            color: white;
            font-size: 1.2em;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .country-card p {
            color: rgba(255,255,255,0.7);
            font-size: 0.9em;
            line-height: 1.4;
        }

        @media (max-width: 1024px) {
            .countries-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .countries-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            .country-card {
                padding: 20px 15px;
            }
            .country-flag {
                font-size: 2.5em;
            }
        }

        @media (max-width: 480px) {
            .countries-grid {
                grid-template-columns: 1fr;
                max-width: 280px;
                margin-left: auto;
                margin-right: auto;
            }
        }

        /* FAQ Section Styles */
        .faq-section {
            padding: 100px 0;
            background: var(--bg-light);
        }

        .faq-grid {
            max-width: 900px;
            margin: 50px auto 0;
        }

        .faq-item {
            background: white;
            border-radius: 16px;
            padding: 25px 30px;
            margin-bottom: 20px;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
        }

        .faq-item:hover {
            box-shadow: var(--hover-shadow);
        }

        .faq-item h3 {
            color: var(--primary-blue);
            font-size: 1.1em;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .faq-item p {
            color: var(--text-color);
            line-height: 1.6;
            font-size: 0.95em;
        }

        @media (max-width: 768px) {
            .faq-item {
                padding: 20px;
            }
            .faq-item h3 {
                font-size: 1em;
            }
        }

        /* About Section Styles */
        .about-section {
            padding: 120px 0;
            background: white;
            position: relative;
            overflow: hidden;
        }

        .about-section:before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: linear-gradient(45deg, rgba(1,17,64,0.03), rgba(255,127,17,0.03));
            border-radius: 50%;
            top: -200px;
            right: -200px;
            z-index: 0;
        }

        .about-section:after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: linear-gradient(45deg, rgba(231,14,2,0.03), rgba(255,127,17,0.03));
            border-radius: 50%;
            bottom: -150px;
            left: -150px;
            z-index: 0;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: flex-start;
            position: relative;
            z-index: 2;
        }

        .about-text p {
            font-size: 1.2em;
            line-height: 1.8;
            color: #555;
            margin-bottom: 0;
        }

        .about-projects {
            display: flex;
            flex-direction: column;
        }

        .projects-section {
            margin-top: 0;
            padding-top: 0;
            border-top: none;
        }

        .projects-section h3 {
            font-size: 1.2em;
            color: var(--primary-orange);
            margin-bottom: 25px;
            text-align: center;
            position: relative;
            font-weight: 600;
        }

        .projects-section h3:after {
            content: '';
            position: absolute;
            width: 30px;
            height: 2px;
            background: var(--primary-orange);
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
        }

        .projects-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
        }

        .project-item {
            background: linear-gradient(135deg, #f8f9fa, #f1f3f5);
            padding: 12px 15px;
            border-radius: 8px;
            border-left: 3px solid var(--primary-orange);
            transition: var(--transition);
            box-shadow: 0 1px 5px rgba(0,0,0,0.05);
        }

        .project-item:hover {
            transform: translateX(3px);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            background: linear-gradient(135deg, #f1f3f5, #e9ecef);
        }

        .project-item h4 {
            font-size: 1.05em;
            color: var(--primary-blue);
            margin-bottom: 5px;
            font-weight: 600;
            line-height: 1.3;
        }

        .project-item h4 a {
            color: var(--primary-blue);
            text-decoration: none;
            transition: var(--transition);
            border-bottom: 1px solid transparent;
        }

        .project-item h4 a:hover {
            color: var(--primary-orange);
            border-bottom-color: var(--primary-orange);
        }

        .project-item p {
            font-size: 0.85em;
            line-height: 1.4;
            color: #666;
            margin: 0;
        }

        .project-links {
            margin-top: 8px;
        }

        .project-links a {
            color: var(--primary-orange);
            text-decoration: none;
            margin-right: 15px;
            font-weight: 500;
            font-size: 0.9em;
            transition: var(--transition);
            border-bottom: 1px solid transparent;
        }

        .project-links a:hover {
            color: var(--primary-red);
            border-bottom-color: var(--primary-red);
        }

        .project-links a:last-child {
            margin-right: 0;
        }

        .stat-item {
            text-align: center;
            padding: 30px 20px;
            background: linear-gradient(135deg, #f8f9fa, #f1f3f5);
            border-radius: 15px;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
            border: 1px solid rgba(0,0,0,0.05);
        }

        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--hover-shadow);
            background: linear-gradient(135deg, #f1f3f5, #e9ecef);
        }

        .stat-number {
            font-size: 2.5em;
            font-weight: 700;
            color: var(--primary-orange);
            margin-bottom: 10px;
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-label {
            font-size: 1.1em;
            color: var(--primary-blue);
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-text p {
                font-size: 1.1em;
            }

            .stat-item {
                padding: 25px 15px;
            }

            .stat-number {
                font-size: 2em;
            }

            .stat-label {
                font-size: 1em;
            }
        }

        .download-cta-btn {
            background: linear-gradient(45deg, var(--primary-orange), #FFA041) !important;
            color: white;
        }
