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

body {
    font-family: 'Cairo', sans-serif;
    background-color: #DDDDDD;
    color: #0B0A0A;
    line-height: 1.6;
}

/* ==================== BANNER SECTION ==================== */
.banner-section {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.banner-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ==================== STORE SECTION ==================== */
.store-section {
    padding: 60px 20px;
    background-color: #DDDDDD;
}

.store-header {
    width: 100%;
    background-color: #686868;
    padding: 25px;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.store-icon {
    font-size: 2.8rem;
    color: #0B0A0A;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.store-header h2 {
    font-size: 2.5rem;
    color: #0B0A0A;
    font-weight: 900;
    letter-spacing: 1px;
    margin: 0;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.product-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image.placeholder {
    background: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
    color: #999;
    font-size: 0.9rem;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.5rem;
    color: #0B0A0A;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ==================== EVENTS SECTION ==================== */
.events-section {
    padding: 60px 20px;
    background-color: #DDDDDD;
}

.events-header-box {
    max-width: 1000px;
    margin: 0 auto 50px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.events-header-content {
    text-align: center;
}

.events-header-content h2 {
    font-size: 2.5rem;
    color: #0B0A0A;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.events-header-content p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0;
    line-height: 1.8;
}

.events-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.event-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-info {
    padding: 20px;
    text-align: center;
}

.event-info h3 {
    font-size: 1.5rem;
    color: #0B0A0A;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.join-btn {
    background-color: #686868;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.join-btn:hover {
    background-color: #555;
    transform: scale(1.05);
}

/* ==================== NEWS SECTION ==================== */
.news-section {
    padding: 60px 20px;
    background-color: #DDDDDD;
}

.news-header-wrapper {
    max-width: 1200px;
    margin: 0 auto 40px;
}

.news-header-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 30px;
}

.news-header-box h2 {
    font-size: 2.5rem;
    color: #0B0A0A;
    font-weight: 900;
    letter-spacing: 1px;
    margin: 0;
}

.news-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-article {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.news-article:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.news-article img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-article-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-article-info h3 {
    font-size: 1.2rem;
    color: #0B0A0A;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.6;
}

.news-article-info p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    flex: 1;
}

.read-more {
    color: #686868;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.read-more:hover {
    color: #555;
    transform: translateX(-5px);
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    padding: 60px 20px;
    background-color: #DDDDDD;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 2.5rem;
    color: #0B0A0A;
    font-weight: 900;
    letter-spacing: 1px;
}

.social-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.social-icon {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.social-icon:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.social-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.social-icon p {
    font-size: 1rem;
    color: #0B0A0A;
    font-weight: 700;
    margin: 0;
}

/* ==================== MODAL STYLES ==================== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s ease-in-out;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
}

.event-modal .modal-content {
    max-width: 800px;
}

.event-modal .event-content {
    max-width: 900px;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #000;
}

.modal-body {
    width: 100%;
}

.modal-body h2 {
    font-size: 2rem;
    color: #0B0A0A;
    font-weight: 900;
    margin-bottom: 25px;
    text-align: center;
}

.pricing-table {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
}

.amount {
    color: #0B0A0A;
    flex: 1;
}

.price {
    color: #686868;
    margin: 0 15px;
}

.cost {
    color: #2ecc71;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 8px;
    margin-bottom: 25px;
}

.payment-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.payment-method span {
    font-weight: 700;
    color: #0B0A0A;
}

.contact-btn {
    display: block;
    width: 100%;
    background-color: #686868;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #555;
    transform: scale(1.02);
}

/* ==================== EVENT MODAL SPECIFIC STYLES ==================== */
.event-body {
    width: 100%;
}

.event-header-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 25px;
}

.event-intro {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.event-intro p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.8;
}

.event-intro p:last-child {
    margin-bottom: 0;
}

.coming-soon-text {
    font-size: 2rem;
    font-weight: 900;
    color: #686868;
    text-align: center;
}

.rules-section {
    margin-bottom: 30px;
}

.rules-section h3 {
    font-size: 1.5rem;
    color: #0B0A0A;
    font-weight: 900;
    margin-bottom: 20px;
    border-bottom: 2px solid #686868;
    padding-bottom: 10px;
}

.rule-item {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-right: 4px solid #686868;
    border-radius: 5px;
}

.rule-item strong {
    color: #0B0A0A;
    font-size: 1rem;
    display: block;
    margin-bottom: 10px;
}

.rule-item p {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 5px 0;
}

.qualification-section,
.standing-section {
    margin-bottom: 30px;
}

.qualification-section h3,
.standing-section h3 {
    font-size: 1.3rem;
    color: #0B0A0A;
    font-weight: 900;
    margin-bottom: 15px;
    text-align: center;
}

.qualification-image,
.standing-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.event-join-btn {
    display: block;
    width: 100%;
    background-color: #2ecc71;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.event-join-btn:hover {
    background-color: #27ae60;
    transform: scale(1.02);
}

/* ==================== SERVICES LIST ==================== */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.service-item {
    padding: 15px;
    background: #f5f5f5;
    border-radius: 8px;
    color: #0B0A0A;
    font-weight: 700;
    border-right: 4px solid #686868;
}

.sponsoring-content {
    margin-bottom: 25px;
}

.sponsoring-content p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.8;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .store-header h2,
    .events-header-content h2,
    .news-header-box h2,
    .contact-header h2 {
        font-size: 1.8rem;
    }

    .products-container,
    .events-container,
    .news-container,
    .social-icons {
        grid-template-columns: 1fr;
    }

    .modal-content,
    .event-modal .modal-content {
        width: 95%;
        padding: 20px;
    }

    .modal-body h2 {
        font-size: 1.5rem;
    }

    .event-header-image {
        height: 200px;
    }

    .store-header {
        flex-direction: column;
        gap: 10px;
    }

    .store-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .banner-section {
        height: 250px;
    }

    .store-header h2,
    .events-header-content h2,
    .news-header-box h2,
    .contact-header h2 {
        font-size: 1.5rem;
    }

    .modal-content {
        max-height: 95vh;
    }

    .price-item {
        font-size: 0.9rem;
        padding: 10px;
    }

    .rule-item {
        padding: 10px;
    }

    .rule-item strong {
        font-size: 0.9rem;
    }

    .rule-item p {
        font-size: 0.85rem;
    }
}
