/* ==========================
   GLOBAL STYLES
========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #0f0f0f;
    color: #f5f5f5;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ==========================
   HEADER & NAVIGATION
========================== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #111;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

header .logo span {
    font-size: 24px;
    font-weight: bold;
    font-style: italic;
    color: #ff6600;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

header nav ul li a {
    color: #f5f5f5;
    font-weight: 600;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #ff6600;
}

/* ==========================
   HERO SECTION & SLIDESHOW
========================== */
.hero {
    padding: 40px 50px 20px 50px;
}

.hero h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ff6600;
    text-shadow: 2px 2px 8px #000;
}

/* Slideshow container */
.slideshow-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 50px;
}

/* Slides wrapper */
.slides {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.slides::-webkit-scrollbar {
    height: 12px;
}

.slides::-webkit-scrollbar-thumb {
    background-color: #ff6600;
    border-radius: 10px;
}

/* Individual slide */
.slides a img {
    width: 300px;
    height: 170px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.slides a img:hover {
    transform: scale(1.05);
}

/* Arrows */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    color: #fff;
    font-weight: bold;
    font-size: 30px;
    background-color: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.prev:hover, .next:hover {
    background-color: rgba(255,102,0,0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* ==========================
   MOVIE DETAILS
========================== */
.show-details {
    padding: 20px 50px;
    background-color: #1a1a1a;
    border-radius: 12px;
    margin-bottom: 40px;
}

.show-details p {
    margin-bottom: 10px;
    font-size: 18px;
}

.show-details .synopsis {
    margin-top: 15px;
    font-style: italic;
    color: #ccc;
}

/* ==========================
   WATCH NOW BUTTONS
========================== */
.watch-now {
    padding: 30px 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.watch-now h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #ff6600;
}

.watch-buttons {
    display: flex;
    gap: 20px;
}

.watch-buttons .btn {
    padding: 12px 25px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.watch-buttons .btn:hover {
    transform: scale(1.05);
}

.btn.main-site {
    background-color: #ff6600;
    color: #111;
}

.btn.youtube {
    background-color: #ff0000;
    color: #fff;
}

.btn.youtube img {
    width: 24px;
    height: 24px;
}

/* ==========================
   STORYLINE
========================== */
.storyline {
    padding: 30px 50px;
    background-color: #1a1a1a;
    border-radius: 12px;
    margin-bottom: 40px;
}

.storyline h2 {
    font-size: 28px;
    color: #ff6600;
    margin-bottom: 15px;
}

.storyline p {
    font-size: 18px;
    color: #ccc;
    line-height: 1.8;
}

/* ==========================
   OTHER LINKS
========================== */
.other-links {
    padding: 30px 50px;
    margin-bottom: 40px;
}

.other-links h2 {
    font-size: 28px;
    color: #ff6600;
    margin-bottom: 15px;
}

.external-links {
    display: flex;
    gap: 20px;
}

.external-links a img {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

.external-links a img:hover {
    transform: scale(1.1);
}

/* ==========================
   NEWS LINK
========================== */
.news-link {
    padding: 20px 50px;
    margin-bottom: 50px;
}

.news-link .btn.news {
    background-color: #ff6600;
    color: #111;
    padding: 12px 25px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.news-link .btn.news:hover {
    transform: scale(1.05);
}

/* ==========================
   FOOTER
========================== */
footer {
    background-color: #111;
    padding: 20px 50px;
    text-align: center;
    color: #888;
    font-size: 14px;
}

/* ==========================
   RESPONSIVE DESIGN
========================== */
@media (max-width: 1024px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .watch-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .slides a img {
        width: 250px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    main {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .slides a img {
        width: 200px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .slides a img {
        width: 150px;
        height: 90px;
    }

    .watch-buttons .btn {
        font-size: 16px;
        padding: 10px 18px;
    }

    .show-details p, .storyline p {
        font-size: 16px;
    }
}