
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-thumb {
    background: red;
    border-radius: 10px;
}

body {
    font-family: Arial, sans-serif;
    background: black;
    color: white;
}


.navbar {
    width: 100%;
    background: #0d0d0d;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255,0,0,0.4);
}


.nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
        width: 115px;
    height: 65px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px red);
}

.nav-left h2 {
    font-size: 25px;
    color: white;
    letter-spacing: 1px;
    text-shadow: 0 0 10px red;
}


.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 17px;
    position: relative;
    transition: 0.3s ease;
}


.nav-links a:hover {
    color: red;
}


.nav-links a::after {
    content: "";
    width: 0%;
    height: 2px;
    background: red;
    position: absolute;
    left: 0;
    bottom: -4px;
    transition: 0.3s;
    box-shadow: 0 0 10px red;
}

.nav-links a:hover::after {
    width: 100%;
}


.random-text{
font-size: 40px;
padding-bottom: 2rem;
}

.banner {
    text-align: center;
    position: relative;
}
.banner img {
    width: 100%;
    opacity: 0.5;
}
.banner .title {
    position: absolute;
    top: 40%;
    width: 100%;
    font-size: 50px;
    color: red;
}

/* ABOUT SECTION */
.about-section {
    padding: 80px 40px;
    background: #0d0d0d;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* TEXT SIDE */
.about-text {
    flex: 1;
    min-width: 280px;
    animation: fadeIn 1.3s ease forwards;
}

.about-text h2 {
    font-size: 2.3rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 0 10px red;
}

.about-text p {
    font-size: 1rem;
    color: #d6d6d6;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-details p {
    color: #ff4d4d;
    font-weight: bold;
    margin: 5px 0;
}

/* IMAGE SIDE */
.about-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(255,0,0,0.4);
    transition: 0.3s;
}

.about-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px red;
}


@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}



.section {
    padding: 40px;
}
.info-box {
    background: #222;
    padding: 15px;
    margin-top: 10px;
}


.characters-container {
    display: flex;
    gap: 20px;
}
.card {
    background: #111;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    width: 180px;
    transition: .3s;
}
.card:hover {
    transform: scale(1.05);
    background: #222;
}
.card img {
    width: 100%;
    border-radius: 10px;
}



.episodes-section h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    text-shadow: 0 0 10px red;
}

.episodes-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.episode-card {
    background: #111;
    border-left: 3px solid red;
    padding: 20px;
    border-radius: 10px;
    width: 30%;
    min-width: 250px;
    transition: 0.3s;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255,0,0,0.3);
}

.episode-card:hover {
    transform: translateY(-5px);
    background: #1a1a1a;
    box-shadow: 0 0 15px red;
}

.epi-number {
    font-size: 2rem;
    color: red;
    font-weight: bold;
}



.merch-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px red;
}

.merch-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.merch-item {
    background: #111;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    width: 30%;
    min-width: 250px;
    transition: 0.3s;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255,0,0,0.3);
}

.merch-item:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 0 20px red;
    background: #1a1a1a;
}


.merch-img {
    height: 180px;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
    background-size: cover;
    background-position: center;
}

.img1 { background-image: url('images/hoodie.jpg'); }
.img2 { background-image: url('images/hellfire.jpg'); }
.img3 { background-image: url('images/elevenPoster.jpg'); }


