.hero {
    background-image: url("Dandadan.png");
    /* تأكد من المسار الصحيح */
    background-size: cover;
    background-position: center;
    height: 80vh;
    position: relative;
    color: #fff;
}

.overlay {
    background: rgba(0, 0, 0, 0.6);
    /* تظليل غامق */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ff4444;
}

.hero-text p {
    font-size: 1.3rem;
    line-height: 1.6;
}


body {
    background-color: black;
    color: white;
    font-family: 'Tajawal', sans-serif;

}

.meta-box {
    background-color: #111;
    color: #fff;
    padding: 20px;
    text-align: right;
    font-size: 1rem;
    direction: rtl;
}

.meta-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.meta-box li {
    margin-bottom: 8px;
}


.story-section {
    background-color: #111;
    color: #eee;
    padding: 60px 20px;
    direction: rtl;
}

.story-section .container {
    max-width: 800px;
    margin: 0 auto;
}

.story-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffcc00;
}

.story-section p {
    font-size: 1.2rem;
    line-height: 2;
    color: #ccc;
}


.overlay {
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 40px;
    color: white;
    text-align: right;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin: 0;
}

.hero-content p {
    font-size: 1.2rem;
    color: #ccc;
    margin: 8px 0;
}

.opinion-section {
    background-color: #1a1a1a;
    color: #f0f0f0;
    padding: 60px 20px;
    direction: rtl;
}

.opinion-section .container {
    max-width: 800px;
    margin: 0 auto;
}

.opinion-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #00bcd4;
}

.opinion-section p {
    font-size: 1.2rem;
    line-height: 2;
    color: #ddd;
}

.trailer-section {
    background-color: #0d0d0d;
    color: #fff;
    padding: 60px 20px;
    direction: rtl;
    text-align: center;
}

.trailer-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ff4444;
}

/* هاي هي video-wrapper المصححة */
.video-wrapper {
    width: 80%;
    max-width: 500px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.episodes-section {
    background-color: #111;
    padding: 60px 20px;
    color: #fff;
    direction: rtl;
}

.episodes-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #ffaa00;
}

.episode-box {
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 10px;
    background-color: #1d1d1d;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.episode-content {
    display: none;
    margin-top: 10px;
}

.toggle-btn {
    background-color: #444;
    color: white;
    padding: 10px;
    width: 100%;
    text-align: right;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 5px;
}

.toggle-btn:hover {
    background-color: #666;
}