@font-face {
  font-family: 'Accasia';
  src: url('Accasia_Demo.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'QilkaBold';
  src: url('Qilka-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Satoshi';
  src: 
       
       url('Satoshi-Black.ttf') format('truetype');
  font-weight: 900 !important;
  font-display: swap;
  font-style: normal;
}
*, *::before, *::after {
  box-sizing: border-box;
}
body {
  background-color: #000000;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Keeps background still on scroll */
  font-family: 'Satoshi', sans-serif;
  color: #ffffff;
  margin: 0;
  padding: 0;
}


/* === NEW STYLES FOR REDESIGN === */

/* Header Styles */
header {
  background-color: #171717;
  padding: 15px 5%;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #333;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo h2 {
  margin: 0;
  font-family: 'Satoshi', sans-serif;
  font-size: 28px;
}

/* Neumorphic Button Style */
/* Neumorphic Button Style */
.login-btn-neumorphic {
  padding: 12px 24px;
  background: #171717;
  border: none;
  border-radius: 10px;
  color: #ffcf00; /* UPDATED COLOR */
  font-family: 'Satoshi', sans-serif;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 4px 4px 8px #0f0f0f, -4px -4px 8px #1f1f1f;
}

.login-btn-neumorphic:hover {
  color: #ffffff;
}

.login-btn-neumorphic:active {
  box-shadow: inset 4px 4px 8px #0f0f0f, inset -4px -4px 8px #1f1f1f;
}

/* Main Content Styles */
main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.hero-section {
  text-align: center;
  padding: 60px 0;
}

.hero-section h1 {
  font-family: 'Satoshi', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffcf00; /* UPDATED COLOR */
}

.hero-section p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.feature-section {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 0;
  border-top: 1px solid #2d2d2d;
}

.feature-section.alt-layout {
  flex-direction: row-reverse;

}

.feature-image {
  flex: 1;
}

.feature-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.feature-content {
  flex: 1;
}

.feature-content h3 {
  font-family: 'Satoshi', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ffcf00; /* UPDATED COLOR */
}

.feature-content p {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Footer Styles */
footer {
  text-align: center;
  padding: 30px 20px;
  margin-top: 40px;
  border-top: 1px solid #2d2d2d;
}

footer .social-column {
  position: static;
  display: inline-flex;
  margin-bottom: 15px;
}

/* Redesigned Login Modal Styles */
/* Redesigned Login Modal Styles */
.login-modal-content {
  max-width: 800px;
  width: 50%;
  background: #222;
  border: 1px solid #444;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  padding: 0 !important; /* This removes the unwanted space around the image */
}

/* New: Left side (Image) */
.login-modal-image {
  flex-basis: 40%; /* Image takes up 45% of the width */
  background: #171717; /* Fallback color if image is missing */
}
.login-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the area without distortion */
  display: block;
  padding: none;
}

/* New: Right side (Form) */
.login-modal-form {
  flex-basis: 55%; /* Form takes up 55% of the width */
  padding: 40px;
  position: relative; /* For positioning the close button */
}

/* Update: Close button position */
.close-modal-btn {
  position: absolute;
  top: 5px;
  right: 0px; /* Adjusted position */
  width: 30px !important;
  height: 30px !important;
  line-height: 30px;
  text-align: center;
  padding: 0;
  font-size: 28px;
  color: #ffffff !important;
  background: none !important;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.close-modal-btn:hover {
  color: #ff0000 !important;
  background-color: #333;
}
.login-modal-content .loginlogo {
  justify-content: center;
  margin-bottom: 15px;
}

.login-welcome {
  text-align: center;
  margin-bottom: 25px;
  color: #ccc;
  font-family: 'Satoshi', sans-serif;
}

.login-modal-content input {
  display: block;
  width: 100%;
  padding: 12px;
  margin-bottom: 1rem;
  font-size: 16px;
  font-family: 'Satoshi', sans-serif;
  background-color: #333;
  border: 1px solid #555;
  color: white;
  border-radius: 8px; /* Slightly more rounded */
}

.login-modal-content button {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  font-weight: bold;
  font-family: 'Satoshi', sans-serif;
  cursor: pointer;
}

.login-modal-content button#loginBtn {
  background-color: #ffcf00; /* UPDATED COLOR */
  color: #171717;
}

.login-modal-content button#loginBtn:hover {
  background-color: #ffffff;
}

.login-modal-content .guest-btn {
  margin-top: 10px;
  background-color: transparent;
  color: #ccc;
  border: 1px solid #555;
}

.login-modal-content .guest-btn:hover {
  background-color: #333;
  color: white;
}

/* Also update the Cookie Banner button color */
#cookieBanner button {
  background: #ffcf00 !important; /* UPDATED COLOR */
}

    h2{
        color: white;
    }
.group-5,
.group-5 * {
  box-sizing: border-box;
}
.group-5 {
  width: 54px;
  height: 54px;
  position: relative;
  overflow: visible;
  cursor: pointer;
}
.loginlogo{
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 30px;
}
.social-column {
  position: fixed;
  bottom: 10px;
  right: 60px;
  display: flex;
  flex-direction: row;
  gap: 3px;
  z-index: 1000;
}
/* Updated Social Icon Styles */
.social-icon {
  display: inline-block;
  padding: 10px;
}

.social-icon i {
  font-size: 25px; /* Control the icon size here */
  color: #888;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover i {
  transform: scale(1.2); /* Make icon slightly larger on hover */
}

/* --- Brand Hover Colors --- */
.social-icon:hover .fa-circle-info {
  color: #ffcf00; /* Your site's theme color */
}
.social-icon:hover .fa-facebook {
  color: #1877F2;
}
.social-icon:hover .fa-instagram {
  color: #E1306C;
}
.social-icon:hover .fa-x-twitter {
  color: #ffffff;
}
.social-icon:hover .fa-discord {
  color: #5865F2;
}
.remember-me {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-family: 'Satoshi', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  margin-top: -10px;
   align-content: center;
}
.remember-me input[type="checkbox"] {
  width: auto;            /* override 100% from general input rule */
  display: inline-block;  /* override block */
  margin: 0;              /* removes excess space */
  accent-color: #ffffff;
  cursor: pointer;
}

label {
    align-content: center;
}
.guest-btn {
  margin-top: 10px;
  background-color: #626262;
  color: #171717;
  font-family: 'Satoshi', sans-serif;
  border: 1px solid white;
  border-radius: 5px;
  width: 100%;
  padding: 0.5rem;
  cursor: pointer;
  font-weight: bold;
}

.guest-btn:hover {
  background-color: #2d2d2d;
  color: white;
}
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-color: rgba(0,0,0,0.6);
    display: flex; 
    justify-content: center; 
    align-items: center;
    z-index: 1000;
    /* --- Animation Properties --- */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
  }
  .modal-box {
    background: #171717;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    text-align: center;
    max-width: 90%;
    color: white;
    /* --- Animation Properties --- */
    transform: scale(0.95);
    transition: transform 0.3s ease-in-out;
  }
  /* New rules for the visible/animated state */
.modal-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.modal-overlay.visible .modal-box {
  transform: scale(1);
}
  .modal-box button {
    margin-top: 20px;
    padding: 8px 16px;
    background: #ffffff;
    color: #171717;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }
  /* Survey Modal specific styles */
/* === REDESIGNED SURVEY MODAL STYLES === */
.survey-modal-content {
  max-width: 500px;
  width: 90%;
  background: #222;
  border: 1px solid #444;
  text-align: center;
}

.survey-modal-content .close-modal-btn {
  /* This will inherit styles from the login modal's close button */
  right: 10px; /* Adjust position if needed */
}

.survey-header {
  margin-bottom: 24px;
}

.survey-header h3 {
  font-family: 'Satoshi', sans-serif;
  font-size: 24px;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.survey-header p {
  margin: 0;
  color: #ccc;
  font-family: 'Satoshi', sans-serif;
}

/* Custom Checkbox Styling */
.survey-options {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Creates a 2x2 grid */
  gap: 15px;
  margin-bottom: 30px;
}

.survey-options label {
  position: relative;
}

/* Hide the default checkbox */
.survey-options input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}

.survey-options span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: #333;
  border: 2px solid #555;
  border-radius: 8px;
  color: #fff;
  font-family: 'Satoshi', sans-serif;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

/* Style for when the option is hovered */
.survey-options span:hover {
  border-color: #ffcf00;
}

/* Style for when the checkbox is checked */
.survey-options input[type="checkbox"]:checked + span {
  background-color: #ffcf00;
  border-color: #ffcf00;
  color: #171717;
}

/* Action Buttons */
.survey-actions {
  display: flex;
  gap: 15px;
}

.survey-actions button {
  flex: 1; /* Make both buttons equal width */
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  font-weight: bold;
  font-family: 'Satoshi', sans-serif;
  cursor: pointer;
}

.survey-actions button[type="submit"] {
  background-color: #ffcf00;
  color: #171717;
}

.survey-actions button[type="submit"]:hover {
  background-color: #ffffff;
}

.survey-actions button#surveyCancel {
  background-color: transparent;
  color: #ccc;
  border: 1px solid #555;
}

.survey-actions button#surveyCancel:hover {
  background-color: #333;
  color: white;
}
/* === REDESIGNED GUEST MODAL STYLES === */

.guest-modal-content {
  max-width: 420px;
  width: 90%;
  padding: 40px 30px;
  /* Use flexbox to easily center content */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Icon Styling & Animation */
.modal-icon-wrapper {
  margin-bottom: 20px;
}

.visible .checkmark-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  stroke-width: 3;
  stroke: #fff;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #ffcf00;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.visible .checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 3;
  stroke-miterlimit: 10;
  stroke: #ffcf00;
  fill: none;
  animation: stroke .6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.visible .checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke .3s cubic-bezier(0.65, 0, 0.45, 1) .8s forwards;
}

@keyframes stroke {
  100% { stroke-dashoffset: 0; }
}
@keyframes scale {
  0%, 100% { transform: none; }
  50% { transform: scale3d(1.1, 1.1, 1); }
}
@keyframes fill {
  100% { box-shadow: inset 0px 0px 0px 40px #ffcf00; }
}
/* === HERO TITLE CHECKMARK STYLES === */

.hero-title-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px; /* Space between title and checkmark */
  flex-wrap: nowrap; /* Allows items to wrap on smaller screens */
  margin-top: -40px;
}

.hero-checkmark-icon {
  width: 40px;
  height: 40px;
  display: block;
  stroke-width: 3;
  stroke: #fff;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #3498db;
  border-radius: 50%; /* Add this line */
  animation: hero-fill 2.5s ease-in-out 1s infinite, hero-stroke 9.5s ease-in-out infinite;
}

.hero-checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 3;
  stroke-miterlimit: 10;
  stroke: #3498db; /* Blue color */
  fill: none;
  /* Looping animation for the circle stroke */
  animation: hero-stroke 2.5s ease-in-out infinite;
}

.hero-checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  /* Looping animation for the check stroke */
  animation: hero-stroke 6s ease-in-out 5s infinite;
}

/* --- New Keyframes for the looping animation --- */
/* (Renamed to avoid conflict with the modal's animation) */

@keyframes hero-stroke {
  50% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -166; } /* Draws and then un-draws */
}

@keyframes hero-fill {
  50% { box-shadow: inset 0px 0px 0px 30px #3498db; } /* Fills up */
  100% { box-shadow: inset 0px 0px 0px 0px #3498db; } /* Empties out */
}
/* Message Text Styling */
.guest-modal-content #guestModalMessage {
  color: #ffffff;
  font-family: 'Satoshi', sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 20px 0;
}

/* Button Styling */
.guest-modal-content button {
  width: 100%;
  padding: 12px;
  background-color: #ffcf00;
  color: #171717;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.guest-modal-content button:hover {
  background-color: #ffffff;
}

/* Facebook Icon Styling */

/* === HERO VIDEO STYLES === */
.video-container {
  position: relative; /* Required for the overlay effect */
  max-width: 800px;
  margin: -90px auto 17px auto; /* Adds space above and centers the container */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: none;
}

.video-container video {
  width: 100%;
  display: block; /* Removes any bottom spacing */

}

/* This pseudo-element creates the fade effect */
.video-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Allows clicks to pass through */
  background: linear-gradient(to right, 
    #000000 0%, 
    rgba(23, 23, 23, 0) 45%, 
    rgba(23, 23, 23, 0) 15%, 
    #000000 95%
  );
}
/* === PLANS SECTION STYLES === */

.plans-section {
  padding: 80px 20px;
  background-color: #1a1a1a;
  background-image:linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('plann.png');
  background-size: cover;

  text-align: center;
  border-top: 1px solid #2d2d2d;
}

.plans-main-title {
  font-family: 'Satoshi', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #ffffff;
}

.plans-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap; /* Allows cards to wrap on smaller screens */
}

.plan-card {
  width: 280px;
  text-align: center;
}

.plan-image-wrapper {
  position: relative; /* Crucial for the overlay effect */
  width: 100%;
  height: 400px; /* Portrait aspect ratio */
  border-radius: 12px;
  overflow: hidden; /* Hides the overlay when it's outside */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  padding: 0 !important;
  transition: transform 0.3s ease-in-out;

}
.plan-image-wrapper:hover{
  transform: scale(1.1);
}
.plan-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Change this line */
  display: block;
  padding: 0;
  
}

.plan-title {
  font-family: 'Satoshi', sans-serif;
  font-size: 1.5rem;
  color: #ffcf00;
}

/* --- The Slide-Up Overlay --- */

.plan-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4));
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px !important;
  
  /* Start hidden below the container */
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

/* When you hover the wrapper, the overlay slides up */
.plan-image-wrapper:hover .plan-overlay {
  transform: translateY(0);
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font-family: 'Satoshi', sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

.benefits-list li::before {
  content: '✓';
  color: #ffcf00;
  margin-right: 10px;
}
.plans-subtitle {
  color: #aaa;
  font-size: .9rem;
  font-family: 'Satoshi', sans-serif;
  font-style: italic;
  margin-top: -50px; /* Pulls it closer to the title */
  margin-bottom: 50px; /* Adds space above the plan cards */
}
/* ======================================= */
/* ▼▼▼ MODERN COOKIE BANNER STYLES ▼▼▼ */
/* ======================================= */

/* The main banner container */
#cookieBanner {
  display: none;
  /* Positioning */
  position: fixed;
  bottom: 20px; /* Floats above the bottom edge */
  left: 50%;
  transform: translateX(-50%); /* Perfectly centers the banner */
  width: auto; /* Width will be determined by content */
  max-width: 90%; /* Ensures it looks good on mobile */
  z-index: 10000;
  
  /* Modern "Frosted Glass" Look */
  background: rgba(42, 42, 42, 0.75); /* Semi-transparent background */
  backdrop-filter: blur(10px); /* This creates the blur effect */
  -webkit-backdrop-filter: blur(10px); /* For Safari compatibility */
  border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle edge highlight */
  
  /* Layout & Spacing */
  
  align-items: center;
  gap: 20px;
  padding: 12px 20px;
  border-radius: 12px; /* Rounded corners */
  
  /* Text & Shadow */
  color: #f0f0f0;
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);

  /* Entrance Animation */
  animation: slideUpFadeIn 0.5s ease-out forwards;
}

/* The "Accept" button */
#cookieBanner button {
  /* Reset and Style */
  all: unset;
  box-sizing: border-box;
  padding: 8px 18px;
  background-color: #ffcf00; /* Main yellow accent */
  color: #111;
  
  /* Shape & Font */
  border-radius: 999px; /* Pill shape */
  font-size: 14px;
  font-weight: 600;
  font-family: 'Satoshi', sans-serif;

  /* Other */
  cursor: pointer;
  white-space: nowrap; /* Prevents the text from wrapping */
  transition: transform 0.2s ease, background-color 0.2s ease;
}

#cookieBanner button:hover {
  background-color: #ffffff; /* Brighter hover state */
  transform: scale(1.05); /* Slight pop effect */
}

/* Keyframes for the entrance animation */
@keyframes slideUpFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}






/* === Responsive Media Queries === */
/* For Tablets & Smaller Devices (<= 1024px) */
@media (max-width: 1024px) {
  main {
    padding: 30px 15px;
  }

  .feature-section,
  .feature-section.alt-layout {
    flex-direction: column; /* Stack image and text vertically */
    text-align: center;
    gap: 30px;
  }

  .login-modal-content {
    width: 70%; /* Give the modal more space on tablets */
  }
}


/* For Mobile Devices (<= 768px) */
@media (max-width: 768px) {
  /* --- General & Header --- */
  .header-container {
    flex-direction: column; /* Stack logo and button */
    gap: 15px;
  }

  /* --- Hero Section --- */
  .hero-section h1 {
    font-size: 2.1rem; /* Reduce main title size */
    line-height: 1.3;
  }

  .hero-section p {
    font-size: 1rem;
    padding: 0 10px;
  }
  
  .hero-title-container {
      flex-direction: column; /* Stack title and checkmark */
      gap: 10px;
      margin-top: 0;
      text-align: center;
  }

  .video-container {
      margin: -40px auto 20px auto; /* Adjust video position */
  }

  /* --- Features Section --- */
  .feature-content h3 {
    font-size: 1.8rem;
  }
  
  .feature-content p {
    font-size: 1rem;
  }

  /* --- Plans Section --- */
  .plans-main-title {
    font-size: 2rem;
  }

  .plan-card {
    width: 90%; /* Make plan cards take more width */
    max-width: 300px;
  }
  
  .plan-image-wrapper:hover {
    transform: none; /* Disable zoom on mobile for better usability */
  }
  
  /* Show overlay on tap instead of hover for touch devices */
  .plan-image-wrapper:active .plan-overlay {
    transform: translateY(0);
  }

  /* --- Login & Survey Modals --- */
  .login-modal-content {
    flex-direction: column; /* Stack image and form */
    width: 90%;
    max-height: 95vh;
    overflow-y: auto;
  }

  .login-modal-image {
    display: none; /* Hide image to save space */
  }

  .login-modal-form {
    flex-basis: 100%;
    padding: 30px 25px;
  }
  
  .survey-modal-content {
    width: 90%;
  }
  
  .survey-options {
    grid-template-columns: 1fr; /* Single column for easier tapping */
  }
  
  .survey-actions {
    flex-direction: column;
  }

  /* --- Cookie Banner --- */
  #cookieBanner {
    width: 95% !important;
    left: 50%;
    transform: translateX(-50%) !important; /* Center the banner properly */
    bottom: 10px;
    text-align: left;
  }

  #cookieBanner button {
      display: block;
      margin-top: 10px;
      width: 100%;
  }
}