/* أساسيات التصميم */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --gold-color: #f39c12;
    --text-color: #333;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* شريط التنقل */
.navbar {
    background-color: var(--primary-color);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo .logo {
    width: 40px;
    height: 40px;
    margin-left: 10px;
}

.nav-logo a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin: 0 10px;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 10px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--gold-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* الصورة الرئيسية */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/header-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--gold-color);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e67e22;
}

/* قسم الميزات */
.features {
    padding: 5rem 0;
    background-color: white;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* التذييل */
.footer {
    background-color: var(--dark-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* تصميم متجاوب */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1.5rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
}

/* قسم المسؤول العام */
.admin-section-main {
    padding: 4rem 0;
    background-color: white;
}

.admin-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.admin-image {
    flex: 1;
    text-align: center;
}

.admin-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.admin-info {
    flex: 1;
}

.admin-info h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.admin-name {
    color: var(--gold-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.admin-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    color: #555;
}

.contact-item i {
    color: var(--secondary-color);
    width: 20px;
}

.whatsapp-link {
    background: #09361a !important;
}

.whatsapp-link:hover {
    background: #128C7E !important;
}

.email-link {
    background: #7e1a11 !important;
}

.email-link:hover {
    background: #7e1a11 !important;
}


.admin-contact {
    display: flex;
    gap: 1rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.contact-link:hover {
    background-color: #2980b9;
}

.contact-link i {
    font-size: 1.2rem;
}

/* تصميم متجاوب لقسم المسؤول */
@media (max-width: 992px) {
    .admin-content {
        flex-direction: column;
        text-align: center;
    }
    
    .admin-contact {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .admin-contact {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-link {
        width: 100%;
        justify-content: center;
    }
}


/* قسم مجلس شبيبة الرسل */
.council-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.council-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.council-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.council-member {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 320px;
}

.council-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--secondary-color);
    flex-shrink: 0;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.council-member h3 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.3;
    min-height: 2.6em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-name {
    color: var(--gold-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0;
}



/* تأثيرات خاصة للصور إذا لم تكن متوفرة */
.member-image::before {
    content: "\f007";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 3.5rem;
    color: #ccc;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.member-image img[src=""],
.member-image img:not([src]) {
    display: none;
}

.member-image img[src=""].no-image + ::before,
.member-image img:not([src]).no-image + ::before,
.member-image:has(img[src=""])::before,
.member-image:has(img:not([src]))::before {
    display: block;
}

/* التصميم المتجاوب لمجلس الشبيبة */
@media (max-width: 1400px) {
    .council-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1200px) {
    .council-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .council-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .council-member {
        padding: 15px;
        min-height: 280px;
    }
    
    .member-image {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .council-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .council-member {
        min-height: 260px;
        padding: 15px 10px;
    }
    
    .member-image {
        width: 90px;
        height: 90px;
    }
    
    .council-member h3 {
        font-size: 0.9rem;
    }
    
    .member-name {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .council-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .council-member {
        min-height: auto;
        padding: 20px;
    }
    
    .member-image {
        width: 100px;
        height: 100px;
    }
}


/* تأثيرات إضافية */
.council-section {
    position: relative;
}

.council-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--gold-color));
    border-radius: 12px 12px 0 0;
}

.member-image {
    position: relative;
    transition: transform 0.3s ease;
}

.council-member:hover .member-image {
    transform: scale(1.1);
}

/* تناوب الألوان للخلفيات */
.council-member:nth-child(odd) {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.council-member:nth-child(even) {
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}





/* قسم أخبار شبيبة الرسل */
.news-section {
    padding: 4rem 0;
    background-color: white;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.news-image {
    text-align: center;
    margin: 30px 0;
}

.news-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 80vh;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold-color);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 500;
}

.news-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.news-content p {
    color: #666;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.news-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: var(--primary-color);
}

.news-actions {
    text-align: center;
}

.view-all-news {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.view-all-news:hover {
    background: var(--secondary-color);
}

/* تصميم متجاوب لأخبار الشبيبة */
@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.2rem;
    }
    
    .news-content {
        padding: 1.2rem;
    }
    
    .news-image {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* تنسيقات صفحة الخبر المفصل */
.news-detail {
    padding: 6rem 0 3rem;
}

.news-detail-header {
    text-align: center;
    margin-bottom: 2rem;
}

.news-detail-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.news-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: #666;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-detail-image {
    margin-bottom: 2rem;
}

.news-detail-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.news-text {
    line-height: 1.8;
}

.news-text h2 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.news-text ul {
    margin: 1rem 0;
    padding-right: 1.5rem;
}

.news-text li {
    margin-bottom: 0.5rem;
}

.news-gallery {
    margin: 2rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.gallery-grid img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

.news-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.nav-button {
    padding: 10px 20px;
    background: var(--light-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s ease;
}

.nav-button:hover {
    background: var(--secondary-color);
    color: white;
}

/* تصميم متجاوز لصفحة الخبر */
@media (max-width: 768px) {
    .news-detail-header h1 {
        font-size: 2rem;
    }
    
    .news-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-button {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .news-detail {
        padding: 5rem 0 2rem;
    }
}

/* تنسيقات إضافية لصفحة الكتاب المقدس */
.bible-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.9)), url('../images/bible-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin: 20px 0 40px;
    font-style: italic;
}

.search-box {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.search-box input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
}

.search-box button {
    background: var(--gold-color);
    border: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    color: white;
    font-size: 1.2rem;
}

.study-categories {
    padding: 60px 0;
    background: #f8f9fa;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.category-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.category-card li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.category-card li:before {
    content: "✓ ";
    color: var(--gold-color);
    font-weight: bold;
}

.daily-reading {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.reading-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    margin: 30px auto;
    max-width: 800px;
}

.reading-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-style: italic;
}

.resources-section {
    padding: 60px 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.resource-card {
    background: white;
    border: 2px solid #f1f1f1;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.resource-card:hover {
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.resource-link {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.resource-link:hover {
    background: var(--primary-color);
}

.reading-plans {
    padding: 60px 0;
    background: #f8f9fa;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.plan-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.plan-progress {
    background: #eee;
    border-radius: 10px;
    height: 10px;
    margin: 15px 0;
}

.progress-bar {
    background: var(--gold-color);
    height: 100%;
    border-radius: 10px;
}

.plan-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.plan-btn:hover {
    background: var(--primary-color);
}

.faq-section {
    padding: 60px 0;
}

.faq-grid {
    display: grid;
    gap: 20px;
    margin-top: 40px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* التصميم المتجاوب */
@media (max-width: 768px) {
    .bible-hero {
        padding: 100px 0 60px;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .search-box input {
        border-radius: 5px;
        margin-bottom: 10px;
    }
    
    .search-box button {
        border-radius: 5px;
        padding: 12px;
    }
    
    .category-grid,
    .resources-grid,
    .plans-grid {
        grid-template-columns: 1fr;
    }
}



/* تنسيقات خاصة بصفحة الاجتماعات */
.meetings-hero {
    background: linear-gradient(rgba(52, 152, 219, 0.9), rgba(41, 128, 185, 0.9)), url('../images/meetings-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.category-tabs {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 70px;
    z-index: 100;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-btn {
    padding: 12px 25px;
    background: #f8f9fa;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.tab-btn:hover {
    background: #e9ecef;
}

.tab-btn.active {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.tab-content {
    display: none;
    padding: 40px 0;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.weekly-schedule {
    margin: 40px 0;
}

.schedule-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 5px solid var(--secondary-color);
    transition: transform 0.3s ease;
}

.schedule-card:hover {
    transform: translateX(10px);
}

.schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.schedule-header h4 {
    color: var(--primary-color);
    margin: 0;
}

.meeting-time {
    background: var(--gold-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.meeting-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-item i {
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
}

.monthly-activities {
    margin: 50px 0;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.activity-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--gold-color);
}

.activity-date {
    background: var(--gold-color);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: bold;
}

.upcoming-events {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 60px 0;
}

.event-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
}

.countdown {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.downloads-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.download-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.download-card:hover {
    transform: translateY(-10px);
}

.download-card i {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.download-btn {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px;
    transition: background 0.3s;
}

.download-btn:hover {
    background: var(--primary-color);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* التصميم المتجاوب */
@media (max-width: 768px) {
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .schedule-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .countdown {
        font-size: 1.8rem;
    }
    
    .meetings-hero {
        padding: 100px 0 60px;
    }
}

@media (max-width: 480px) {
    .meeting-details {
        grid-template-columns: 1fr;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .downloads-grid {
        grid-template-columns: 1fr;
    }
}

/* تنسيقات خاصة بصفحة الألعاب */
.games-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 3rem;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.games-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.game-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.game-header {
    padding: 30px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    text-align: center;
}

.game-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    display: block;
}

.game-content {
    padding: 30px;
}

.game-stats {
    display: flex;
    justify-content: space-around;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-color);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.game-start-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--gold-color), #e67e22);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.game-start-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.game-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.close-modal {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
}

.close-modal:hover {
    color: var(--accent-color);
}

.quiz-container {
    text-align: center;
}

.question {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    line-height: 1.6;
}

.options {
    display: grid;
    gap: 15px;
    margin: 30px 0;
}

.option {
    padding: 20px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.option:hover {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    transform: translateX(-5px);
}

.option.correct {
    background: #28a745;
    color: white;
    border-color: #28a745;
    animation: pulse 0.6s;
}

.option.wrong {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
}

.score-display {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gold-color);
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.progress {
    margin-top: 20px;
    color: #666;
    font-style: italic;
}

.leaderboard-section {
    padding: 60px 0;
    background: white;
}

.leaderboard {
    max-width: 600px;
    margin: 40px auto;
}

.leaderboard-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin: 10px 0;
    border-radius: 10px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.leaderboard-item:hover {
    transform: translateX(10px);
}

.leaderboard-item.gold {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
}

.leaderboard-item.silver {
    background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
}

.leaderboard-item.bronze {
    background: linear-gradient(135deg, #cd7f32, #e89f5e);
    color: white;
}

.rank {
    font-size: 1.5rem;
    font-weight: bold;
}

.player-name {
    font-size: 1.2rem;
    font-weight: 500;
}

.ideas-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.ideas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.idea-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 5px solid var(--secondary-color);
}

.idea-status {
    display: inline-block;
    padding: 5px 15px;
    background: var(--gold-color);
    color: white;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-top: 10px;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* التصميم المتجاوب */
@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        padding: 20px;
    }
    
    .game-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .floating-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .games-hero {
        padding: 100px 0 60px;
    }
    
    .game-header {
        padding: 20px;
    }
    
    .game-content {
        padding: 20px;
    }
    
    .option {
        padding: 15px;
        font-size: 1rem;
    }
}


/* تنسيقات خاصة بصفحة عن الشبيبة */
.about-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(52, 152, 219, 0.9)), url('../images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* قسم الرسالة والرؤية */
.mission-vision {
    padding: 80px 0;
    background: white;
}

.mission-vision h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.mission-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 5px solid var(--gold-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--gold-color));
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.mission-card i {
    margin-bottom: 25px;
    display: block;
}

.mission-card h3 {
    color: var(--primary-color);
    margin: 20px 0 15px;
    font-size: 1.6rem;
}

.mission-card p {
    line-height: 1.8;
    color: #555;
    font-size: 1.1rem;
}

/* الخط الزمني المعدل - في المنتصف */
.timeline-section {
    padding: 80px 0;
    background: white;
    position: relative;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 6px;
    background: linear-gradient(to bottom, var(--secondary-color), var(--gold-color));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.3rem;
    z-index: 2;
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    white-space: nowrap;
    top: -15px;
}

.timeline-content {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 45%;
    position: relative;
    border-left: 4px solid var(--gold-color);
    margin-top: 40px;
}

/* العناصر الفردية على اليمين */
.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 5%;
    text-align: right;
}

/* العناصر الزوجية على اليسار */
.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 5%;
    text-align: left;
}

/* السهم للعناصر على اليمين */
.timeline-item:nth-child(odd) .timeline-content::before {
    content: '';
    position: absolute;
    top: 30px;
    left: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid white;
}

/* السهم للعناصر على اليسار */
.timeline-item:nth-child(even) .timeline-content::before {
    content: '';
    position: absolute;
    top: 30px;
    right: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid white;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.timeline-content p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.timeline-tag {
    display: inline-block;
    background: var(--gold-color);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* نقطة الاتصال مع الخط */
.timeline-item::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 25px;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid var(--secondary-color);
    border-radius: 50%;
    z-index: 2;
}


/* معرض الصور */
.gallery-section {
    padding: 80px 0;
    background: white;
}

.gallery-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.gallery-container {
    position: relative;
    max-width: 1100px;
    margin: 50px auto;
}

.gallery-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    height: 550px;
}

.gallery-slider::-webkit-scrollbar {
    display: none;
}

.gallery-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    position: relative;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 40px;
    text-align: center;
}

.slide-caption h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-caption p {
    opacity: 0.9;
    font-size: 1.2rem;
    line-height: 1.6;
}

.gallery-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.nav-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-dot:hover {
    background: var(--secondary-color);
    transform: scale(1.2);
}

.nav-dot.active {
    background: var(--secondary-color);
    transform: scale(1.3);
    border-color: white;
    box-shadow: 0 0 15px var(--secondary-color);
}

/* المسؤولون السابقون */
/* إصلاح مشاكل الظهور */
.timeline-item,
.leader-card,
.mission-card {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* إزالة أي تأثيرات fade مخفية */
.fade-in {
    opacity: 1 !important;
    animation: none !important;
}



/* قسم الإحصائيات */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.stats-section h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-top: 40px;
}

.stat-circle {
    width: 160px;
    height: 160px;
    border: 4px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    transition: all 0.3s ease;
}

.stat-circle:hover {
    border-color: rgba(255,255,255,0.6);
    transform: scale(1.1);
}

.stat-number {
    font-size: 3.2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* تأثيرات الحركة */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lineFlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes pulseDot {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.1); box-shadow: 0 0 20px var(--secondary-color); }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

/* التصميم المتجاوب لصفحة عن الشبيبة */
@media (max-width: 1024px) {
    .timeline-content {
        width: 48%;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        margin: 70px 0;
        justify-content: flex-start;
        padding-left: 70px;
    }
    
    .timeline-year {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        width: 100%;
        margin: 50px 0 0 0 !important;
        text-align: right !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -10px;
        right: auto;
        border-left: none;
        border-right: 12px solid white;
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
    }
    
    .timeline-item::after {
        left: 30px;
    }
    
    .gallery-slider {
        height: 400px;
    }
    
    .leaders-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 30px;
        flex-direction: column;
    }
    
    .timeline-content {
        padding: 25px;
    }
    
    .timeline-year {
        font-size: 1.1rem;
        padding: 10px 20px;
    }
    
    .timeline-item {
        padding-left: 50px;
        margin: 60px 0;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item::after {
        left: 20px;
        width: 20px;
        height: 20px;
    }
    
    .gallery-slider {
        height: 300px;
    }
    
    .slide-caption {
        padding: 25px;
    }
    
    .slide-caption h3 {
        font-size: 1.4rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-circle {
        width: 130px;
        height: 130px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}




/* Countdown Styles */
.event-countdown {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.countdown-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.event-poster {
    text-align: center;
}

.event-poster img {
    width: 200%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.event-poster img:hover {
    transform: scale(1.05);
}

.event-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.bible-verse {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    font-style: italic;
}

.countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.time-unit {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255,255,255,0.2);
}

.number {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.label {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 5px;
    display: block;
}

.countdown-message {
    margin: 30px 0;
    text-align: center;
}

.countdown-message p {
    font-size: 1.3rem;
    font-weight: 500;
}

.countdown-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--gold-color);
    color: white;
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.progress-section {
    margin-top: 30px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 500;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(255,255,255,0.2);
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-color), #ffd700);
    border-radius: 5px;
    transition: width 0.5s ease;
    width: 0%;
}

/* تصميم متجاوب */
@media (max-width: 768px) {
    .countdown-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .countdown-timer {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .countdown-actions {
        flex-direction: column;
    }
    
    .event-header h2 {
        font-size: 2rem;
    }
}


.video-explanation {
    padding: 60px 0;
    background-color: #f9f9f9;
    direction: rtl;
}

.video-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.video-text {
    flex: 1;
    padding: 20px;
}

.video-text h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 28px;
}

.video-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.video-text ul {
    margin: 15px 0;
    padding-right: 20px;
}

.video-text li {
    margin-bottom: 8px;
    color: #555;
}

.video-container {
    flex: 1;
    text-align: center;
}

.video-container video {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.video-caption {
    margin-top: 10px;
    color: #777;
    font-size: 14px;
}

/* تصميم متجاوب للشاشات الصغيرة */
@media (max-width: 768px) {
    .video-content {
        flex-direction: column-reverse;
    }
    
    .video-text, .video-container {
        width: 100%;
    }
}



.video-teaser {
    text-align: center;
}

.video-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}

.teaser-video {
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-btn {
    background: var(--gold-color);
    border: none;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-bottom: 15px;
}

.play-btn:hover {
    transform: scale(1.1);
}

.video-info {
    margin-top: 20px;
}

.video-message {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    border-right: 4px solid var(--gold-color);
}

.video-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
    justify-content: center;
}

.video-features span {
    background: rgba(255,255,255,0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.website-features-preview {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid rgba(255,255,255,0.2);
}

.website-features-preview h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature-preview {
    background: rgba(255,255,255,0.1);
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-preview:hover {
    transform: translateY(-5px);
}

.feature-preview i {
    font-size: 2.5rem;
    color: var(--gold-color);
    margin-bottom: 15px;
    display: block;
}

.feature-preview h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-preview p {
    font-size: 0.9rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .video-features {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}



@keyframes slideDown {
    from {
        transform: translateX(-50%) translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.share-notification {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}


.countdown-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 25px 0;
}

.btn-primary {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.btn-live {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-live:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* للتأكد من أن الأزرار تظهر بشكل جيد على الجوال */
@media (max-width: 768px) {
    .countdown-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-live {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}


