/* Signup Page Polishing */
body.signup-bg {
    min-height: 100vh;
    background: linear-gradient(135deg, #4456a6 0%, #6e7fdc 100%);
    display: flex;
    flex-direction: column;
}
.signup-outer {
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}
.signup-main {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(68,86,166,0.13);
    padding: 40px 32px 32px 32px;
    max-width: 420px;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.signup-hero {
    text-align: center;
    margin-bottom: 28px;
}
.signup-hero h1 {
    font-size: 2.1rem;
    margin-bottom: 10px;
    color: #4456a6;
}
.signup-hero p {
    color: #333;
    font-size: 1.08rem;
}
.signup-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.signup-form label {
    font-weight: bold;
    margin-bottom: 4px;
    color: #222;
}
.signup-form input[type="text"],
.signup-form input[type="email"] {
    padding: 12px;
    border: 1px solid #bfcfff;
    border-radius: 7px;
    font-size: 1rem;
    background: #f5f7fa;
    margin-bottom: 2px;
}
.signup-form input[type="text"]:focus,
.signup-form input[type="email"]:focus {
    outline: none;
    border-color: #4456a6;
}
.signup-consent {
    font-weight: normal;
    font-size: 0.98rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 2px;
    margin-bottom: 2px;
}
.signup-consent input[type="checkbox"] {
    accent-color: #4456a6;
    width: 18px;
    height: 18px;
}
.signup-btn {
    background: #4456a6;
    color: #fff;
    padding: 14px 0;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s;
    width: 100%;
    box-shadow: 0 2px 8px rgba(68,86,166,0.08);
}
.signup-btn:hover {
    background: #1976d2;
}
#site-footer {
    flex-shrink: 0;
}
@media (max-width: 600px) {
    .signup-main {
        padding: 24px 8px 18px 8px;
        max-width: 98vw;
    }
}
/* Signup Form Styles */
.signup-main {
    max-width: 480px;
    margin: 48px auto 0 auto;
    padding: 0 20px 40px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.signup-hero {
    text-align: center;
    margin-bottom: 32px;
}
.signup-hero h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}
.signup-hero p {
    color: #333;
    font-size: 1.1rem;
}
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.signup-form label {
    font-weight: bold;
    margin-bottom: 4px;
}
.signup-form input[type="text"],
.signup-form input[type="email"],
.signup-form select {
    padding: 10px;
    border: 1px solid #bfcfff;
    border-radius: 6px;
    font-size: 1rem;
    background: #f5f7fa;
}
.signup-form input[type="text"]:focus,
.signup-form input[type="email"]:focus,
.signup-form select:focus {
    outline: none;
    border-color: #4456a6;
}
.signup-consent {
    font-weight: normal;
    font-size: 0.98rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.signup-btn {
    background: #4456a6;
    color: #fff;
    padding: 12px 0;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s;
}
.signup-btn:hover {
    background: #1976d2;
}
/* Contact Directory Styles */
.contact-directory {
    max-width: 900px;
    margin: 40px auto 0 auto;
    padding: 0 20px 40px 20px;
}
.contact-hero {
    text-align: center;
    margin-bottom: 36px;
}
.contact-hero-logo {
    width: 300px;
    margin-bottom: 18px;
}
.contact-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}
.contact-hero p {
    color: #333;
    font-size: 1.1rem;
}
.contact-options {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
}
.contact-option {
    background: #f5f7fa;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    width: 340px;
    min-height: 160px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #222;
    transition: box-shadow 0.2s, transform 0.2s;
    padding: 18px 18px 18px 0;
    position: relative;
}
.contact-option:hover {
    box-shadow: 0 6px 24px rgba(68,86,166,0.13);
    transform: translateY(-2px) scale(1.02);
}
.contact-option-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #dbe6ff;
    margin: 0 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
}
.contact-option-img.user { background: url('images/contact/user.svg') center/60% no-repeat, #dbe6ff; }
.contact-option-img.actor { background: url('images/contact/actor.svg') center/60% no-repeat, #ffe6e6; }
.contact-option-img.editor { background: url('images/contact/editor.svg') center/60% no-repeat, #e6ffe6; }
.contact-option-img.sponsor { background: url('images/contact/sponsor.svg') center/60% no-repeat, #fffbe6; }
.contact-option-img.press { background: url('images/contact/press.svg') center/60% no-repeat, #e6f0ff; }
.contact-option-content h2 {
    font-size: 1.25rem;
    margin-bottom: 6px;
}
.contact-option-content p {
    color: #555;
    font-size: 1rem;
}
@media (max-width: 900px) {
    .contact-options {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .contact-option {
        width: 100%;
        min-width: 0;
        padding: 18px 10px 18px 0;
    }
}
/* Fantastic Four Feature Styles */
.feature-banner {
    margin-left: -10px;
    margin-right: -10px;
    width: 100%;
    background: #0a1a2f;
    position: relative;
    text-align: center;
    padding-bottom: 24px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

.feature-banner-img {
    width: 1000px;
    height: auto;
    margin: 0 auto;
    display: block;
}
.feature-banner-btn-wrap {
    margin-top: -40px;
    text-align: center;
}
.feature-banner-btn {
    background: #1976d2;
    color: #fff;
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background 0.2s;
    display: inline-block;
}
.feature-banner-btn:hover {
    background: #0d47a1;
}
.feature-main {
    max-width: 1100px;
    margin: 40px auto 0 auto;
    padding: 0 20px 40px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.feature-main-content {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 32px;
}
.feature-main-poster img {
    width: 320px;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
}
.feature-main-info {
    flex: 1 1 320px;
    min-width: 260px;
    text-align: left;
}
.feature-main-info h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}
.feature-main-meta {
    color: #1976d2;
    font-size: 1.1rem;
    margin-bottom: 18px;
}
.feature-main-desc {
    font-size: 1.08rem;
    color: #222;
    margin-bottom: 18px;
}
.feature-main-social a {
    display: inline-block;
    margin-right: 10px;
}
.feature-main-social img {
    width: 28px;
    height: 28px;
    vertical-align: middle;
}
.feature-main-credits {
    font-size: 0.98rem;
    color: #444;
    margin-top: 18px;
}
.feature-main-rating {
    text-align: center;
    margin: 40px 0 24px 0;
}
.feature-main-rating h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.feature-rating-badge {
    width: 80px;
    margin: 0 10px;
    vertical-align: middle;
}
.feature-main-videos {
    margin-top: 32px;
}
.feature-main-videos h3 {
    font-size: 1.2rem;
    margin-bottom: 18px;
}
.feature-videos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}
.feature-video {
    width: 280px;
    background: #f5f5f5;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
    padding: 12px 12px 18px 12px;
    text-align: center;
}
.feature-video img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 8px;
}
.feature-video-title {
    font-size: 1rem;
    color: #222;
}
@media (max-width: 900px) {
    .feature-main-content {
        flex-direction: column;
        align-items: center;
    }
    .feature-main-info {
        text-align: center;
    }
}
/* Footer Styles */

footer {
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: -10px;
}

#site-footer {
    background: #4456a6;
    color: #fff;
    padding: 40px 0 20px 0;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    margin-top: 60px;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-bottom: 18px;
}
.footer-links a {
    color: #bfcfff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}
.footer-legal {
    font-size: 13px;
    color: #aaa;
}
@media (max-width: 700px) {
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
    #site-footer {
        padding: 30px 0 15px 0;
    }
}
#navbar {
    background-color: #4456a6;
    padding: 5px;
    margin-top: -10px;
    margin-left: -10px;
    margin-right: -8px;
    height: 60px;
    position: relative; 
    z-index: 1000;
}

#navlogo {
    height: 60px;
    float: inline-start;
    margin-right: 10px;
}

#navlist {
    margin-top: 5px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: visible;
}

nav li {
    display: inline-block;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    position: relative;
}

nav li a {
    display: block;
    text-decoration: none;
    text-align: center;
    padding: 14px 30px;
    font-size: 15px;
    color: #ffffff;
}

nav li a:hover {
    color: rgb(175, 175, 255);
}

#topad {
    margin-left: -10px;
    margin-right: -10px;
    width: 1523px;
    height: 650px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    zoom: -100%;
}

#topadimg {
    width: 1523px;
    height: 650px;
    flex-shrink: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

#topadimg:hover {
    object-fit: cover;
    transform: scale(1.05);
}

#adbuttons {
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: -170px;
    margin-left: -750px;
    position: absolute;
    z-index: 2;
}

#topadbutton {
    margin-top: 20px;
    display: block;
    text-decoration: none;
    text-align: center;
    padding: 14px 30px;
    font-size: 15px;
    background-color: white;
    transition: transform 0.3s ease;
    border-radius: 30px;
    font-weight: bold;
}

#topadbutton a {
    text-decoration: none;
    color: rgb(0, 0, 0);
}

#topadbutton:hover {
    background-color: rgb(203, 203, 203);
    color: black;
}

#topadbutton2 {
    margin-top: 5px;
    display: block;
    text-decoration: none;
    text-align: center;
    padding: 14px 30px;
    font-size: 15px;
    outline-style: solid;
    outline-width: 2px;
    outline-color: white;
    transition: transform 0.3s ease;
    border-radius: 30px;
    font-weight: bold;
}

#topadbutton2 a {
    text-decoration: none;
    color: rgb(255, 255, 255);
}

#topadbutton2:hover {
    background-color: rgb(203, 203, 203);
    outline-width: 0px;
}

.dropdown-parent {
    position: relative;
}

.dropdown {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    z-index: 9999;
    top: 100%;
    left: 0;
    border-radius: 0 0 5px 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.dropdown li {
    display: block;
    text-align: left;
}

.dropdown li a {
    padding: 12px 16px;
    display: block;
    color: #000000;
    font-size: 14px;
}

.dropdown li a:hover {
    color: white;
    background-color: #4456a6;
}

.dropdown-parent:hover .dropdown {
    display: block;
}

#recommendeddiv {
    background-color: rgb(241, 241, 241);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 0;
    width: 100%;
    margin-left: -10px;
    margin-right: -10px;
    padding-right: 18px;
    margin-bottom: -33px;
}

.recommendedone {
    background-color: white;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    text-decoration: none;
    color: black;
    padding-bottom: 40px;
    display: inline-block;
    width: auto;
    cursor: pointer;
}

.recimg {
    width: 300px;
    height: 300px;
}

.rectitle {
    margin: 15px 0 10px;
    font-size: 16px;
}

.recdesc {
    margin: 5px 0;
    font-size: 14px;
}

.reclink {
    margin-top: 10px;
    font-weight: bold;
    color: black;
    text-decoration: none;
}

.reclink a {
    text-decoration: none;
}

.reclink a:visited {
    text-decoration: none;
}

#recimg {
    width: 300px;
    height: 300px;
    flex-shrink: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

#rectitle {
    font-size: large;
}

#recdesc {
    position: relative;
    top: -15px;
    margin: 20px;
}

#reclink {
    font-weight: bold;
}

#exploremore {
    background-color: #4456a6;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    padding: 50px 0;
    width: 100%;
    margin-left: -10px;
    margin-right: -10px;
    padding-right: 18px;
}

#exploremoretitle {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 32px;
  margin-bottom: -20px;
  color: white;
  text-align: center;
  background-color: #4456a6;
  margin-left: -10px;
  margin-right: -8px;
  padding-top: 30px;
}

#newreleasestitle {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 32px;
  color: black;
  text-align: center;
  background-color: #ffffff;
  margin-left: -10px;
  margin-right: -8px;
  padding-top: 30px;
}

.newreleasesimg {
    width: 250px;
}

#newreleases {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0%;
    right: auto;
    top: 0px;
    opacity: 1;
    transition-property: transform, visibility;
    transition-duration: 0ms, 0ms;
    transition-delay: 0ms, 0ms;
    visibility: visible;
    transform: translate3d(0%, 0px, 0px);
}

.exploreone {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    text-decoration: none;
    color: white;
    padding-bottom: 40px;
    display: inline-block;
    width: auto;
    cursor: pointer;
    padding-left: 10px;
    padding-right: 10px;
}

.expimg {
    width: 450px;
    height: 300px;
    object-fit: cover;
    padding-bottom: 20px;
}

.exptitle {
    margin: 15px 0 10px;
    font-size: 16px;
    font-size: large;
}

.expdesc {
    margin: 5px 0;
    font-size: 14px;
    position: relative;
    top: -15px;
    margin: 20px;
}

.explink {
        margin-top: 10px;
        font-weight: bold;
        color: #fff;
        text-decoration: underline;
        cursor: pointer;
}
/* Mobile Responsive */
@media (max-width: 900px) {
    #navbar {
        flex-direction: column;
        height: auto;
        padding: 10px;
    }
    #navlogo {
        margin-bottom: 10px;
    }
    #navlist {
        flex-direction: column;
        gap: 0;
    }
    #topad {
        height: 220px;
    }
    .recimg, .expimg {
        max-width: 180px;
        height: 100px;
    }
    .recommendedone, .exploreone {
        width: 90vw;
        max-width: 320px;
        padding: 10px 5px 20px 5px;
    }
}

h2 { 
    margin-bottom: 15px; 
} 

.slider-container { 
    position: relative; 
    display: flex; 
    align-items: center; 
} 

.movie-list { 
    display: flex; 
    overflow-x: auto; 
    scroll-behavior: smooth; 
    gap: 15px; 
    padding: 10px; 
    scrollbar-width: none; 
} 

.movie-list::-webkit-scrollbar { 
    display: none; 
} 

.movie { 
    flex: 0 0 auto; 
    width: 200px; 
    border-radius: 10px; 
    overflow: hidden; 
    transition: transform 0.3s ease; 
} 

.movie img { 
    width: 100%; 
    height: auto; 
    display: block; 
    border-radius: 10px; 
    cursor: pointer; 
    transition: transform 0.3s ease; 
} 

.movie:hover img { 
    transform: scale(1.05); 
} 

.scroll-btn { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    background: white; 
    border: none; 
    border-radius: 50%; 
    width: 40px; 
    height: 40px; 
    cursor: pointer; 
    box-shadow: 0 2px 6px rgba(0,0,0,0.3); 
    transition: background 0.2s; 
} 

.scroll-btn:hover { 
    background: #ddd; 
} 

.scroll-left { 
    left: -9px; 
} 

.scroll-right { 
    right: -9px; 
}