* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #581c87 50%, #0f172a 100%);
    color: white;
    direction: rtl;
    overflow-x: hidden;
    font-weight: 400;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    background: linear-gradient(45deg, #7c3aed, #2563eb);
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #a855f7, #60a5fa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.125rem;
}

.logo-text p {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.desktop-menu {
    display: none;
    gap: 2.5rem;
}

.desktop-menu .nav-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
}

.desktop-menu .nav-link:hover,
.desktop-menu .nav-link.active {
    color: #a855f7;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 1001;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(147, 51, 234, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
    margin-bottom: 1rem;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-logo .logo-icon {
    background: linear-gradient(45deg, #7c3aed, #2563eb);
    padding: 0.4rem;
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-logo span {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(45deg, #a855f7, #60a5fa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mobile-menu-content {
    padding: 0 1rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #d1d5db;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, rgba(147, 51, 234, 0.2), rgba(59, 130, 246, 0.2));
    transition: width 0.3s ease;
    z-index: -1;
}

.mobile-nav-link:hover::before {
    width: 100%;
}

.mobile-nav-link:hover {
    color: white;
    transform: translateX(-5px);
}

.mobile-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover .mobile-nav-icon {
    background: rgba(147, 51, 234, 0.3);
    transform: scale(1.1);
}

/* Mobile Social Section */
.mobile-social-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(147, 51, 234, 0.2);
}

.mobile-social-title {
    color: #9ca3af;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.mobile-social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.mobile-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.mobile-social-icon.whatsapp {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
}

.mobile-social-icon.instagram {
    background: linear-gradient(45deg, #e4405f, #833ab4, #f77737);
    color: white;
}

.mobile-social-icon.twitter {
    background: linear-gradient(45deg, #1da1f2, #0e71c8);
    color: white;
}

.mobile-social-icon:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px; /* Add padding to account for fixed navbar */
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.5), rgba(59, 130, 246, 0.5), rgba(15, 23, 42, 0.5));
}

.floating-orb {
    position: absolute;
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 4s ease-in-out infinite;
}

.orb-1 {
    top: 25%;
    left: 15%;
    background: rgba(147, 51, 234, 0.2);
}

.orb-2 {
    bottom: 25%;
    right: 15%;
    background: rgba(59, 130, 246, 0.2);
    animation-delay: 1s;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
    max-width: 90%;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #a855f7, #ec4899, #60a5fa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 3s ease-in-out infinite;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    font-weight: 600;
}

.hero-description {
    font-size: 1rem;
    color: #9ca3af;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
}

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(45deg, #7c3aed, #2563eb);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
    width: 100%;
    max-width: 280px;
    font-family: inherit;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #6d28d9, #1d4ed8);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(147, 51, 234, 0.25);
}

.btn-secondary {
    border: 2px solid #7c3aed;
    background: transparent;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 280px;
    font-family: inherit;
}

.btn-secondary:hover {
    background: rgba(147, 51, 234, 0.1);
    transform: scale(1.05);
}

.progress-card {
    background: linear-gradient(45deg, rgba(147, 51, 234, 0.2), rgba(59, 130, 246, 0.2));
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(147, 51, 234, 0.3);
    max-width: 100%;
    margin: 0 auto;
}

.progress-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #a855f7;
}

.progress-card p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.progress-bar {
    width: 100%;
    background: #374151;
    border-radius: 0.75rem;
    height: 0.75rem;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(45deg, #7c3aed, #2563eb);
    height: 100%;
    width: 85%;
    border-radius: 0.75rem;
    animation: pulse 2s ease-in-out infinite;
}

.progress-text {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 0.75rem;
    font-weight: 600;
}

/* Services Section */
.services {
    padding: 3rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(45deg, rgba(147, 51, 234, 0.2), rgba(59, 130, 246, 0.2));
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
}

.section-badge span {
    color: #a855f7;
    font-weight: 600;
    font-size: 0.875rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #a855f7, #60a5fa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.section-header p {
    font-size: 1rem;
    color: #9ca3af;
    max-width: 32rem;
    margin: 0 auto;
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.5));
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(71, 85, 105, 0.5);
    transition: all 0.5s ease;
}

.service-card:hover {
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.5), rgba(30, 41, 59, 0.5));
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.2);
    border-color: rgba(147, 51, 234, 0.3);
}

.service-icon {
    position: relative;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.streaming-icon {
    background: linear-gradient(135deg, #dc2626, #ec4899);
}

.gaming-icon {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.cards-icon {
    background: linear-gradient(135deg, #059669, #0d9488);
}

.additional-icon {
    background: linear-gradient(135deg, #7c3aed, #4338ca);
}

.icon-badge {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    background: linear-gradient(45deg, #fbbf24, #f97316);
    padding: 0.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #a855f7;
    text-align: center;
}

.service-card > p {
    color: #9ca3af;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d1d5db;
    background: rgba(51, 65, 85, 0.3);
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-item:hover {
    background: rgba(71, 85, 105, 0.3);
}

.service-logo {
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    background: rgba(147, 51, 234, 0.2);
    overflow: hidden;
    flex-shrink: 0;
}

.service-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.375rem;
}

.coming-soon-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, rgba(234, 179, 8, 0.2), rgba(249, 115, 22, 0.2));
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    border: 1px solid rgba(234, 179, 8, 0.3);
    margin: 0 auto;
}

.coming-soon-tag span {
    color: #fbbf24;
    font-size: 0.75rem;
    font-weight: 700;
}

/* About Section */
.about {
    padding: 3rem 0;
    background: linear-gradient(45deg, rgba(15, 23, 42, 0.5), rgba(147, 51, 234, 0.5));
}

.about .container {
    text-align: center;
}

.about h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #a855f7, #60a5fa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.about-content {
    font-size: 1rem;
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 500;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.3), rgba(15, 23, 42, 0.3));
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon.streaming {
    background: linear-gradient(135deg, #dc2626, #ec4899);
}

.feature-icon.gaming {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #a855f7;
}

.feature-card p {
    color: #9ca3af;
    font-weight: 500;
    font-size: 0.875rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    background: linear-gradient(45deg, #7c3aed, #2563eb);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefit-item h3 {
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.benefit-item p {
    color: #9ca3af;
    font-weight: 500;
    font-size: 0.875rem;
}

/* Notify Section */
.notify {
    padding: 3rem 0;
}

.notify-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.5));
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(147, 51, 234, 0.3);
    max-width: 32rem;
    margin: 0 auto;
    text-align: center;
}

.notify-icon {
    background: linear-gradient(45deg, #7c3aed, #2563eb);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.notify-card h2 {
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #a855f7, #60a5fa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.notify-card > p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.notify-form {
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group input {
    background: rgba(51, 65, 85, 0.5);
    border: 1px solid #4b5563;
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    color: white;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: 500;
}

.form-group input::placeholder {
    color: #9ca3af;
}

.form-group input:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 2px rgba(147, 51, 234, 0.2);
}

.form-group button {
    background: linear-gradient(45deg, #7c3aed, #2563eb);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-family: inherit;
    font-size: 0.875rem;
}

.form-group button:hover {
    background: linear-gradient(45deg, #6d28d9, #1d4ed8);
    transform: scale(1.05);
}

.form-group button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.privacy-info {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 500;
    flex-wrap: wrap;
}

.privacy-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.privacy-item svg {
    color: #10b981;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(147, 51, 234, 0.2);
    padding: 2rem 0;
}

.footer-content {
    text-align: center;
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-text h3 {
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(45deg, #a855f7, #60a5fa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo .logo-text p {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 500;
}

.footer-content p {
    color: #9ca3af;
    max-width: 28rem;
    margin: 0 auto;
    font-weight: 500;
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #6b7280;
    font-weight: 500;
    font-size: 0.75rem;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.loading-spin {
    animation: spin 1s linear infinite;
}

/* Responsive Design */
@media (min-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .form-group {
        flex-direction: row;
    }
    
    .form-group input {
        flex: 1;
    }
    
    .progress-card h3 {
        font-size: 1.5rem;
    }
    
    .progress-card p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .about h2 {
        font-size: 2.5rem;
    }
    
    .notify-card h2 {
        font-size: 2rem;
    }
    
    .notify-card > p {
        font-size: 1rem;
    }
}

@media (min-width: 640px) {
    .mobile-menu {
        width: 70%;
        max-width: 350px;
    }
    
    .floating-orb {
        width: 24rem;
        height: 24rem;
    }
}

@media (min-width: 768px) {
    .desktop-menu {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-header h2 {
        font-size: 3rem;
    }

    .about h2 {
        font-size: 3rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 1.25rem 2.5rem;
        font-size: 1.125rem;
    }
    
    .services {
        padding: 4rem 0;
    }
    
    .about {
        padding: 4rem 0;
    }
    
    .notify {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }

    .orb-1, .orb-2 {
        width: 28rem;
        height: 28rem;
    }
    
    .container {
        padding: 0 2rem;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 6rem;
    }
    
    .orb-1, .orb-2 {
        width: 32rem;
        height: 32rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
a:focus {
    outline: 2px solid #7c3aed;
    outline-offset: 2px;
}

/* Better font rendering */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Improved text contrast */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
}

/* Better spacing for Arabic text */
p, span, div {
    letter-spacing: 0.025em;
}

/* Prevent horizontal scroll on mobile */
body {
    overflow-x: hidden;
}