* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', sans-serif;
    background-color: #fef9ef;
    color: #1e2a2e;
    line-height: 1.6;
}

.flag-bar {
    height: 6px;
    background: linear-gradient(90deg, #009639 33%, #fff 33%, #fff 66%, #D21034 66%);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

header {
    background: #0a2f2a;
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 6px;
    z-index: 999;
    border-bottom: 3px solid #D21034;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
}

.logo span {
    color: #D21034;
}

nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    font-size: 1.1rem;
}

nav a:hover {
    color: #D21034;
}

.btn {
    display: inline-block;
    background: #D21034;
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
}

/* قصة التحضير */
.hero-story {
    background: linear-gradient(135deg, #e6f0e6, #fff6e8);
    border-radius: 30px;
    margin: 50px 0;
    padding: 50px 40px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-right: 6px solid #D21034;
}

.story-badge {
    background: #D21034;
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-story h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #0a2f2a;
}

.hero-story p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.quote-box {
    background: #0a2f2a20;
    padding: 20px;
    border-radius: 20px;
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    margin-top: 25px;
    border: 1px solid #D21034;
}

.quote-box span {
    display: block;
    font-size: 0.9rem;
    margin-top: 10px;
    color: #D21034;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin: 50px 0 30px;
    border-bottom: 3px solid #D21034;
    display: inline-block;
    width: auto;
    padding-bottom: 8px;
}

.leaders-grid, .battles-grid, .org-flex, .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.leader-card, .battle-card, .org-card, .gallery-item {
    background: white;
    padding: 25px 20px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    text-align: center;
    border: 1px solid #ddd;
}

.leader-card:hover, .battle-card:hover {
    transform: translateY(-8px);
    border-color: #D21034;
}

.leader-icon {
    font-size: 3rem;
    color: #D21034;
    margin-bottom: 15px;
}

.leader-card h3, .battle-card h3 {
    color: #0a2f2a;
    margin-bottom: 10px;
}

.org-card {
    background: #0a2f2a;
    color: white;
}
.org-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #D21034;
}

.img-placeholder {
    background: #eee;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-weight: bold;
    color: #555;
}

.gallery-note {
    text-align: center;
    margin: 20px;
    color: gray;
}

footer {
    background: #0a2f2a;
    color: white;
    text-align: center;
    padding: 30px;
    border-radius: 30px 30px 0 0;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .header-flex {
        flex-direction: column;
        gap: 15px;
    }
    .hero-story h1 {
        font-size: 1.8rem;
    }
}
/* ========== قسم التقييمات والتعليقات ========== */
.reviews-section {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 30px;
    padding: 40px;
    margin: 50px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.rating-overall {
    text-align: center;
    padding: 25px;
    background: #0a2f2a10;
    border-radius: 20px;
    margin-bottom: 30px;
}

.rating-stars-big {
    font-size: 1.6rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.stars-big {
    display: inline-block;
    direction: ltr;
}

.stars-big i {
    font-size: 2rem;
    color: #ffc107;
    margin: 0 3px;
}

.rating-stars-big span {
    font-size: 1.3rem;
}

.rating-overall p {
    margin-top: 15px;
    color: #666;
    font-size: 0.9rem;
}

.review-form {
    background: white;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.review-form h3 {
    color: #0a2f2a;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.form-row {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    transition: 0.3s;
    background: #fafafa;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #D21034;
    outline: none;
    background: white;
}

.rating-input {
    display: flex;
    gap: 12px;
    direction: ltr;
    padding: 5px 0;
}

.rating-input i {
    font-size: 2rem;
    cursor: pointer;
    color: #ddd;
    transition: 0.2s;
}

.rating-input i.active, .rating-input i:hover {
    color: #ffc107;
}

.reviews-list h3 {
    color: #0a2f2a;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.review-card {
    background: white;
    padding: 20px 25px;
    border-radius: 18px;
    margin-bottom: 18px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    border-right: 5px solid #D21034;
    transition: 0.3s;
}

.review-card:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.review-name {
    font-weight: bold;
    font-size: 1.1rem;
    color: #0a2f2a;
}

.review-stars {
    color: #ffc107;
    direction: ltr;
}

.review-date {
    font-size: 0.8rem;
    color: #999;
}

.review-text {
    line-height: 1.7;
    margin-top: 12px;
    color: #444;
}

.no-reviews {
    text-align: center;
    padding: 50px;
    color: #888;
    background: #f9f9f9;
    border-radius: 20px;
    font-size: 1.1rem;
}

@media (max-width: 700px) {
    .reviews-section {
        padding: 20px;
    }
    .stars-big i {
        font-size: 1.4rem;
    }
    .rating-input i {
        font-size: 1.5rem;
    }
    .review-card {
        padding: 15px;
    }
}
/* عداد الزوار */
.visitor-counter {
    text-align: center;
    padding: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    display: inline-block;
    margin: 10px auto;
}

.visitor-counter i {
    margin-left: 8px;
    color: #ffc107;
}