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

body { 
  background: #000000; 
  color: #ffffff; 
  font-family: Arial, Helvetica, sans-serif; 
}


/* HERO */
.hero {
    background-image: url('rainbowstr.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    padding: 60px 20px 30px;
    position: relative;
}

.hero h1 {
    font-family: 'Monoton', cursive;
    font-size: 3.5rem;
    letter-spacing: 6px;
    color: #FF00AA;
    text-shadow:
        0 0 8px ;
}

.tagline {
    color: #001eff;
    text-shadow: 0 0 4px #001eff;
    margin-top: 10px;
}

/* CURRENTLY WATCHING */
.currently-watching {
    text-align: center;
    padding: 15px;
    background: #111;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.currently-watching span {
    color: #F5C518;
}


/* FONT COLORS */ 
.cinema h2, .reviews h2, .characters h2 {
    color: #9D00FF; /* neon purple */
    text-shadow:
        0 0 4px #9D00FF;
}



/* CINEMA */
.cinema {
    padding: 50px 40px;
}

.cinema h2 {
    margin-bottom: 30px;
}


.poster-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.movie {
    text-align: center;
}

.movie img {
    width: 200px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

/* STARS */
.stars {
    margin-top: 10px;
}

.star {
    font-size: 20px;
    cursor: pointer;
    color: #444;
}

.star.active{
  color: #F5C518;
}


/* REVIEWS */
.reviews {
    padding: 50px 40px 300px;
    background: #111;
}

.reviews {
    max-height: 350px;
    overflow-y: auto;
}

.reviews::-webkit-scrollbar {
    width: 8px;
}

.reviews::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

.review-card {
    background: #1a1a1a;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 6px;
}

/* CHARACTERS */
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.character-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
}

.character-carousel::-webkit-scrollbar {
    display: none; /* Chrome */
}

.character {
    min-width: 180px;
    flex: 0 0 auto;
    text-align: center;
}

.character img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.character img:hover {
    transform: scale(1.08);
}

.characters h2{
  margin-top: 30px;
}

.arrow {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.arrow:hover {
    background: rgba(255,255,255,0.3);
}