* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
}

/* ===== Navbar - شفاف زي الرئيسية ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    z-index: 1000;
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(12px);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 3.5%;
    max-width: 1920px;
    margin: 0 auto;
}

.navbar-brand .logo {
    height: 36px;
    width: auto;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: #e5e5e5;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e50914;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #e50914;
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #fff;
    font-weight: 600;
}

.nav-link.premium-link {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #ffd700, #ffb800);
    color: #000;
    padding: 7px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.88rem;
}

.nav-link.premium-link::after {
    display: none;
}

.nav-link.premium-link:hover {
    background: linear-gradient(135deg, #ffb800, #ffd700);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255,215,0,0.4);
}

.navbar-actions {
    display: flex;
    align-items: center;
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 6px 14px;
    transition: all 0.3s ease;
    min-width: 180px;
    border: 1px solid rgba(255,255,255,0.1);
}

.search-box:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

.search-input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 0.85rem;
    width: 100%;
    padding: 0 8px;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    transition: transform 0.2s;
}

.search-btn:hover {
    transform: scale(1.15);
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    width: 100%;
    height: 55vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 4%;
    margin-top: 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/premium-hero.jpg') center/cover no-repeat;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10,0.6) 0%, #0a0a0a 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
}

.hero-description {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.9);
}

/* ===== Pricing Section - بطاقات أصغر ===== */
.pricing-section {
    padding: 50px 4%;
    background: #0a0a0a;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.pricing-card {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 20px 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: rgba(229,9,20,0.3);
}

.pricing-card.featured {
    border-color: #e50914;
    box-shadow: 0 8px 25px rgba(229,9,20,0.3);
}

.card-header {
    margin-bottom: 16px;
    min-height: 50px;
}

.plan-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #7735cc, #9c27b0);
    color: #fff;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
}

.card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #e50914;
    margin-bottom: 5px;
}

.plan-description {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.4;
    min-height: 45px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 22px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #e50914, #c20812);
    color: #fff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c20812, #e50914);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(229,9,20,0.5);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.5);
}

/* ===== Features Section ===== */
.features-section {
    padding: 70px 4%;
    background: #0a0a0a;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 60px;
    padding-bottom: 15px;
    border-bottom: 4px solid #e50914;
    display: inline-block;
    width: auto;
    margin-left: 50%;
    transform: translateX(-50%);
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    padding: 40px;
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
}

.feature-item.reverse {
    background: rgba(255,255,255,0.05);
}

.feature-item.reverse .feature-content {
    order: 2;
}

.feature-item.reverse .feature-visual {
    order: 1;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e50914, #c20812);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.feature-description {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.feature-visual {
    text-align: center;
}

.visual-icon {
    font-size: 8rem;
    color: rgba(229,9,20,0.2);
    transition: all 0.3s ease;
}

.feature-item:hover .visual-icon {
    color: rgba(229,9,20,0.4);
    transform: scale(1.1);
}

/* ===== Footer ===== */
.footer {
    background: #0a0a0a;
    padding: 35px 0 25px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 4%;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.35s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.social-icon.facebook:hover {
    background: #1877f2;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.5);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.5);
}

.social-icon.tiktok:hover {
    background: #000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.social-icon.telegram:hover {
    background: #0088cc;
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.5);
}

.social-icon.telegram-group:hover {
    background: #229ED9;
    box-shadow: 0 8px 20px rgba(34, 158, 217, 0.5);
}

.social-icon.youtube:hover {
    background: #ff0000;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.5);
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: #e50914;
}

.footer-links .separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
}

.footer-links .download-link i {
    font-size: 1.1rem;
}

.footer-bottom {
    margin-top: 15px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.6;
}

.footer-bottom span {
    color: #e50914;
    font-weight: 600;
}

.footer-bottom .team {
    color: #e50914;
    font-weight: 700;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .pricing-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .pricing-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature-item.reverse .feature-content,
    .feature-item.reverse .feature-visual {
        order: initial;
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        gap: 12px;
    }
    
    .nav-link {
        font-size: 0.75rem;
    }
    
    .nav-link.premium-link {
        padding: 5px 11px;
        font-size: 0.75rem;
    }
    
    .search-box {
        min-width: 140px;
        padding: 5px 11px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .pricing-container {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.4rem;
    }
    
    .visual-icon {
        font-size: 5rem;
    }
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-links .separator {
        display: none;
    }
}
