        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        html {
            overflow-x: hidden;
            width: 100%;
        }
        
        body {
            font-family: 'Cairo', sans-serif;
            min-height: 100vh;
            background: #0a0015;
            position: relative;
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
        }
        
        /* Animated Gradient Background */
        .bg-animated {
            position: fixed;
            inset: 0;
            background: linear-gradient(-45deg, #1a0a2e, #3d1a5c, #7b3fbb, #2d1b4e, #4a1f7a);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
            z-index: 0;
        }
        
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        /* Floating Orbs */
        .orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.5;
            animation: float 8s ease-in-out infinite;
            pointer-events: none;
            z-index: 0;
        }
        
        .orb-1 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,127,80,0.6) 0%, transparent 70%);
            top: -150px;
            right: -100px;
            animation-delay: 0s;
        }
        
        .orb-2 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(123,63,187,0.8) 0%, transparent 70%);
            bottom: -100px;
            left: -100px;
            animation-delay: -4s;
        }
        
        .orb-3 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(155,95,219,0.6) 0%, transparent 70%);
            top: 50%;
            left: 30%;
            animation-delay: -2s;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(30px, -30px) scale(1.05); }
            50% { transform: translate(-20px, 20px) scale(0.95); }
            75% { transform: translate(20px, 10px) scale(1.02); }
        }
        
        /* Main Container */
        .main-container {
            position: relative;
            z-index: 1;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
        }
        
        .content-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 80px;
            max-width: 1400px;
            width: 100%;
        }
        
        /* Left Content */
        .content-side {
            flex: 1;
            max-width: 550px;
            animation: slideInRight 0.4s ease-out;
        }
        
        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        .logo-row {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 24px;
        }
        
        .logo {
            width: 80px;
            height: 80px;
            border-radius: 22px;
            box-shadow: 0 20px 60px rgba(123,63,187,0.4);
            background: #fff;
            padding: 8px;
            animation: pulse 3s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { box-shadow: 0 20px 60px rgba(123,63,187,0.4); }
            50% { box-shadow: 0 25px 80px rgba(255,127,80,0.5); }
        }
        
        .app-name {
            font-size: 64px;
            font-weight: 800;
            color: #fff;
            text-shadow: 0 4px 30px rgba(255,127,80,0.3);
            letter-spacing: -1px;
        }
        
        .tagline {
            font-size: 22px;
            color: rgba(255,255,255,0.9);
            margin-bottom: 32px;
            font-weight: 500;
            line-height: 1.7;
        }
        
        .stats-row {
            display: flex;
            gap: 40px;
            margin-bottom: 36px;
        }
        
        .stat {
            text-align: center;
            animation: fadeInUp 0.4s ease-out backwards;
        }
        
        .stat:nth-child(1) { animation-delay: 0.1s; }
        .stat:nth-child(2) { animation-delay: 0.15s; }
        .stat:nth-child(3) { animation-delay: 0.2s; }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .stat-number {
            font-size: 36px;
            font-weight: 800;
            background: linear-gradient(135deg, #fff 0%, #FF7F50 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .stat-label {
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            font-weight: 500;
        }
        
        .download-buttons {
            display: flex;
            gap: 16px;
            margin-bottom: 32px;
        }
        
        .store-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 14px 28px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.2);
            color: #fff;
            text-decoration: none;
            border-radius: 16px;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            animation: fadeInUp 0.4s ease-out backwards;
        }
        
        .store-btn:nth-child(1) { animation-delay: 0.2s; }
        .store-btn:nth-child(2) { animation-delay: 0.3s; }
        
        .store-btn:hover {
            background: rgba(255,127,80,0.3);
            border-color: rgba(255,127,80,0.5);
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 20px 40px rgba(255,127,80,0.3);
        }
        
        .store-btn svg { width: 28px; height: 28px; }
        .store-info { text-align: right; }
        .store-label { font-size: 11px; opacity: 0.7; }
        .store-name { font-size: 16px; font-weight: 700; }
        
        .social-row {
            display: flex;
            gap: 12px;
            animation: fadeInUp 0.4s ease-out backwards;
            animation-delay: 0.3s;
        }
        
        .social-link {
            width: 44px;
            height: 44px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: #FF7F50;
            border-color: #FF7F50;
            transform: translateY(-3px) rotate(5deg);
        }
        
        .social-link svg {
            width: 20px;
            height: 20px;
            color: #fff;
        }
        
        /* Phone 3D Section */
        .phone-section {
            flex: 1;
            display: flex;
            justify-content: center;
            perspective: 1000px;
        }
        
        .phone-3d-container {
            position: relative;
            transform-style: preserve-3d;
            animation: phoneFloat 6s ease-in-out infinite, phoneEntry 1.2s ease-out;
        }
        
        @keyframes phoneEntry {
            from { opacity: 0; transform: translateY(100px) rotateY(-30deg); }
            to { opacity: 1; transform: translateY(0) rotateY(-5deg); }
        }
        
        @keyframes phoneFloat {
            0%, 100% { transform: translateY(0) rotateY(-5deg) rotateX(2deg); }
            50% { transform: translateY(-20px) rotateY(5deg) rotateX(-2deg); }
        }
        
        .phone-mockup {
            width: 300px;
            height: 620px;
            background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
            border-radius: 50px;
            padding: 12px;
            box-shadow: 
                0 50px 100px rgba(0,0,0,0.5),
                0 0 0 2px rgba(255,255,255,0.1),
                inset 0 0 0 1px rgba(255,255,255,0.05);
            position: relative;
        }
        
        .phone-mockup::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 30px;
            background: #000;
            border-radius: 20px;
            z-index: 10;
        }
        
        .phone-screen {
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, #f5f5f7 0%, #fff 100%);
            border-radius: 42px;
            overflow: hidden;
            position: relative;
        }
        
        .screen-header {
            background: linear-gradient(135deg, #7B3FBB 0%, #9B5FDB 50%, #FF7F50 100%);
            padding: 55px 24px 30px;
            text-align: center;
        }
        
        .screen-header img {
            width: 55px;
            height: 55px;
            border-radius: 14px;
            margin-bottom: 10px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }
        
        .screen-header h3 {
            color: #fff;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 4px;
        }
        
        .screen-header p {
            color: rgba(255,255,255,0.9);
            font-size: 12px;
        }
        
        .screen-search {
            margin: -18px 18px 18px;
            background: #fff;
            border-radius: 14px;
            padding: 14px 18px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .screen-search svg {
            width: 20px;
            height: 20px;
            color: #aaa;
        }
        
        .screen-search span {
            color: #aaa;
            font-size: 13px;
        }
        
        .screen-content {
            padding: 0 18px;
        }
        
        .section-title {
            font-size: 14px;
            font-weight: 700;
            color: #333;
            margin-bottom: 14px;
        }
        
        .property-cards {
            display: flex;
            gap: 12px;
        }
        
        .property-card {
            flex: 1;
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        }
        
        .card-image {
            height: 90px;
            background: linear-gradient(135deg, #e8e8e8 0%, #d5d5d5 100%);
            position: relative;
            overflow: hidden;
        }
        
        .card-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23999"><path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"/></svg>') center/35px no-repeat;
            opacity: 0.25;
        }
        
        .card-body {
            padding: 12px;
        }
        
        .card-title {
            font-size: 12px;
            font-weight: 600;
            color: #333;
            margin-bottom: 4px;
        }
        
        .card-price {
            font-size: 11px;
            color: #7B3FBB;
            font-weight: 700;
        }
        
        .screen-nav {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: #fff;
            padding: 14px 24px 28px;
            display: flex;
            justify-content: space-around;
            border-top: 1px solid #f0f0f0;
        }
        
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }
        
        .nav-item svg {
            width: 22px;
            height: 22px;
            color: #ccc;
        }
        
        .nav-item.active svg { color: #7B3FBB; }
        .nav-item span { font-size: 10px; color: #999; }
        .nav-item.active span { color: #7B3FBB; font-weight: 600; }
        
        /* Glow Effects around phone */
        .phone-glow {
            position: absolute;
            width: 350px;
            height: 700px;
            background: radial-gradient(ellipse, rgba(255,127,80,0.3) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: -1;
            animation: glowPulse 4s ease-in-out infinite;
        }
        
        @keyframes glowPulse {
            0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
            50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
        }
        
        /* Phone Villa Image */
        .phone-villa-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .phone-villa-image {
            max-width: 550px;
            width: 100%;
            height: auto;
            filter: drop-shadow(0 30px 60px rgba(0,0,0,0.3));
            animation: phoneVillaEntry 0.4s ease-out;
        }
        
        @keyframes phoneVillaEntry {
            0% {
                opacity: 0;
                transform: translateY(25px) scale(0.95);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        /* Footer */
        .footer-links {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 30px;
            z-index: 10;
            animation: fadeInUp 0.4s ease-out backwards;
            animation-delay: 0.3s;
            width: max-content;
            max-width: 90vw;
            justify-content: center;
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            font-size: 13px;
            transition: color 0.3s;
        }
        
        .footer-links a:hover { color: #FF7F50; }
        
        /* Responsive - Tablet */
        @media (max-width: 1100px) {
            .main-container {
                height: auto;
                min-height: 100vh;
                padding: 30px 20px 80px;
            }
            
            .content-wrapper {
                flex-direction: column-reverse;
                gap: 30px;
            }
            
            .phone-section {
                transform: scale(0.9);
            }
            
            .content-side {
                text-align: center;
                max-width: 100%;
            }
            
            .logo-row, .stats-row, .download-buttons, .social-row {
                justify-content: center;
            }
            
            .phone-villa-image {
                max-width: 380px;
            }
            
            .orb-1 { width: 300px; height: 300px; }
            .orb-2 { width: 250px; height: 250px; }
            .orb-3 { width: 200px; height: 200px; }
        }
        
        /* Responsive - Mobile */
        @media (max-width: 768px) {
            .main-container { 
                padding: 20px 15px 100px;
                min-height: auto;
            }
            
            .content-wrapper {
                gap: 25px;
            }
            
            .app-name { font-size: 36px; }
            .tagline { font-size: 15px; margin-bottom: 20px; line-height: 1.6; }
            .logo { width: 55px; height: 55px; border-radius: 16px; }
            .logo-row { gap: 14px; margin-bottom: 16px; }
            
            .stats-row { gap: 20px; flex-wrap: wrap; }
            .stat-number { font-size: 24px; }
            .stat-label { font-size: 12px; }
            
            .download-buttons { 
                flex-direction: column; 
                align-items: center;
                gap: 12px;
            }
            .store-btn { 
                width: 100%; 
                max-width: 280px; 
                justify-content: center;
                padding: 12px 20px;
            }
            .store-btn svg { width: 24px; height: 24px; }
            .store-name { font-size: 14px; }
            
            .social-row { gap: 10px; }
            .social-link { width: 40px; height: 40px; }
            .social-link svg { width: 18px; height: 18px; }
            
            .phone-villa-image {
                max-width: 280px;
            }
            
            .phone-glow {
                width: 280px;
                height: 560px;
            }
            
            .footer-links {
                position: relative;
                bottom: auto;
                left: auto;
                transform: none;
                margin-top: 30px;
                padding: 20px;
                gap: 20px;
                flex-wrap: wrap;
            }
            .footer-links a { font-size: 12px; }
        }
        
        /* Responsive - Small Mobile */
        @media (max-width: 480px) {
            .main-container { 
                padding: 15px 12px 80px;
            }
            
            .app-name { font-size: 28px; }
            .tagline { font-size: 14px; margin-bottom: 16px; }
            .logo { width: 48px; height: 48px; border-radius: 14px; }
            .logo-row { gap: 10px; margin-bottom: 12px; }
            
            .stats-row { 
                gap: 15px; 
                margin-bottom: 24px;
            }
            .stat-number { font-size: 20px; }
            .stat-label { font-size: 11px; }
            
            .store-btn { 
                max-width: 260px;
                padding: 10px 16px;
            }
            
            .phone-villa-image {
                max-width: 240px;
            }
            
            .phone-glow {
                width: 240px;
                height: 480px;
            }
            
            .about-section h3 { font-size: 1rem !important; }
            .about-section p { font-size: 0.85rem !important; }
        }
        
        /* Responsive - Very Small Mobile */
        @media (max-width: 360px) {
            .app-name { font-size: 24px; }
            .tagline { font-size: 13px; }
            .logo { width: 42px; height: 42px; }
            
            .stats-row { gap: 12px; }
            .stat-number { font-size: 18px; }
            
            .phone-villa-image {
                max-width: 200px;
            }
            
            .store-btn { 
                max-width: 240px;
                padding: 10px 14px;
            }
        }
        
        /* Fix for landscape mobile */
        @media (max-height: 500px) and (orientation: landscape) {
            .main-container {
                height: auto;
                padding: 20px;
            }
            
            .content-wrapper {
                flex-direction: row;
                gap: 30px;
            }
            
            .phone-villa-image {
                max-width: 200px;
            }
            
            .footer-links {
                position: relative;
            }
        }
