* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0b0f1a;
    color: #e6e6e6;
    font-family: 'orbitorn', sans-serif;
    text-align: center;
    line-height: 1.6;
    padding-top: 80px;
}  

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(11, 15, 26, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #1c1f2b;
    z-index: 1000;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 4px;
    color: #7a0f0f;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    color: #b3b3b3;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #991b1b;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero{
    padding: 100px 0;
    background: radial-gradient(circle at center, #11182a 0%, #0b0f1a 70%);
}

.theater-title {
    font-family: 'Bebas Neue' , sans-serif;
    font-size: 85px;
    letter-spacing: 8px;
    margin-bottom: 20px;
    color: #7a0f0f;
    transition: 0.3s ease;
}
.theater-title:hover {
    color: #991b1b;
    /* text-shadow: 0 0 15px #ff2e63; */
    transform: scale(1.04);
}
.ST {
    font-size: 42px;
    margin-bottom: 10px;
    color: #00bfff;
    letter-spacing: 3px;
    line-height: 1.2;
}
h3 {
    font-size: 18px;
    margin-bottom: 30px;
    color: #b3b3b3;
    letter-spacing: 2px;
    font-weight: 300;
}
.video-box {
    padding: 25px;
    width: 100%;
    border-radius: 15px;
    border: 3px solid #8b0000;
    background-color: #11182a;
    box-shadow:
    0 0 20px #ff2e63,
    0 0 40px #00bfff;
    transition: 0.4s ease;
}
.video-box:hover {
    box-shadow:
        0 0 30px #ff2e63,
        0 0 60px #00bfff;
}
.video-box video {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
}

.characters {
    padding: 100px 0;
}
.section-title {
    font-size: 32px;
    margin-bottom: 50px;
    color: #ff2e63;
    letter-spacing: 3px;
    text-shadow: 0 0 10px #ff2e63;
}
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
    gap: 30px;
}

.card {
    background-color: #11182a;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #8b0000;
    box-shadow: 0 0 15px #00bfff;
    transition: 0.4s ease;
    padding-bottom: 20px;
}
.card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 0 25px #ff2e63,
        0 0 50px #00bfff;
}

.card h3 {
    margin-top: 15px;
    font-size: 20px;
    color: #ff2e63;
}

.card p {
    padding: 0 15px;
    font-size: 14px;
    color: #cccccc;
}
.story {
    padding: 80px 0;
    background: linear-gradient(to bottom, #0b0f1a, #11182a);
}

.story-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background-color: #11182a;
    border-left: 4px solid #ff2e63;
    border-radius: 10px;
    box-shadow: 0 0 20px #8b0000;
}

.story-box p {
    /* font-size: 20px;
    color: #dddddd; */
    font-size: 20px;
    color: #dddddd;
    line-height: 1.6;
    margin-bottom: 20px;
}
.story-box:hover {
    box-shadow:
     0 0 30px #ff2e63,
    0 0 60px #d0f3ff;
}


.footer {
    padding: 20px;
    background-color: #070a12;
    border-top: 2px solid #ff2e63;
    font-size: 14px;
    letter-spacing: 2px;
    color: #aaaaaa;
}