

/*====================================================================
  Template Name   : Enoflix
  Description     : Movies, TV Shows And Video
  Author          : EnoFlix Inc.
  Version         : 1.0
======================================================================*/

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');


/*====================================================================
  1. enoflix-bellstream VARIABLES
======================================================================*/
:root {
  /* Typography */
  --body-font: 'Ubuntu', sans-serif;

  /* Base Colors */
  --body-bg: #00091c;
  --body-text-color: #757F95;
  --heading-color: #E8EAED;

  /* Brand Colors */
  --enoflix-bellstream-color: #0085ed;
  --enoflix-bellstream-color2: #ffa700;

  /* Background Colors */
  --enoflix-bellstream-bg: #0A0D14;
  --enoflix-bellstream-bg2: #131722;
  --enoflix-bellstream-bg-light: #131722;

  /* UI Colors */
  --color-white: #ffffff;
  --color-dark: #0A0D14;

  /* Border Colors */
  --border-info-color: rgba(117, 127, 149, 0.25);
  --border-white-color: rgba(255, 255, 255, 0.08);

  /* Shadows */
  --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  --box-shadow2: 0 1px 6px 0 rgba(0, 0, 0, 0.85);

  /* Transitions */
  --transition: all 0.5s ease-in-out;
  --transition2: all 0.3s ease-in-out;

  /* Footer */
  --footer-bg: #030f2b;
  --footer-bg2: #001236;
  --footer-text-color: #F5FAFF;

  /* Media / Player */
  --enoplayer-color-main: #ffa700;
}


/*====================================================================
  2. LIGHT MODE OVERRIDES
======================================================================*/
.enoflix-bellstream-mode-variables {
  --body-bg: #ffffff;
  --heading-color: #0A0D14;

  --enoflix-bellstream-bg: #ffffff;
  --enoflix-bellstream-bg2: #ffffff;
  --enoflix-bellstream-bg-light: #f9f9f9;

  --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);

  --footer-bg: #f9f9f9;
  --footer-bg2: #f3f3f3;
  --footer-text-color: #757F95;
}


/*====================================================================
  3. RESET & GLOBAL
======================================================================*/
html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

* {
  scroll-behavior: inherit !important;
}

html,
body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  background: var(--body-bg);
  color: var(--body-text-color);
  font-family: var(--body-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
}


/*====================================================================
  4. TYPOGRAPHY & ELEMENTS
======================================================================*/
a {
  display: inline-block;
  color: var(--color-dark);
  text-decoration: none;
  transition: all 0.3s ease-out;
}

a:hover,
a:focus,
a:active {
  outline: none;
  color: var(--enoflix-bellstream-color);
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

p {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  transition: all 0.3s ease-out;
}

label {
  color: #999;
  cursor: pointer;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--heading-color);
  font-family: var(--body-font);
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: 40px; }
h2 { font-size: 35px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

::selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}

::placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}


/*====================================================================
  5. UTILITY CLASSES
======================================================================*/
.ovrflow-hidden {
  overflow: hidden;
}

.position-relative {
  position: relative;
  z-index: 1;
}

.text-right {
  text-align: right;
}

.space-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.c-pd {
  padding: 0 7rem;
}

.s-pd {
  padding: 0 12rem;
}

.h-100 {
  height: 100%;
}

.h-100vh {
  height: 100vh;
}

.bg {
  background: var(--enoflix-bellstream-bg-light);
}


/*====================================================================
  6. PADDING UTILITIES
======================================================================*/
.pt-0   { padding-top: 0; }
.pt-10  { padding-top: 10px; }
.pt-20  { padding-top: 20px; }
.pt-30  { padding-top: 30px; }
.pt-40  { padding-top: 40px; }
.pt-50  { padding-top: 50px; }
.pt-60  { padding-top: 60px; }
.pt-70  { padding-top: 70px; }
.pt-80  { padding-top: 80px; }
.pt-90  { padding-top: 90px; }
.pt-100 { padding-top: 100px; }
.pt-110 { padding-top: 110px; }
.pt-120 { padding-top: 120px; }

.pb-0   { padding-bottom: 0; }
.pb-10  { padding-bottom: 10px; }
.pb-20  { padding-bottom: 20px; }
.pb-30  { padding-bottom: 30px; }
.pb-40  { padding-bottom: 40px; }
.pb-50  { padding-bottom: 50px; }
.pb-60  { padding-bottom: 60px; }
.pb-70  { padding-bottom: 70px; }
.pb-80  { padding-bottom: 80px; }
.pb-90  { padding-bottom: 90px; }
.pb-100 { padding-bottom: 100px; }
.pb-110 { padding-bottom: 110px; }
.pb-120 { padding-bottom: 120px; }

.py-80  { padding: 80px 0; }
.py-90  { padding: 90px 0; }
.py-100 { padding: 100px 0; }
.py-110 { padding: 110px 0; }
.py-120 { padding: 120px 0; }


/*====================================================================
  7. MARGIN UTILITIES
======================================================================*/
.mt-0   { margin-top: 0; }
.mt-10  { margin-top: 10px; }
.mt-20  { margin-top: 20px; }
.mt-30  { margin-top: 30px; }
.mt-40  { margin-top: 40px; }
.mt-50  { margin-top: 50px; }
.mt-60  { margin-top: 60px; }
.mt-70  { margin-top: 70px; }
.mt-80  { margin-top: 80px; }
.mt-90  { margin-top: 90px; }
.mt-100 { margin-top: 100px; }
.mt-110 { margin-top: 110px; }
.mt-120 { margin-top: 120px; }

.mb-0   { margin-bottom: 0; }
.mb-10  { margin-bottom: 10px; }
.mb-20  { margin-bottom: 20px; }
.mb-30  { margin-bottom: 30px; }
.mb-40  { margin-bottom: 40px; }
.mb-50  { margin-bottom: 50px; }
.mb-60  { margin-bottom: 60px; }
.mb-70  { margin-bottom: 70px; }
.mb-80  { margin-bottom: 80px; }
.mb-90  { margin-bottom: 90px; }
.mb-100 { margin-bottom: 100px; }
.mb-110 { margin-bottom: 110px; }
.mb-120 { margin-bottom: 120px; }

.my-80  { margin: 80px 0; }
.my-90  { margin: 90px 0; }
.my-100 { margin: 100px 0; }
.my-110 { margin: 110px 0; }
.my-120 { margin: 120px 0; }


.enoflix-bellstream-btn {
  position: relative;
  font-size: 14px;
  color: var(--color-white);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 10px 15px;
  border-radius: 15px;
  border: none;
  background: var(--enoflix-bellstream-color);
  cursor: pointer;
  overflow: hidden;
  vertical-align: middle;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  z-index: 1;
}

.enoflix-bellstream-btn::before {
  content: "";
  position: absolute;
  height: 300px;
  width: 300px;
  background: var(--enoflix-bellstream-color2);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.enoflix-bellstream-btn:hover {
  color: var(--color-white);
}

.enoflix-bellstream-btn:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.enoflix-bellstream-btn2{
  background: var(--enoflix-bellstream-color2);
}

.enoflix-bellstream-btn2::before{
  background: var(--enoflix-bellstream-color);
}

.enoflix-bellstream-btn i{
  margin-left: 5px;
}

.enoflix-bellstream-btn span{
  margin-right: 5px;
}


/* ============================
   ENOFLIX COMING SOON
=============================== */

.logo-container {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  width: 100%;
  padding: 0 16px;
  margin: 0;
  pointer-events: none;
}

.coming-soon-logo {
  width: clamp(120px, 12vw, 220px);
  height: auto;
  display: block;
  margin: 0 auto;
}

.coming-soon {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 170px 16px 80px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}

.coming-soon::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 7, 18, 0.78) 0%, rgba(2, 7, 18, 0.72) 20%, rgba(2, 7, 18, 0.90) 65%, rgba(2, 7, 18, 0.96) 100%);
  z-index: 1;
}

.coming-soon-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(10, 13, 20, 0.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.coming-soon-content h1 {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
  background: linear-gradient(90deg, #ffffff 0%, #8ab8ff 45%, #ffa700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.coming-soon-content p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

.break-title {
  white-space: nowrap;
}

.countdown-wrap {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  flex-wrap: wrap;
}

.countdown-item {
  width: 132px;
  min-width: 132px;
  padding: 20px 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  text-align: center;
  animation: none !important;
  transform: none !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.countdown-item:hover {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.countdown-item h2 {
  margin: 0 0 6px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
  animation: none !important;
  transform: none !important;
  transition: none !important;
  font-variant-numeric: tabular-nums;
}

.countdown-item h5 {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  animation: none !important;
  transform: none !important;
  transition: none !important;
}

.coming-soon .newsletter-form {
  margin-top: 30px;
}

.coming-soon .newsletter-form form {
  width: 100%;
}

.coming-soon .newsletter-form .form-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.coming-soon .newsletter-form .form-control {
  width: 100%;
  max-width: 460px;
  height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  color: var(--color-white);
  font-size: 1rem;
  box-shadow: none;
}

.coming-soon .newsletter-form .form-control:focus {
  border-color: rgba(31, 126, 255, 0.65);
  background: rgba(255,255,255,0.1);
}

.coming-soon .newsletter-form .form-control::placeholder {
  color: rgba(255,255,255,0.55);
}

.coming-soon .newsletter-form .enoflix-bellstream-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 54px;
  padding: 0 24px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(90deg, var(--enoflix-bellstream-color), var(--enoflix-bellstream-color2));
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  box-shadow: 0 14px 32px rgba(31, 126, 255, 0.24);
}

.coming-soon .newsletter-form .enoflix-bellstream-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(31, 126, 255, 0.32);
  opacity: 0.96;
}

.coming-social {
  margin-top: 28px;
  text-align: center;
}

.coming-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin: 5px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.coming-social a:hover {
  transform: translateY(-3px);
  background: linear-gradient(90deg, var(--enoflix-bellstream-color), var(--enoflix-bellstream-color2));
  border-color: transparent;
}

@media (max-width: 991px) {
  .coming-soon {
    padding-top: 120px;
    padding-bottom: 70px;
  }

  .coming-soon-content {
    padding: 32px 22px;
  }

  .countdown-item {
    min-width: 110px;
  }
}

@media (max-width: 767px) {
  .coming-soon-content p {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .countdown-wrap {
    gap: 14px;
  }

  .countdown-item {
    min-width: 96px;
    padding: 16px 14px;
  }

  .countdown-item h2 {
    font-size: 1.7rem;
  }

  .countdown-item h5 {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }
}

@media (max-width: 575px) {
  .logo-container {
    top: 16px;
    padding: 0 12px;
  }

  .coming-soon {
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .coming-soon-content {
    padding: 26px 16px;
    border-radius: 20px;
  }

  .coming-soon-content h1 {
    letter-spacing: 0.03em;
  }

  .coming-soon-content p {
    font-size: 0.9rem;
  }

  .break-title {
    white-space: normal;
  }

  .countdown-wrap {
    gap: 12px;
  }

  .countdown-item {
    min-width: calc(50% - 6px);
    padding: 15px 12px;
    border-radius: 16px;
  }

  .countdown-item h2 {
    font-size: 1.45rem;
  }

  .countdown-item h5 {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .coming-soon .newsletter-form .form-control,
  .coming-soon .newsletter-form .enoflix-bellstream-btn {
    width: 100%;
    max-width: 100%;
  }
}


.coming-links {
  margin-top: 22px;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
}

.coming-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: 0.3s ease;
}

.coming-links a:hover {
  color: #ffa700;
}

.coming-links span {
  display: inline-block;
  margin: 0 10px;
  color: rgba(255,255,255,0.35);
}

/* =========================================================
   ENOFLIX SIMPLE INNER PAGES
========================================================= */

.page-simple {
  background: var(--body-bg);
}

.simple-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 13, 20, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.simple-header .navbar {
  padding: 18px 0;
}

.simple-header .navbar-brand img {
  width: 150px;
  height: auto;
}

.simple-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.simple-nav a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.simple-nav a:hover,
.simple-nav a.active {
  color: var(--enoflix-bellstream-color2);
}

.simple-hero {
  position: relative;
  padding: 90px 0 60px;
  background:
    linear-gradient(180deg, rgba(2, 7, 18, 0.74) 0%, rgba(2, 7, 18, 0.92) 100%),
    url('../img/breadcrumb/01.jpg') center/cover no-repeat;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.simple-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--color-white);
  margin-bottom: 10px;
}

.simple-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
}

.simple-breadcrumb a {
  color: rgba(255,255,255,0.85);
}

.simple-breadcrumb a:hover {
  color: var(--enoflix-bellstream-color2);
}

.simple-section {
  padding: 80px 0;
}

.simple-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 34px 28px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.26);
}

.simple-card + .simple-card {
  margin-top: 22px;
}

.simple-card h2,
.simple-card h3 {
  color: var(--color-white);
  margin-bottom: 14px;
}

.simple-card p,
.simple-card li {
  color: rgba(255,255,255,0.78);
  line-height: 1.85;
}

.simple-card ul {
  padding-left: 18px;
  margin-top: 12px;
}

.simple-card ul li {
  list-style: disc;
  margin-bottom: 8px;
}

.simple-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  background: #070b12;
}

.simple-footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.simple-footer p {
  margin: 0;
  color: rgba(255,255,255,0.65);
}

.simple-footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.simple-footer-links a {
  color: rgba(255,255,255,0.8);
}

.simple-footer-links a:hover {
  color: var(--enoflix-bellstream-color2);
}

.error-box {
  text-align: center;
  padding: 10px 0;
}

.error-code {
  font-size: clamp(5rem, 12vw, 9rem);
  line-height: 1;
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #ffffff, #8ab8ff, #ffa700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.error-box h2 {
  color: #fff;
  margin-bottom: 12px;
}

.error-box p {
  max-width: 560px;
  margin: 0 auto 24px;
  color: rgba(255,255,255,0.78);
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.enoflix-bellstream-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  background: transparent;
  transition: 0.3s ease;
}

.enoflix-bellstream-btn-outline:hover {
  border-color: var(--enoflix-bellstream-color2);
  color: var(--enoflix-bellstream-color2);
}

@media (max-width: 767px) {
  .simple-hero {
    padding: 70px 0 45px;
  }

  .simple-section {
    padding: 60px 0;
  }

  .simple-card {
    padding: 24px 18px;
    border-radius: 18px;
  }
}


