/* Reset & Base Styles *//* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #0f0f23 !important;
    color: white;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section - بدون features */
.hero {
    padding: 40px 20px;
    background: linear-gradient(135deg, #1a1a3a, #0f0f23);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image {
    width: 100%;
    max-width: 350px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 3px solid #00ffff;
    box-shadow: 0 5px 20px rgba(0,255,255,0.3);
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: bold;
}

h1 span {
    color: #00ffff;
    text-shadow: 0 0 15px #00ffff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.5;
}

/* تم حذف قسم features بالكامل */

/* Buttons Container - للزر الأول فقط */
.buttons-container {
    display: flex;
    justify-content: center;
    margin: 30px 0 20px 0;
    width: 100%;
}

.cta-button.primary {
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    box-shadow: 0 6px 20px rgba(255,0,255,0.4);
    margin: 0 auto;
}

/* حاوية الزر الثاني - تحت الصور الثلاثة */
.secondary-button-container {
    display: flex;
    justify-content: center;
    margin: 40px 0 25px 0;
    width: 100%;
}

.cta-button.secondary {
    background: linear-gradient(45deg, #ff9900, #ffcc00);
    box-shadow: 0 6px 20px rgba(255,153,0,0.4);
    margin: 0 auto;
}

.cta-button {
    color: white;
    border: none;
    padding: 20px 45px;
    font-size: 1.3rem;
    border-radius: 35px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 350px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    display: block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,0,255,0.6);
}

.cta-button.secondary:hover {
    box-shadow: 0 8px 25px rgba(255,153,0,0.6);
}

.note {
    color: #ffcc00;
    font-weight: bold;
    margin-top: 20px;
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Previews Section */
.previews {
    padding: 50px 20px 30px 20px;
    background: #1a1a2e;
}

.previews h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #00ffff;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.preview-item {
    transition: transform 0.3s ease;
    padding: 15px;
}

.preview-item:hover {
    transform: translateY(-5px);
}

.preview-item img {
    width: 100%;
    max-width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 2px solid #00ffff;
    box-shadow: 0 4px 12px rgba(0,255,255,0.2);
}

.preview-item h3 {
    font-size: 1.1rem;
    margin-top: 10px;
    color: #00ffff;
}

/* Steps Section */
.steps {
    padding: 50px 20px;
    background: #0f0f23;
}

.steps h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #00ffff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.step {
    background: rgba(255,255,255,0.1);
    padding: 20px 15px;
    border-radius: 12px;
    font-size: 1rem;
    border: 1px solid rgba(0,255,255,0.3);
}

/* Loading & Success Sections */
.loading-section {
    padding: 30px;
    background: rgba(0,255,255,0.1);
    border-radius: 15px;
    margin: 25px 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #00ffff;
}

.spinner {
    border: 4px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top: 4px solid #00ffff;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.success-section {
    padding: 30px;
    background: rgba(0,255,0,0.1);
    border: 2px solid #00ff00;
    border-radius: 15px;
    margin: 25px 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.download-button {
    display: inline-block;
    background: #00ff00;
    color: #000;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin: 15px 0;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.download-button:hover {
    background: #00cc00;
    transform: translateY(-2px);
}

.small-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 30px 15px;
        min-height: auto;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .buttons-container {
        margin: 25px 0 15px 0;
    }
    
    .secondary-button-container {
        margin: 30px 0 20px 0;
    }
    
    .preview-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .preview-item img {
        max-width: 150px;
        height: 150px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        padding: 18px 35px;
        font-size: 1.2rem;
        max-width: 300px;
    }
    
    .note {
        font-size: 1rem;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 25px 10px;
    }
    
    .main-image {
        max-width: 280px;
    }
    
    h1 {
        font-size: 1.6rem;
    }
    
    .preview-item img {
        max-width: 140px;
        height: 140px;
    }
    
    .cta-button {
        padding: 16px 30px;
        font-size: 1.1rem;
        max-width: 280px;
    }
    
    .previews h2,
    .steps h2 {
        font-size: 1.5rem;
    }
}
