/* Download Page Specific Styles */

/* Loading Screen Override */
#loading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

#loading-progress .progress-bar {
    width: 220px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 18px;
}

#loading-progress .progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
    border-radius: 5px;
    animation: loading-progress 2s ease-in-out infinite;
}

#loading-progress .loading-text {
    color: #ffffff;
    font-size: 1.1em;
    margin-top: 10px;
    font-weight: 500;
    letter-spacing: 1px;
}

@keyframes loading-progress {
    0% {
        width: 10%;
    }

    50% {
        width: 80%;
    }

    100% {
        width: 95%;
    }
}

/* Offer Banner */
.offer-banner {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #facc15, #f59e0b);
    color: #0a0a0a;
    padding: 8px 16px;
    z-index: 999;
    animation: slideDown 0.5s ease-out;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.offer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 600;
    font-size: 13px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.4;
}

.offer-icon {
    font-size: 16px;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

.offer-text {
    flex: 1;
    min-width: 0;
}

.offer-timer {
    background: rgba(0, 0, 0, 0.2);
    padding: 3px 8px;
    border-radius: 12px;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
    white-space: nowrap;
}

.offer-close {
    background: rgba(0, 0, 0, 0.2);
    border: none;
    color: #0a0a0a;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-right: 8px;
}

.offer-close:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: scale(1.1);
}

/* Download Hero Section */
.download-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 80px;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, rgba(0, 0, 0, 0.9) 70%);
}

.download-container {
    max-width: 1200px;
    width: 100%;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* App Showcase */
.app-showcase {
    text-align: center;
}

.app-icon-large {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 32px;
    border-radius: 40px;
    overflow: hidden;
    background: rgba(139, 92, 246, 0.1);
    border: 3px solid rgba(139, 92, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-icon-large.featured {
    border-color: #facc15;
    box-shadow: 0 0 40px rgba(250, 204, 21, 0.3);
    animation: glow 3s ease-in-out infinite alternate;
}

.app-icon-large .app-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 37px;
}

.icon-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
    pointer-events: none;
}

.new-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ffffff;
    color: #dc2626;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    animation: bounce 2s infinite;
    border: 3px solid #dc2626;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.6);
    text-shadow: none;
    letter-spacing: 0.5px;
}

/* App Info */
.app-info-main {
    margin-bottom: 40px;
}

.app-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.exclusive-tag {
    display: inline-block;
    color: #facc15;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 800;
    margin-right: 12px;
    vertical-align: middle;
    animation: pulse 2s infinite;
    border: 3px solid #facc15;
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.5);
    text-shadow: 0 0 8px  rgba(250, 204, 21, 0.5);
    letter-spacing: 0.5px;
}

.app-version-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.2);
    color: #a78bfa;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.app-tagline {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    line-height: 1.5;
}

/* App Stats */
.app-stats {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-bottom: 32px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #8b5cf6;
    margin-bottom: 4px;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Limited Features */
.limited-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
    padding: 24px;
    background: rgba(250, 204, 21, 0.05);
    border: 1px solid rgba(250, 204, 21, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(250, 204, 21, 0.1);
    border: 1px solid rgba(250, 204, 21, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    direction: rtl;
    text-align: right;
    justify-content: space-between;
}

.feature-highlight:hover {
    background: rgba(250, 204, 21, 0.15);
    border-color: rgba(250, 204, 21, 0.5);
    transform: translateX(-4px);
    box-shadow: 0 4px 16px rgba(250, 204, 21, 0.2);
}

.feature-highlight::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #facc15, #f59e0b);
    border-radius: 0 2px 2px 0;
}

.feature-highlight .feature-icon {
    font-size: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(250, 204, 21, 0.3);
    border-radius: 8px;
    flex-shrink: 0;
    margin-left: 8px;
    border: 1px solid rgba(250, 204, 21, 0.4);
    order: 2;
}

.feature-highlight span:not(.feature-icon) {
    flex: 1;
    order: 1;
}
}

/* Download Actions */
.download-actions {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.primary-download {
    position: relative;
}

.btn-download-primary {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #8b5cf6;
    color: #ffffff;
    padding: 20px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-download-primary.featured {
    background: linear-gradient(135deg, #facc15, #f59e0b);
    color: #0a0a0a;
    box-shadow: 0 8px 32px rgba(250, 204, 21, 0.4);
    animation: glow 3s ease-in-out infinite alternate;
}

.btn-download-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.4);
}

.btn-download-primary.featured:hover {
    box-shadow: 0 12px 40px rgba(250, 204, 21, 0.6);
}

.btn-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.2);
    animation: pulse-effect 2s infinite;
    pointer-events: none;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-text {
    font-size: 18px;
    font-weight: 600;
}

.btn-subtext {
    font-size: 14px;
    opacity: 0.8;
    font-weight: 400;
}

/* Download Warning */
.download-warning {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 12px;
    padding: 16px;
}

.warning-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #fbbf24;
    font-size: 14px;
    line-height: 1.5;
}

.warning-icon {
    font-size: 18px;
    flex-shrink: 0;
}

/* Download Info */
.download-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.info-icon {
    font-size: 16px;
    width: 24px;
    text-align: center;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card.featured {
    border-color: #facc15;
    background: rgba(250, 204, 21, 0.05);
    box-shadow: 0 8px 32px rgba(250, 204, 21, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 16px 48px rgba(139, 92, 246, 0.2);
}

.feature-card.featured:hover {
    border-color: #facc15;
    box-shadow: 0 16px 48px rgba(250, 204, 21, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.feature-card.featured .feature-icon {
    background: rgba(250, 204, 21, 0.2);
    color: #facc15;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: rgba(139, 92, 246, 0.2);
}

.feature-card.featured:hover .feature-icon {
    background: rgba(250, 204, 21, 0.3);
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 16px;
}

.feature-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Different badge colors for better visibility */
.feature-badge:contains("حصري") {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #facc15;
    border-color: #facc15;
    box-shadow: 0 0 8px rgba(250, 204, 21, 0.3);
}

.feature-badge:contains("مجاني") {
    background: linear-gradient(135deg, #059669, #047857);
    color: #ffffff;
    border-color: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.3);
}

.feature-badge:contains("فوري") {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #ffffff;
    border-color: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.3);
}

/* Default badge style - this should be last to avoid conflicts */
.feature-badge:not([class*="specific"]) {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: #ffffff;
    border-color: #8b5cf6;
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.3);
}

/* Specific badge styles based on content */
.feature-card:has(.feature-badge:contains("حصري")) .feature-badge,
.feature-badge[data-type="exclusive"] {
    background: linear-gradient(135deg, #1a1a2e, #16213e) !important;
    color: #facc15 !important;
    border-color: #facc15 !important;
    box-shadow: 0 0 8px rgba(250, 204, 21, 0.3) !important;
}

.feature-card:has(.feature-badge:contains("مجاني")) .feature-badge,
.feature-badge[data-type="free"] {
    background: linear-gradient(135deg, #059669, #047857) !important;
    color: #ffffff !important;
    border-color: #10b981 !important;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.3) !important;
}

.feature-card:has(.feature-badge:contains("فوري")) .feature-badge,
.feature-badge[data-type="instant"] {
    background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
    color: #ffffff !important;
    border-color: #ef4444 !important;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.3) !important;
}

/* App Showcase Section */
.app-showcase-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(0, 0, 0, 0.95));
    position: relative;
    overflow: hidden;
}

.app-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.showcase-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(250, 204, 21, 0.1);
    border: 1px solid rgba(250, 204, 21, 0.3);
    color: #facc15;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: pulse 2s infinite;
}

.badge-icon {
    font-size: 16px;
    animation: bounce 2s infinite;
}

.showcase-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.showcase-gallery {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.showcase-item-main,
.showcase-item-secondary {
    position: relative;
}

.showcase-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
    border: 3px solid rgba(139, 92, 246, 0.3);
    transition: all 0.5s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.showcase-image-container:hover {
    border-color: rgba(139, 92, 246, 0.6);
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(139, 92, 246, 0.3);
}

.showcase-image-container img {
    width: 100%;
    height: auto;
    min-height: 400px;
    max-height: 600px;
    object-fit: contain;
    object-position: center;
    transition: all 0.5s ease;
    filter: brightness(0.9);
}

.showcase-item-secondary .showcase-image-container img {
    height: auto;
    min-height: 350px;
    max-height: 500px;
}

.showcase-image-container:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4), transparent);
    padding: 32px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-image-container:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.overlay-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.feature-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(139, 92, 246, 0.2);
    color: #a78bfa;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.image-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-image-container:hover .image-glow {
    opacity: 1;
}

.showcase-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(139, 92, 246, 0.2);
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #8b5cf6;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Animations */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .showcase-gallery {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .showcase-item-secondary .showcase-image-container img {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .app-showcase-section {
        padding: 80px 0;
    }

    .showcase-header {
        margin-bottom: 60px;
    }

    .showcase-header h2 {
        font-size: 32px;
    }

    .showcase-header p {
        font-size: 16px;
    }

    .showcase-image-container img {
        height: auto;
        min-height: 300px;
        max-height: 450px;
    }

    .showcase-item-secondary .showcase-image-container img {
        height: auto;
        min-height: 280px;
        max-height: 400px;
    }

    .overlay-content {
        padding: 24px;
    }

    .overlay-content h3 {
        font-size: 20px;
    }

    .overlay-content p {
        font-size: 14px;
    }

    .stat-card {
        padding: 24px;
    }

    .stat-number {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .showcase-gallery {
        gap: 24px;
        margin-bottom: 60px;
    }

    .showcase-image-container {
        border-radius: 16px;
        border-width: 2px;
    }

    .showcase-image-container img {
        height: auto;
        min-height: 250px;
        max-height: 350px;
    }

    .showcase-item-secondary .showcase-image-container img {
        height: auto;
        min-height: 230px;
        max-height: 320px;
    }

    .image-overlay {
        padding: 20px;
    }

    .overlay-content h3 {
        font-size: 18px;
    }

    .overlay-content p {
        font-size: 13px;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-icon {
        font-size: 24px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 14px;
    }
}

/* Install Guide */
.install-guide {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.install-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.1);
}

.step-number {
    width: 48px;
    height: 48px;
    background: #8b5cf6;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.01);
}

.faq-container {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(139, 92, 246, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.faq-toggle {
    font-size: 24px;
    color: #8b5cf6;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Download CTA */
.download-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(0, 0, 0, 0.9));
    text-align: center;
}

.download-cta.featured {
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.1), rgba(0, 0, 0, 0.9));
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: pulse 2s infinite;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.5;
}

.btn-cta {
    display: inline-block;
    background: #8b5cf6;
    color: #ffffff;
    padding: 20px 40px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-cta.featured {
    background: linear-gradient(135deg, #facc15, #f59e0b);
    color: #0a0a0a;
    box-shadow: 0 8px 32px rgba(250, 204, 21, 0.4);
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.4);
}

.btn-cta.featured:hover {
    box-shadow: 0 12px 40px rgba(250, 204, 21, 0.6);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

.cta-timer {
    margin-top: 24px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-timer span:last-child {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: #facc15;
}

/* Animations */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(139, 92, 246, 0.6);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse-effect {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    50% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .download-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .app-stats {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
    }

    .install-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        z-index: 1000;
    }

    .offer-banner {
        position: fixed;
        top: 60px;
        left: 16px;
        right: 16px;
        padding: 8px 12px;
        margin-top: 0;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        animation: slideDown 0.5s ease-out;
        z-index: 998;
    }

    .offer-content {
        flex-direction: column;
        gap: 8px;
        font-size: 12px;
        padding: 0 8px;
    }

    .offer-text {
        font-size: 11px;
        line-height: 1.3;
    }

    .offer-timer {
        font-size: 11px;
        padding: 2px 6px;
    }

    .download-hero {
        padding: 140px 16px 60px;
    }

    /* Additional padding when offer banner is present */
    body:has(.offer-banner) .download-hero {
        padding-top: 160px;
    }

    .app-title {
        font-size: 32px;
    }

    .exclusive-tag {
        font-size: 12px;
        padding: 3px 8px;
        margin-right: 8px;
    }

    .new-badge {
        font-size: 10px;
        padding: 4px 8px;
        top: -6px;
        right: -6px;
    }

    .feature-badge {
        font-size: 10px;
        padding: 3px 8px;
        top: 12px;
        right: 12px;
    }

    .app-stats {
        flex-direction: column;
        gap: 16px;
    }

    .download-actions {
        gap: 28px;
    }

    .limited-features {
        padding: 16px;
        gap: 12px;
        margin-top: 24px;
    }

    .feature-highlight {
        padding: 12px 16px;
        gap: 10px;
        font-size: 13px;
        justify-content: flex-start;
    }

    .feature-highlight .feature-icon {
        width: 32px;
        height: 32px;
        font-size: 18px;
        margin-left: 6px;
        order: 2;
    }

    .feature-highlight span:not(.feature-icon) {
        order: 1;
        flex: 1;
    }

    font-size: 14px;
    gap: 12px;
}

.feature-highlight .feature-icon {
    font-size: 20px;
    width: 32px;
    height: 32px;
}

.btn-download-primary {
    padding: 16px 24px;
    font-size: 16px;
}

.features-grid {
    grid-template-columns: 1fr;
}

.feature-card {
    padding: 24px;
}

.step-item {
    flex-direction: column;
    text-align: center;
}

.cta-content h2 {
    font-size: 28px;
}

.cta-content p {
    font-size: 16px;
}
}

@media (max-width: 480px) {
    .offer-banner {
        padding: 6px 8px;
        position: relative;
        top: 0;
        margin-top: 64px;
    }

    .offer-content {
        gap: 4px;
        font-size: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .offer-text {
        font-size: 9px;
        line-height: 1.2;
        text-align: center;
        flex-basis: 100%;
        margin-bottom: 4px;
    }

    .offer-timer {
        font-size: 9px;
        padding: 1px 3px;
    }

    .offer-icon {
        font-size: 12px;
    }

    .exclusive-tag {
        font-size: 11px;
        padding: 2px 6px;
        margin-right: 6px;
    }

    .new-badge {
        font-size: 9px;
        padding: 3px 6px;
        top: -4px;
        right: -4px;
    }

    .feature-badge {
        font-size: 9px;
        padding: 2px 6px;
        top: 8px;
        right: 8px;
    }

    .cta-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .offer-close {
        width: 20px;
        height: 20px;
        font-size: 14px;
        position: absolute;
        top: 4px;
        left: 4px;
    }

    .app-icon-large {
        width: 150px;
        height: 150px;
    }

    .download-actions {
        gap: 16px;
    }

    .btn-download-primary {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .limited-features {
        padding: 12px;
        gap: 8px;
        margin-top: 16px;
    }

    .feature-highlight {
        padding: 10px 12px;
        font-size: 12px;
        gap: 8px;
        flex-direction: row;
        text-align: right;
        align-items: center;
        justify-content: flex-start;
    }

    .feature-highlight .feature-icon {
        font-size: 16px;
        width: 28px;
        height: 28px;
        margin-left: 4px;
        margin-bottom: 0;
        order: 2;
    }

    .feature-highlight span:not(.feature-icon) {
        order: 1;
        flex: 1;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .screenshot-item img {
        height: 450px;
    }

    .screenshots-slider {
        max-width: 100%;
        margin: 40px auto 0;
        padding: 0 16px;
    }

    .screenshots-container {
        border-radius: 16px;
    }

    .screenshot-overlay {
        padding: 20px;
    }

    .screenshot-overlay h3 {
        font-size: 18px;
    }

    .screenshot-overlay p {
        font-size: 14px;
    }

    .screenshots-controls {
        padding: 0 12px;
    }

    .screenshot-control {
        width: 40px;
        height: 40px;
    }

    .app-showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 60px;
        padding: 0 16px;
    }

    .showcase-item {
        padding: 24px;
    }

    .showcase-icon {
        width: 60px;
        height: 60px;
    }
}

/* Extra small screens - hide offer banner if too intrusive */
@media (max-width: 360px) {
    .offer-banner {
        display: none;
    }

    .download-hero {
        padding-top: 80px;
    }

    .screenshot-item img {
        height: 350px;
    }

    .screenshots-controls {
        display: none;
    }

    .screenshot-overlay {
        padding: 16px;
    }

    .screenshot-overlay h3 {
        font-size: 16px;
    }

    .screenshot-overlay p {
        font-size: 12px;
    }
}

/*
 Screenshots Section - Enhanced */
.screenshots-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(0, 0, 0, 0.95));
    position: relative;
    overflow: hidden;
}

.screenshots-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.screenshots-slider {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
    z-index: 2;
}

.screenshots-container {
    display: flex;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8);
    position: relative;
    background: #000;
    border: 3px solid rgba(139, 92, 246, 0.4);
    transition: all 0.5s ease;
}

.screenshots-container:hover {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 30px 100px rgba(139, 92, 246, 0.3);
}

.screenshot-item {
    min-width: 100%;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.screenshot-item:not(.active) {
    opacity: 0.7;
}

.screenshot-item.active {
    opacity: 1;
    animation: slideInFade 0.8s ease-out;
}

.screenshot-item img {
    width: 100%;
    height: 600px;
    object-fit: contain;
    object-position: center;
    display: block;
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
    transition: all 0.5s ease;
    border-radius: 0;
    opacity: 1;
}

.screenshot-item img[src*=".jpeg"],
.screenshot-item img[src*=".jpg"],
.screenshot-item img[src*=".png"] {
    object-fit: cover;
    object-position: center top;
}

.screenshot-item:hover img {
    transform: scale(1.03);
    filter: brightness(1.1);
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.3), transparent);
    padding: 32px;
    color: #ffffff;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
}

.screenshot-item:hover .screenshot-overlay {
    transform: translateY(0);
}

.screenshot-overlay h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #facc15;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.screenshot-overlay p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.screenshots-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.screenshot-nav-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(139, 92, 246, 0.4);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 1;
}

.screenshot-nav-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #8b5cf6;
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.screenshot-nav-btn:hover {
    border-color: #8b5cf6;
    transform: scale(1.2);
    background: rgba(139, 92, 246, 0.2);
}

.screenshot-nav-btn.active {
    background: #8b5cf6;
    border-color: #a78bfa;
    transform: scale(1.3);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.6);
    animation: navPulse 2s infinite;
}

.screenshot-nav-btn.active::before {
    width: 100%;
    height: 100%;
}

.screenshots-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
    transform: translateY(-50%);
}

.screenshot-control {
    width: 55px;
    height: 55px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    pointer-events: auto;
    backdrop-filter: blur(15px);
    opacity: 1;
}

.screenshot-control:hover {
    background: rgba(139, 92, 246, 0.9);
    border-color: #8b5cf6;
    transform: scale(1.15);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.5);
}

.screenshot-control:active {
    transform: scale(1.05);
}

/* App Showcase Grid */
.app-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 1;
}

.showcase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.15), transparent);
    transition: left 0.8s ease;
}

.showcase-item:hover::before {
    left: 100%;
}

.showcase-item:hover {
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(139, 92, 246, 0.25);
}

.showcase-icon {
    width: 80px;
    height: 80px;
    background: rgba(139, 92, 246, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #8b5cf6;
    transition: all 0.4s ease;
}

.showcase-item:hover .showcase-icon {
    background: rgba(139, 92, 246, 0.25);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.showcase-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.showcase-item:hover h3 {
    color: #a78bfa;
}

.showcase-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
}

/* Animations */
@keyframes slideInFade {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes navPulse {

    0%,
    100% {
        box-shadow: 0 0 25px rgba(139, 92, 246, 0.6);
    }

    50% {
        box-shadow: 0 0 35px rgba(139, 92, 246, 0.8);
    }
}

/* Screenshots Section Responsive */
@media (max-width: 768px) {
    .screenshots-section {
        padding: 80px 0;
    }

    .screenshots-slider {
        max-width: 100%;
        margin: 40px auto 0;
        padding: 0 16px;
    }

    .screenshots-container {
        border-radius: 16px;
        border-width: 2px;
    }

    .screenshot-item img {
        height: 450px;
    }

    .screenshot-overlay {
        padding: 20px;
    }

    .screenshot-overlay h3 {
        font-size: 18px;
    }

    .screenshot-overlay p {
        font-size: 14px;
    }

    .screenshots-controls {
        padding: 0 12px;
    }

    .screenshot-control {
        width: 45px;
        height: 45px;
    }

    .app-showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 60px;
        padding: 0 16px;
    }

    .showcase-item {
        padding: 24px;
    }

    .showcase-icon {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .screenshot-item img {
        height: 400px;
    }

    .screenshot-control {
        width: 40px;
        height: 40px;
    }

    .screenshot-nav-btn {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 360px) {
    .screenshot-item img {
        height: 350px;
    }

    .screenshots-controls {
        display: none;
    }

    .screenshot-overlay {
        padding: 16px;
    }

    .screenshot-overlay h3 {
        font-size: 16px;
    }

    .screenshot-overlay p {
        font-size: 12px;
    }
}

/* زر التحميل المباشر تحت الشعار */
.instant-download-section {
    margin: 30px 0 40px 0;
    text-align: center;
}

.btn-instant-download {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 20px 32px;
    background: linear-gradient(135deg, #facc15, #f59e0b);
    color: #000;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(250, 204, 21, 0.4);
    animation: glow-instant 3s ease-in-out infinite alternate;
    margin-bottom: 16px;
}

.btn-instant-download:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(250, 204, 21, 0.6);
}

.btn-instant-download .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.btn-instant-download .btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
}

.btn-instant-download .btn-text {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2px;
}

.btn-instant-download .btn-subtext {
    font-size: 14px;
    opacity: 0.8;
    font-weight: 500;
}

.btn-pulse-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    animation: pulse-instant 2s infinite;
    pointer-events: none;
}

.download-quick-info {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.quick-info-item .info-icon {
    font-size: 16px;
}

@keyframes glow-instant {
    0% {
        box-shadow: 0 8px 32px rgba(250, 204, 21, 0.4);
    }
    100% {
        box-shadow: 0 8px 32px rgba(250, 204, 21, 0.7);
    }
}

@keyframes pulse-instant {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

/* تحسينات للموبايل */
@media (max-width: 768px) {
    .instant-download-section {
        margin: 20px 0 30px 0;
    }
    
    .btn-instant-download {
        padding: 16px 24px;
        font-size: 16px;
        gap: 12px;
    }
    
    .btn-instant-download .btn-icon {
        width: 40px;
        height: 40px;
    }
    
    .btn-instant-download .btn-text {
        font-size: 16px;
    }
    
    .download-quick-info {
        gap: 16px;
    }
    
    .quick-info-item {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .btn-instant-download {
        width: 100%;
        max-width: 320px;
    }
    
    .download-quick-info {
        flex-direction: column;
        gap: 8px;
    }
}/
* زر التحميل النهائي في نهاية الصفحة */
.download-cta-final {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download-cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.download-cta-final .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-header {
    margin-bottom: 40px;
}

.cta-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0;
}

.btn-cta-final {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #facc15, #f59e0b);
    color: #000;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(250, 204, 21, 0.4);
    animation: glow-final 3s ease-in-out infinite alternate;
    margin-bottom: 32px;
    min-width: 280px;
}

.btn-cta-final:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(250, 204, 21, 0.6);
}

.btn-cta-final .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    flex-shrink: 0;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    animation: pulse-final 2s infinite;
    pointer-events: none;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.feature-item .feature-icon {
    font-size: 1.2rem;
}

@keyframes glow-final {
    0% {
        box-shadow: 0 8px 32px rgba(250, 204, 21, 0.4);
    }
    100% {
        box-shadow: 0 8px 32px rgba(250, 204, 21, 0.7);
    }
}

@keyframes pulse-final {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

/* تحسينات للموبايل */
@media (max-width: 768px) {
    .download-cta-final {
        padding: 60px 24px;
    }
    
    .cta-header h2 {
        font-size: 2rem;
    }
    
    .cta-header p {
        font-size: 1.1rem;
    }
    
    .btn-cta-final {
        padding: 18px 32px;
        font-size: 1.1rem;
        min-width: 260px;
    }
    
    .cta-features {
        gap: 20px;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .download-cta-final {
        padding: 50px 20px;
    }
    
    .cta-header h2 {
        font-size: 1.8rem;
    }
    
    .btn-cta-final {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 12px;
    }
}/
* Download CTA Section - التصميم الأصلي */
.download-cta {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(0, 0, 0, 0.95) 100%);
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download-cta.featured {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.download-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.download-cta .container {
    position: relative;
    z-index: 2;
}

.download-cta .cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.download-cta .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1.2;
}

.download-cta .cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 40px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: #ffffff;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
    min-width: 280px;
}

.btn-cta.featured {
    background: linear-gradient(135deg, #facc15, #f59e0b);
    color: #000000;
    box-shadow: 0 8px 32px rgba(250, 204, 21, 0.4);
    animation: glow-cta 3s ease-in-out infinite alternate;
}

.btn-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.6);
}

.btn-cta.featured:hover {
    box-shadow: 0 12px 40px rgba(250, 204, 21, 0.6);
}

.download-cta .btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    animation: pulse-cta 2s infinite;
    pointer-events: none;
}

@keyframes glow-cta {
    0% {
        box-shadow: 0 8px 32px rgba(250, 204, 21, 0.4);
    }
    100% {
        box-shadow: 0 8px 32px rgba(250, 204, 21, 0.7);
    }
}

@keyframes pulse-cta {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

/* تحسينات للموبايل */
@media (max-width: 768px) {
    .download-cta {
        padding: 60px 24px;
    }
    
    .download-cta .cta-content h2 {
        font-size: 2rem;
    }
    
    .download-cta .cta-content p {
        font-size: 1.1rem;
    }
    
    .btn-cta {
        padding: 18px 32px;
        font-size: 1.1rem;
        min-width: 260px;
    }
}

@media (max-width: 480px) {
    .download-cta {
        padding: 50px 20px;
    }
    
    .download-cta .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 300px;
    }
}