/* Ensure the page takes full height */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  scroll-behavior: smooth;
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
  background: linear-gradient(180deg, #0f0f0f 0%, #1c1c1c 100%);
  color: #f0f0f0;
  overflow-x: hidden; /* Prevent horizontal scrollbar */
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  background-blend-mode: overlay;
}

/* Flex container for the entire body */
body {
  display: flex;
  flex-direction: column;
  min-height: 100%; /* Ensure full page height */
}

/* Content area */
.main-content {
  flex: 1; /* Allow content to grow and push footer down */
}

/* Optional - smooth shadow overlay for the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);  /* Darker shadow for more contrast */
  pointer-events: none;
  z-index: -1;
}

/* Optional scrollbar styling for sleek dark theme */
body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-track {
  background: #111;
}
body::-webkit-scrollbar-thumb {
  background-color: #444;
  border-radius: 4px;
}

/* Media query for desktop: no scroll */
@media (min-width: 1024px) {
  html, body {
    overflow-y: hidden; /* Disable vertical scroll on large screens */
  }
}

/* Media query for mobile: allow scroll */
@media (max-width: 1023px) {
  html, body {
    overflow-y: auto; /* Enable vertical scroll on small screens */
  }
}


body.default {
    background-image: url('../images/mov/bg_default.jpg')
}

@media (max-width: 992px) {
    body.default {
        background-position:75%;
    }
}

body.movietv {
    background-image: url('../images/mov/bg_movietv.jpg')
}

@media (max-width: 992px) {
    body.movietv {
        background-position:75%
    }
}

/* ======= HEADER ======= */
header {
  position: relative;
  padding: 0.8rem 0;  /* Reduced padding for a more compact header */
  min-height: 80px;  /* Adjusted minimum height */
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);  /* Slightly softer shadow */
}

/* ======= HEADER TITLE ======= */
.header-title {
  background: linear-gradient(to right, rgba(10, 10, 10, 0.7), rgba(0, 0, 0, 0.3)),
               url('../images/mov-ban.jpg') no-repeat center center;
  padding: 0.4rem 1rem;  /* Adjusted padding for better balance */
  border-radius: 6px;
  text-align: center;
  max-width: 600px;  /* Reduced max-width for a more compact look */
  margin: 0 auto;
  backdrop-filter: blur(2px);
}

/* ======= MAIN TITLE ======= */
.main-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;  /* Default font size */
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 0.3rem;  /* Reduced margin */
}

/* Adjust font size for desktop and larger screens */
@media (min-width: 1024px) {
  .main-title {
    font-size: 1.5rem;  /* Smaller font size for larger screens */
  }
}


.main-title small {
  display: block;
  font-size: 1.2rem;  /* Smaller font size */
  font-weight: 400;
  color: #ccc;
  text-transform: none;
}




/* Default font size for smaller screens */
footer.main-footer .footer-left p {
  font-size: 0.5rem;  /* Reduced font size for small devices */
  color: #d4a00f;  /* Bright yellowish text */
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);  /* Sharper shadow for more emphasis */
}

/* Larger font size for desktops and larger screens */
@media (min-width: 1024px) {
  footer.main-footer .footer-left p {
    font-size: 0.6rem;  /* 50% reduced font size for desktops */
  }
}

/* Even larger font size for very large screens (e.g., wide monitors) */
@media (min-width: 1440px) {
  footer.main-footer .footer-left p {
    font-size: 0.65rem;  /* 50% reduced font size for large screens */
  }
}

/* Adjust font size for mobile devices */
@media (max-width: 768px) {  /* For tablets */
  footer.main-footer .footer-left p {
    font-size: 0.45rem;  /* Smaller font for tablets */
  }
}

@media (max-width: 480px) {  /* For small mobile screens */
  footer.main-footer .footer-left p {
    font-size: 0.4rem;  /* Smaller font size for small mobile screens */
  }
}



section {
  padding: 20px 0;
  color: #fff;
}



/* ======= BOX STYLING ======= */
.box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 20px;
  margin: 10px auto;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
  width: 90%;
  max-width: 600px;
  transition: all 0.3s ease;
}

.box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

.box-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-grow: 1;
  min-height: 0;
}


/* ======= TITLES ======= */
.trial-title,
.title,
.unltd-title {
  font-size: 2rem;
  color: #f8f9fa;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.trial-title-alt {
  color: #ffc107;
}

.title-wrap h2.title {
  font-size: 1.5rem;
  color: #ddd;
  margin-bottom: 15px;
  text-align: center;
}

/* Responsive Titles */
@media (max-width: 768px) {
  .trial-title,
  .title,
  .unltd-title {
    font-size: 1.7rem;
  }
  .title-wrap h2.title {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .trial-title,
  .title,
  .unltd-title {
    font-size: 1.5rem;
  }
  .title-wrap h2.title {
    font-size: 1.1rem;
  }
}


/* ======= FORM STYLING ======= */
form.needs-validation {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.form-group {
  margin-bottom: 15px;
  width: 100%;
}

/* Label Styling */
.form-group label {
  color: #fafaf2;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

/* Input Styling */
.form-control {
  background-color: #1e1e1e;
  border: 1px solid #444;
  color: #fff;
  border-radius: 6px;
  font-size: 1.2rem;
  width: 100%;
  height: 45px;
  padding: 0 10px;
  box-sizing: border-box;
  margin-top: 5px;
}

.form-control::placeholder {
  color: #aaa;
  font-size: 1.1rem;
}

/* Button Styling */
button.button {
  border-radius: 6px;
  background-color: #f0c674;
  border: none;
  color: #333;
  cursor: pointer;
}

button.button:hover {
  background-color: #e0a859;
}


/* ======= CTA BUTTON ======= */
.button {
  background: linear-gradient(135deg, #ffcc00, #ff9900);
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  color: #000;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.button:hover {
  background: linear-gradient(135deg, #ffdd33, #ffaa00);
}


/* ======= SHADE BACKGROUND ======= */
.shade {
  background: url('https://images.unsplash.com/photo-1524985069026-dd778a71c7b4?fit=crop&w=1200&q=80') center/cover no-repeat;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.shade::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1;
}

.shade .box-body {
  position: relative;
  z-index: 2;
}


/* ======= MEDIA QUERIES ======= */
@media (max-width: 768px) {
  .form-control {
    font-size: 1.1rem;
    height: 42px;
  }

  button.button,
  .button {
    font-size: 0.95rem;
    padding: 10px 18px;
  }

  .box {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .form-control {
    font-size: 1rem;
    height: 40px;
  }

  button.button,
  .button {
    font-size: 0.9rem;
    padding: 8px 16px;
  }

  .box {
    padding: 12px;
  }

  .form-group label {
    font-size: 1rem;
  }
}


/* ======= UNLIMITED HOLDER STYLING ======= */
.unltd-holder {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.unltd-price {
  font-family: 'Poppins', sans-serif;
  font-size: 6rem;
  font-weight: 600;
  line-height: 1.1;
  color: #ffc107;
  display: flex;
  align-items: center;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.unltd-price .currency {
  font-size: inherit;
  font-weight: inherit;
  margin-right: 3px;
}






/* ======= TITLE STYLING ======= */
.unltd-title {
  font-size: 2.5rem;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-left: 10%;
  max-width: 80%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .unltd-title {
    font-size: 2rem;
    margin-left: 5%;
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .unltd-title {
    font-size: 1.7rem;
    margin-left: 3%;
    text-align: center;
  }
}


/* ======= LIST STYLING ======= */
.unltd-details ul {
  list-style: none;
  padding: 10px;
  margin: 20px 0;
  max-width: 100%;
}

.unltd-details li {
  font-size: 1.6rem;
  letter-spacing: 1px;
  position: relative;
  padding-left: 50px;
  margin-left: 10%;
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  transition: all 0.3s ease;
  color: #fff;
  line-height: 1.4;
}

.unltd-details li:hover {
  transform: translateX(5px);
  background-color: rgba(255, 255, 255, 0.05); /* Optional hover effect */
}

.unltd-details li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background-image: url('../images/success.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .unltd-details li {
    font-size: 1.4rem;
    margin-left: 5%;
    padding-left: 45px;
  }
}

@media (max-width: 480px) {
  .unltd-details li {
    font-size: 1.2rem;
    margin-left: 3%;
    padding-left: 40px;
  }
}







/* ======= TEAM VS SECTION ======= */
.teams-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.teams-vs img {
  height: 80px; /* Increased image size */
  width: auto;
}

.teams-vs__vs {
  font-size: 1.5rem; /* Larger font size */
  color: #fff;
  padding: 0 10px;
  font-weight: bold;
}

/* ======= RESPONSIVE DESIGN ======= */

/* Tablet and smaller devices */
@media (max-width: 768px) {
  .box {
    padding: 20px;  /* Reduce padding for tablets */
    width: 90%;  /* Keep flexible width */
    max-width: 500px;  /* Smaller max width for tablets */
  }

  .trial-title, .title, .unltd-title {
    font-size: 1.7rem;  /* Slightly smaller for tablets */
  }

  .form-control {
    padding: 12px 16px;
  }

  .button {
    font-size: 1.1rem;
    padding: 12px;
  }

  .unltd-price {
    font-size: 2.5rem;
  }

  .unltd-title {
    font-size: 1.5rem;
  }
}

/* Mobile devices */
@media (max-width: 480px) {
  .box {
    padding: 15px;  /* Smaller padding for mobile */
    width: 90%;  /* Keep flexible width */
    max-width: 400px;  /* Smaller max width for mobile */
  }

  .trial-title, .title, .unltd-title {
    font-size: 1.5rem;  /* Further reduce font size for mobile */
  }

  .form-control {
    padding: 10px 12px; 
  }

  .button {
    font-size: 1rem;
    padding: 10px;
  }

  .unltd-price {
    font-size: 2.2rem;
  }

  .unltd-title {
    font-size: 1.4rem;
  }
}

/* ======= SHADOW OVERLAY WITH LIGHT BLUR ======= */
.shadow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.35); /* lebih ringan */
  backdrop-filter: blur(4px); /* blur ringan */
  -webkit-backdrop-filter: blur(4px);
  z-index: 999;
  display: none;
}

/* ======= POPUP CONTAINER ======= */
.popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.3); /* opsional */
  backdrop-filter: blur(2px);
-webkit-backdrop-filter: blur(2px);

}

/* ======= POPUP CONTENT BOX ======= */
.popup .content {
  background: #111;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 400px; /* Batasi lebar */
  margin: auto; /* pastikan tetap center */
  color: #fff;
  text-align: center;
}

/* ======= TITLES & TEXT ======= */
.verify-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  color: #fff;
}

.verify-subtitle,
.verify-label,
.verify-text,
.verify-or-text,
.verify-link {
  font-size: 0.95rem;
  color: #eee;
  margin-bottom: 1rem;
}

.verify-text.text-bold {
  font-weight: 600;
}

/* ======= FORM FIELD ======= */
.verify-form-phone {
  margin: 1rem 0;
  text-align: left;
}

.verify-label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.verify-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  background: rgba(255, 255, 255, 0.85);
  color: #000;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.verify-input:focus {
  border-color: #ffc107;
  outline: none;
}

/* ======= BUTTON STYLE ======= */
.verify-btn {
  display: inline-block;
  background: linear-gradient(to right, #ffc107, #ff9800);
  color: #000;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 0.5rem;
  margin-top: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
  transition: all 0.3s ease;
}

.verify-btn:hover {
  background: linear-gradient(to right, #ffca28, #ffb300);
  color: #fff;
}

/* ======= SUCCESS / DENIED ICON GLOW ======= */
.verify-process.success,
.verify-process.denied {
  display: block;
  width: 60px;
  height: 60px;
  margin: 1rem auto;
  background-size: contain;
  background-repeat: no-repeat;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
}

.verify-process.success {
  background-image: url('../images/success.png'); /* Ikon sukses */
}

.verify-process.denied {
  background-image: url('../images/denied.png'); /* Ikon error */
}


/* ======= LOADER ======= */
.verify-loader img {
  width: 100px;
  height: auto;
  display: block;
  margin: 2rem auto;
}

/* ======= RESPONSIVE MOBILE ======= */
@media (max-width: 480px) {
  .popup .content {
    padding: 1.5rem;
    width: 90%;
  }

  .verify-title {
    font-size: 1.4rem;
  }

  .verify-btn {
    width: 100%;
  }
}


/* ======= FOOTER STYLING ======= */
.main-footer {
    position: absolute;
    width: 100%;
    background: rgba(0,0,0,0.85);
    padding: 10px 0;
    bottom: 0
}

.main-footer__disclaimer >p {
    margin-bottom: 0;
    font-size: 11px;
    color: rgba(255,255,255,0.65)
}

.main-footer__disclaimer >p >a {
    margin-bottom: 0;
    font-size: 11px;
    color: rgba(255,255,255,0.65)
}

@media (max-width: 576px) {
    .main-footer__disclaimer >p {
        margin-bottom:1.5em
    }
}

.main-footer .lang-container {
    position: relative
}

.main-footer .lang_selector {
    font-size: 11px;
    padding: 0 10px;
    color: rgba(255,255,255,0.5)
}

.main-footer .lang_selector img {
    width: 18px;
    margin-right: 3px
}

/* ======= RESPONSIVE ADJUSTMENTS ======= */
@media (max-width: 768px) {
  /* For mobile view, footer will move above content */
  footer.main-footer {
    flex-direction: column;  /* Stack the footer items vertically */
    align-items: center;
    padding: 10px 15px;  /* Adjust padding to be more compact */
    position: relative;
    width: 100%;
  }

  .lang-container {
    justify-content: center;
    margin-bottom: 1rem;  /* Ensure language dropdown is above footer */
  }

  /* Main Title adjustment for mobile */
  .main-title {
    font-size: 1.2rem;
  }

  .unltd-price {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  /* For desktop and tablet, the footer will remain at the bottom */
  footer.main-footer {
    flex-direction: row;
    justify-content: space-between;  /* Keep the footer content aligned horizontally */
    padding: 0.5rem 1rem;
  }
}


/* ======= DROPDOWN ======= */
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.6rem;  /* Adjusted padding to a more moderate size */
  font-size: 0.7rem;  /* Moderate reduction in font size */
  color: #f0f0f0;  /* White text */
  border: 1px solid #8b7765;
  background-color: rgba(245, 245, 220, 0.1);  /* 90% transparent background */
  border-radius: 6px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.dropdown-toggle:hover {
  background-color: rgba(255, 0, 0, 0.3);  /* Transparent red hover effect */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);  /* Subtle shadow to highlight the dropdown toggle */
}

.dropdown-toggle img {
  width: 16px;  /* Slightly larger flag icon size */
  height: 12px;  /* Slightly larger flag icon height */
  object-fit: cover;
  border-radius: 3px;
}

/* ======= DROPDOWN ITEM ======= */
.dropdown-menu {
  background-color: rgba(245, 245, 220, 0.2);  /* Slightly less transparent dropdown menu */
  color: #f0f0f0;  /* White text */
  border-radius: 6px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  font-size: 0.7rem;  /* Moderate font size for items */
  backdrop-filter: blur(8px);  /* Apply blur effect to the background */
  -webkit-backdrop-filter: blur(8px);  /* For Safari support */
}

.dropdown-menu .dropdown-item {
  background-color: rgba(245, 245, 220, 0.1);  /* Transparent background for each item */
  color: #f0f0f0;  /* White text */
  padding: 0.4rem 0.8rem;  /* Adjusted padding to a more comfortable size */
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu .dropdown-item:hover {
  background-color: rgba(255, 0, 0, 0.3);  /* Transparent red hover effect */
  color: #f0f0f0;  /* Slightly darker white text when hovered */
}






@media (min-width: 992px) {
    .container {
        max-width:912px
    }

    .hd-icon {
        max-width: 100px
    }

    .small-text,label,.title-wrap .title {
        font-size: 12px
    }
}

@media (min-width: 1266px) {
    .container {
        max-width:1066px
    }

    .hd-icon {
        max-width: 100px
    }

    * {
        font-size: 88%
    }

    .main-title {
        font-size: 2rem
    }

    .small-text,label,.title-wrap .title {
        font-size: 12px
    }
}

@media (min-width: 1366px) {
    .container {
        max-width:1140px
    }

    .hd-icon {
        max-width: 120px
    }

    * {
        font-size: 92%
    }

    .main-title {
        font-size: 1.5rem
    }

    .small-text,label,.title-wrap .title {
        font-size: 13px
    }

    .unltd-details >ul li:before {
        background-size: 1.5rem;
        background-position-y: 0.25rem
    }
}

@media (min-width: 1920px) {
    .container {
        max-width:1266px
    }

    .hd-icon {
        max-width: 120px;
        margin-top: 1px
    }

    * {
        font-size: 100%
    }

    .main-title {
        font-size: 2.5rem
    }

    .small-text,label,.title-wrap .title {
        font-size: 14px
    }

    .unltd-details >ul li:before {
        background-size: 1.5rem;
        background-position-y: 0.25rem
    }
}



