    :root {
            /* الألوان الأساسية */
            --primary: #3a86ff;
            --primary-dark: #2667cc;
            --secondary: #ff6b6b;
            --accent: #8338ec;
            --success: #06d6a0;
            --warning: #ffbe0b;
            --danger: #ef476f;
            
            /* ألوان الخلفية والنص */
            --bg-light: #ffffff;
            --bg-dark: #0f172a;
            --bg-card: #f8fafc;
            --bg-card-dark: #1e293b;
            --text-light: #334155;
            --text-dark: #f8fafc;
            --text-muted: #64748b;
            --text-muted-dark: #94a3b8;
            --border-light: #e2e8f0;
            --border-dark: #334155;
            
            /* المسافات */
            --space-1: 0.25rem;
            --space-2: 0.5rem;
            --space-3: 1rem;
            --space-4: 1.5rem;
            --space-5: 2rem;
            --space-6: 3rem;
            --space-7: 4rem;
            --space-8: 6rem;
            
            /* الزوايا */
            --radius-sm: 0.25rem;
            --radius-md: 0.5rem;
            --radius-lg: 1rem;
            --radius-xl: 2rem;
            --radius-full: 9999px;
            
            /* الظلال */
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            
            /* التدرجات */
            --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--warning) 100%);
        }
        
        /* إعدادات عامة */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        
        body {
            font-family: 'Tajawal', sans-serif;
            color: var(--text-light);
            background-color: var(--bg-light);
            line-height: 1.6;
            overflow-x: hidden;
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        
        body.dark-mode {
            color: var(--text-dark);
            background-color: var(--bg-dark);
        }
        
        a {
            text-decoration: none;
            color: var(--primary);
            transition: color 0.3s ease;
        }
        
        a:hover {
            color: var(--primary-dark);
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--space-4);
        }
        
        /* زر التمرير لأعلى */
        .scroll-top {
            position: fixed;
            bottom: var(--space-5);
            left: var(--space-5);
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            color: white;
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 99;
            box-shadow: var(--shadow-md);
        }
        
        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        /* الهيدر */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }
        
        .dark-mode header {
            background-color: rgba(15, 23, 42, 0.95);
        }
        
        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }
        
        .logo img {
            height: 50px;
            transition: transform 0.3s ease;
        }
        
        .logo:hover img {
            transform: scale(1.05);
        }
        
        .main-menu {
            display: flex;
            gap: var(--space-5);
            list-style: none;
        }
        
        .main-menu a {
            color: var(--text-light);
            font-weight: 500;
            position: relative;
            padding: var(--space-2) 0;
        }
        
        .dark-mode .main-menu a {
            color: var(--text-dark);
        }
        
        .main-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }
        
        .main-menu a:hover, .main-menu a.active {
            color: var(--primary);
        }
        
        .main-menu a:hover::after, .main-menu a.active::after {
            width: 100%;
        }
        
        .header-actions {
            display: flex;
            align-items: center;
            gap: var(--space-3);
        }
        
        .social-icons {
            display: flex;
            gap: var(--space-2);
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: var(--radius-full);
            background-color: var(--bg-card);
            color: var(--text-light);
            transition: all 0.3s ease;
        }
        
        .dark-mode .social-icons a {
            background-color: var(--bg-card-dark);
            color: var(--text-dark);
        }
        
        .social-icons a:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        
        .action-buttons {
            display: flex;
            align-items: center;
            gap: var(--space-2);
        }
        
        .action-buttons button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: var(--radius-full);
            background-color: var(--bg-card);
            color: var(--text-light);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .dark-mode .action-buttons button {
            background-color: var(--bg-card-dark);
            color: var(--text-dark);
        }
        
        .action-buttons button:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        
        #menuToggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 20px;
            background: transparent;
            border: none;
            cursor: pointer;
        }
        
        #menuToggle span {
            display: block;
            width: 100%;
            height: 2px;
            background-color: var(--text-light);
            transition: all 0.3s ease;
        }
        
        .dark-mode #menuToggle span {
            background-color: var(--text-dark);
        }
        
        /* القائمة المتنقلة */
        .mobile-menu {
            position: fixed;
            top: 80px;
            right: -100%;
            width: 100%;
            height: calc(100vh - 80px);
            background-color: var(--bg-light);
            z-index: 999;
            transition: right 0.3s ease;
            padding: var(--space-5);
            overflow-y: auto;
        }
        
        .dark-mode .mobile-menu {
            background-color: var(--bg-dark);
        }
        
        .mobile-menu.active {
            right: 0;
        }
        
        .mobile-menu ul {
            display: flex;
            flex-direction: column;
            gap: var(--space-4);
            list-style: none;
        }
        
        .mobile-menu ul li a {
            display: block;
            font-size: 1.2rem;
            color: var(--text-light);
            padding: var(--space-3) 0;
            border-bottom: 1px solid var(--border-light);
        }
        
        .dark-mode .mobile-menu ul li a {
            color: var(--text-dark);
            border-bottom-color: var(--border-dark);
        }
        
        .mobile-menu ul li a:hover {
            color: var(--primary);
        }
        
        .mobile-menu .social-icons {
            display: flex;
            justify-content: center;
            margin-top: var(--space-6);
        }
        
        /* قسم تفاصيل التطبيق */
        .app-detail-section {
            padding: 120px 0 var(--space-7);
        }
        
        .app-detail-content {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-6);
            align-items: center;
        }
        
        .app-info {
            flex: 1;
            min-width: 300px;
        }
                
        .app-info p {
            font-size: 1.1rem;
            margin-bottom: var(--space-5);
            color: var(--text-muted);
            line-height: 1.8;
        }
        
        .dark-mode .app-info p {
            color: var(--text-muted-dark);
        }
        
        .app-features {
            list-style: none;
            margin-bottom: var(--space-5);
        }
        
        .app-features li {
            margin-bottom: var(--space-3);
            display: flex;
            align-items: flex-start;
            font-size: 1.05rem;
        }
        
        .app-features i {
            color: var(--success);
            margin-left: var(--space-3);
            font-size: 1.2rem;
            margin-top: 0.2rem;
        }
        
        .download-buttons {
            display: flex;
            gap: var(--space-4);
            margin-top: var(--space-5);
            flex-wrap: wrap;
        }
        
        .download-button {
            display: block;
            transition: transform 0.3s ease;
        }
        
        .download-button:hover {
            transform: translateY(-5px);
        }
        
        .download-button img {
            height: 40px;
            width: auto;
            filter: drop-shadow(var(--shadow-sm));
        }
        
        .app-preview {
            flex: 1;
            min-width: 300px;
            display: flex;
            justify-content: center;
        }
        
        .phone-frame {
            width: 100%;
            max-width: 350px;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            position: relative;
            aspect-ratio: 9/16;
        }
        
        .swiper-container {
            width: 100%;
            height: 100%;
        }
        
        .swiper-slide {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .swiper-pagination-bullet {
            background: var(--primary);
        }
        
        .swiper-button-next, .swiper-button-prev {
            color: var(--primary);
        }
        
        /* قسم التطبيقات المقترحة */
        .suggested-apps {
            margin-top: var(--space-7);
            padding: var(--space-6) 0;
            background-color: var(--bg-card);
            border-radius: var(--radius-lg);
        }
        
        .dark-mode .suggested-apps {
            background-color: var(--bg-card-dark);
        }
        
        .suggested-apps h3 {
            font-size: 1.8rem;
            margin-bottom: var(--space-5);
            text-align: center;
            position: relative;
            display: inline-block;
        }
        
        .suggested-apps h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: var(--gradient-primary);
            border-radius: var(--radius-full);
        }
        
        .apps-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: var(--space-4);
            margin-top: var(--space-5);
        }
        
        .app-item {
            background-color: var(--bg-light);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }
        
        .dark-mode .app-item {
            background-color: var(--bg-dark);
        }
        
        .app-item:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .app-item img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: var(--radius-md);
            margin: var(--space-4) auto var(--space-3);
        }
        
        .app-item a {
            display: block;
            padding: 0 var(--space-3) var(--space-4);
            color: var(--text-light);
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .dark-mode .app-item a {
            color: var(--text-dark);
        }
        
        .app-item a:hover {
            color: var(--primary);
        }
        
        /* قسم النشرة الإخبارية */
        .newsletter-section {
            padding: var(--space-7) 0;
            background: var(--gradient-primary);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .newsletter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,.1)' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.3;
        }
        
        .newsletter-content {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .newsletter-content h2 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: var(--space-2);
        }
        
        .newsletter-content p {
            font-size: 1.1rem;
            margin-bottom: var(--space-5);
            opacity: 0.9;
        }
        
        .newsletter-form {
            display: flex;
            gap: var(--space-3);
            max-width: 500px;
            margin: 0 auto;
            position: relative;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: var(--space-3) var(--space-4);
            border: none;
            border-radius: var(--radius-full);
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
            font-size: 1rem;
            backdrop-filter: blur(5px);
        }
        
        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .newsletter-form input:focus {
            outline: none;
            background-color: rgba(255, 255, 255, 0.3);
        }
        
        .newsletter-form button {
            padding: var(--space-3) var(--space-5);
            background-color: white;
            color: var(--primary);
            border: none;
            border-radius: var(--radius-full);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        
        /* التذييل */
        footer {
            background-color: var(--bg-light);
            padding: var(--space-7) 0 var(--space-4);
            border-top: 1px solid var(--border-light);
        }
        
        .dark-mode footer {
            background-color: var(--bg-dark);
            border-top-color: var(--border-dark);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: var(--space-6);
            margin-bottom: var(--space-6);
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: var(--space-4);
            position: relative;
            display: inline-block;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            right: 0;
            width: 30px;
            height: 2px;
            background: var(--gradient-primary);
            border-radius: var(--radius-full);
        }
        
        .footer-column ul {
            display: flex;
            flex-direction: column;
            gap: var(--space-2);
            list-style: none;
        }
        
        .footer-column ul li a {
            color: var(--text-muted);
            transition: color 0.3s ease, transform 0.3s ease;
            display: inline-block;
        }
        
        .dark-mode .footer-column ul li a {
            color: var(--text-muted-dark);
        }
        
        .footer-column ul li a:hover {
            color: var(--primary);
            transform: translateX(-5px);
        }
        
        .footer-column ul li a i {
            margin-left: var(--space-2);
            transition: transform 0.3s ease;
        }
        
        .footer-column ul li a:hover i {
            transform: translateX(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: var(--space-4);
            border-top: 1px solid var(--border-light);
            color: var(--text-muted);
        }
        
        .dark-mode .footer-bottom {
            border-top-color: var(--border-dark);
        }

        
        .footer-lang-select {
            margin-top: 20px;
            display: flex;
            flex-direction: column; /* يجعل العناصر عمودية */
            align-items: flex-start; /* لمحاذاة النص جهة اليمين أو اليسار حسب اللغة */
        }

        .footer-lang-select label {
            margin-bottom: 6px; /* مسافة أسفل النص */
            font-weight: bold;
        }

        .footer-lang-select select {
            padding: 5px 10px;
            border-radius: 5px;
            border: 1px solid #ccc;
        }
        
        /* النوافذ المنبثقة */
        .modal {
            display: none;
            position: fixed;
            z-index: 1100;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
        }
        
        .modal-content {
            background-color: var(--bg-light);
            margin: 10% auto;
            padding: var(--space-5);
            border-radius: var(--radius-lg);
            max-width: 500px;
            position: relative;
            box-shadow: var(--shadow-xl);
            transform: translateY(20px);
            opacity: 0;
            animation: modalFadeIn 0.3s forwards;
        }
        
        .dark-mode .modal-content {
            background-color: var(--bg-dark);
        }
        
        @keyframes modalFadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .close, .close-modal {
            position: absolute;
            top: var(--space-4);
            left: var(--space-4);
            font-size: 1.5rem;
            font-weight: bold;
            cursor: pointer;
            color: var(--text-muted);
            transition: color 0.3s ease;
        }
        
        .close:hover, .close-modal:hover {
            color: var(--danger);
        }
        
        .modal h2 {
            margin-bottom: var(--space-4);
            font-size: 1.8rem;
            color: var(--primary);
        }
        
        .modal p {
            margin-bottom: var(--space-3);
            color: var(--text-muted);
            line-height: 1.7;
        }
        
        .dark-mode .modal p {
            color: var(--text-muted-dark);
        }
        
        .donate-buttons {
            display: flex;
            justify-content: center;
            margin-top: var(--space-5);
            flex-wrap: wrap;
            gap: var(--space-3);
        }
        
        .donate-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: var(--space-2);
            padding: var(--space-3) var(--space-4);
            background: var(--gradient-secondary);
            color: white;
            border-radius: var(--radius-full);
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
        }
        
        .donate-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
            color: white;
        }
        
        /* أزرار خاصة */
        .send-money-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: var(--space-3) var(--space-5);
            background: var(--gradient-primary);
            color: white;
            border: none;
            border-radius: var(--radius-full);
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
            margin: var(--space-3) 0;
        }
        
        .send-money-button:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }
        
        .send-money-button2 {
            display: inline-block;
            padding: var(--space-3) var(--space-5);
            margin: var(--space-2);
            background: var(--gradient-secondary);
            color: white;
            border: none;
            border-radius: var(--radius-full);
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
        }
        
        .send-money-button2:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }


        .lang-flag {
            height: auto;
            vertical-align: middle; /* محاذاة العلم مع النص */
        }

        /* تصميم الزر */
        .lang-toggle-btn {
            background-color: #4CAF50; /* لون الخلفية */
            color: white; /* لون النص */
            font-size: 16px; /* حجم الخط */
            border: none; /* إزالة الحدود */
            border-radius: 5px; /* حواف دائرية */
            cursor: pointer; /* تغيير المؤشر عند التمرير */
            transition: background-color 0.3s ease, transform 0.2s ease; /* تأثيرات الانتقال */
            width: 200px; /* عرض ثابت للزر */
            text-align: left; /* محاذاة النص إلى اليسار */
        }

        /* تغيير لون الخلفية عند التمرير */
        .lang-toggle-btn:hover {
            background-color: #45a049;
        }

        /* تأثير عند الضغط على الزر */
        .lang-toggle-btn:active {
            transform: scale(0.95);
        }

        /* تصميم القائمة المنسدلة */
        .lang-dropdown {
            display: none; /* إخفاء القائمة بشكل افتراضي */
            position: absolute;
            background-color: #f9f9f9; /* لون خلفية القائمة */
            width: 60%; /* عرض القائمة */
            box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2); /* الظل */
            z-index: 1;
            border-radius: 5px;
            right: 50%; /* وضع القائمة في منتصف الشاشة */
            transform: translateX(50%); /* تحريك القائمة إلى اليمين بمقدار نصف عرضها */
        }
        
        /* تصميم العناصر داخل القائمة */
        .lang-dropdown a {
            color: black; /* لون النص */
            padding: 12px 16px; /* الحشو */
            text-decoration: none; /* إزالة التسطير */
            display: block; /* عرض العناصر بشكل كتلة */
        }

        /* تغيير لون النص عند التمرير */
        .lang-dropdown a:hover {
            background-color: #ddd;
        }

        /* إظهار القائمة عند النقر على الزر */
        .lang-toggle-dropdown:hover .lang-dropdown {
            display: block;
        }


        
        
        /* الروابط */
        .back-link {
            margin-top: var(--space-6);
            text-align: center;
        }
        
        .back-link a {
            display: inline-flex;
            align-items: center;
            gap: var(--space-2);
            color: var(--primary);
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .back-link a:hover {
            transform: translateX(5px);
        }
        
        /* تنسيقات إضافية */
        center {
            text-align: center;
        }
        
        /* الاستجابة */
        @media (max-width: 992px) {
            .app-detail-content {
                flex-direction: column;
            }
            
            .app-info, .app-preview {
                width: 100%;
            }
            
            .phone-frame {
                max-width: 300px;
            }
        }
        
        @media (max-width: 768px) {
            html {
                font-size: 14px;
            }
            
            .header-content {
                height: 70px;
            }
            
            .main-menu {
                display: none;
            }
            
            #menuToggle {
                display: flex;
            }
            
            .social-icons {
                display: none;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-form button {
                width: 100%;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .app-info h2 {
                font-size: 2rem;
            }
            
            .download-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .phone-frame {
                max-width: 250px;
            }
            
            .modal-content {
                width: 90%;
                padding: var(--space-4);
            }
        }

    
