@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&family=Poppins:wght@300;600&display=swap');

.QuoteDisplay_quoteWrapper__VJtJV {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 24px; /* Add horizontal padding */
}

.QuoteDisplay_quoteContainer___DCgh {
  width: 100%;
  max-width: 1280px;
  min-width: 300px;
  margin: 0 auto;
  padding: 3rem;
  background: 
    linear-gradient(90deg, rgba(28, 26, 36, 0.4) 0%, rgba(28, 26, 36, 0.1) 20%, rgba(28, 26, 36, 0.1) 80%, rgba(28, 26, 36, 0.4) 100%),
    repeating-linear-gradient(to right, transparent, transparent 19px, rgba(255, 255, 255, 0.05) 19px, rgba(255, 255, 255, 0.05) 20px),
    repeating-linear-gradient(to bottom, transparent, transparent 19px, rgba(255, 255, 255, 0.05) 19px, rgba(255, 255, 255, 0.05) 20px);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
}

.QuoteDisplay_quoteIcon__tVX5J {
  position: absolute;
  top: -30px;
  left: 20px;
  width: 60px;
  height: 60px;
  color: rgba(255, 255, 255, 0.2);
  animation: QuoteDisplay_float__xWfkt 6s ease-in-out infinite;
}

.QuoteDisplay_quote__o_Ws5 {
  font-family: 'Caveat', cursive;
  font-size: 2.5rem;
  line-height: 1.4;
  color: #e0e0e0;
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  white-space: pre-wrap;
  word-wrap: break-word; /* Ensure long words don't overflow */
  overflow-wrap: break-word; /* Modern browsers */
}

.QuoteDisplay_author__86oq2 {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: #646464;
  text-align: right;
  font-weight: 300;
}

.QuoteDisplay_cursor__hoUis {
  display: inline-block;
  width: 3px;
  height: 1.2em;
  background-color: #e0e0e0;
  margin-left: 2px;
  animation: QuoteDisplay_blink__71azH 0.7s infinite;
}

@keyframes QuoteDisplay_blink__71azH {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes QuoteDisplay_float__xWfkt {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 768px) {
  .QuoteDisplay_quoteContainer___DCgh {
    padding: 2rem;
  }

  .QuoteDisplay_quote__o_Ws5 {
    font-size: 2rem;
  }

  .QuoteDisplay_author__86oq2 {
    font-size: 1rem;
  }
}
.FAQ_faqSection__1nH6I {
  background-color: #0e0c15;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
}

.FAQ_faqSectionContainer__qmNh6 {
  padding: 40px 24px;
  max-width: 848px; /* 800px + 24px padding on each side */
  margin: 0 auto;
}

.FAQ_faqSectionContainer__qmNh6 h1 {
  font-family: 'BlackFont', sans-serif;
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 40px;
}

.FAQ_faqContainer__eZ6c3 {
  text-align: left;
  margin-top: 60px;
}

.FAQ_faqItem__oum5x {
  margin-bottom: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.FAQ_faqItem__oum5x:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(99, 111, 254, 0.2);
}

.FAQ_faqQuestion__B_w5S {
  background-color: #0E0C15;
  color: white;
  width: 100%;
  padding: 20px;
  text-align: left;
  font-size: 18px;  
  font-weight: 500;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.FAQ_faqQuestion__B_w5S:hover {
  background-color: #636FFE;
  color: #ffffff;
}

.FAQ_faqArrow__myft_ {
  float: right;
  color: #636FFE;
  transition: transform 0.3s ease, color 0.3s ease;
}

.FAQ_faqQuestion__B_w5S:hover .FAQ_faqArrow__myft_ {
  color: #ffffff;
  transform: rotate(180deg);
}

.FAQ_faqAnswer__INrzu {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out, padding 0.5s ease-out;
  opacity: 0;
  font-weight: 400;
  font-size: 16px; /* Added: Smaller font size for answers */
}

.FAQ_faqAnswer__INrzu.FAQ_active__De_Dw {
  max-height: none; /* Changed: Allow content to determine height */
  opacity: 1;
  padding-top: 15px;
  padding-bottom: 15px;
}

.FAQ_faqAnswer__INrzu p {
  margin: 0;
  padding: 0 10px;
}

@media (min-width: 768px) {
  .FAQ_faqSectionContainer__qmNh6 {
    padding: 40px;
  }
}
.SignupForm_signupForm__PZU4N {
    display: flex;
    align-items: stretch; /* Added this line */
    flex-direction: column;

    width: 100%;
    margin-top: 30px; /* Add space from the top */
}

.SignupForm_formContainer__Ef9ry {
    width: 100%;
    max-width: 100%; /* Changed from 800px to 100% */
    padding: 0; /* Remove padding for all screen sizes */
}

@media (min-width: 768px) {
    .SignupForm_formContainer__Ef9ry {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        max-width: 800px; /* Restore max-width for larger screens */
        padding: 0; /* Remove padding for larger screens */
    }
    .SignupForm_signupForm__PZU4N {
        display: flex;
        align-items: center;
        flex-direction: column;
        width: 100%;
        margin-top: 30px; /* Add space from the top */
    }

}

.SignupForm_emailInput__j1vl3 {
    padding: 15px 20px 15px 44px; /* Increased left padding to accommodate icon */
    border-radius: 0; /* Remove border-radius for mobile */
    border: 2px solid transparent;
    border-color: #c91945;
    background:     
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(45deg, 
            #4F46E5,  /* Indigo */
            #06b6d4,  /* Cyan */
            #a855f7,  /* Purple */
            #4F46E5   /* Back to Indigo */
        ) border-box;
    background-size: 300% 300%;
    font-size: 18px;
    margin-bottom: 10px;
    width: 100%; /* Make input width same as button */
    max-width: 100%; /* Changed from none to 100% */
    box-sizing: border-box; /* Added to include padding in width calculation */
    animation: SignupForm_borderGlow__RQg5h 6s ease-in-out infinite;
}

@keyframes SignupForm_borderGlow__RQg5h {
    0% {
        background-position: 0% 50%;
        box-shadow: 0 0 10px rgba(79, 70, 229, 0.3);
    }
    50% {
        background-position: 100% 50%;
        box-shadow: 0 0 20px rgba(79, 70, 229, 0.5);
    }
    100% {
        background-position: 0% 50%;
        box-shadow: 0 0 10px rgba(79, 70, 229, 0.3);
    }
}

.SignupForm_emailInput__j1vl3:focus {
    outline: none;
    border: 2px solid #4F46E5;
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.6);
}

@media (min-width: 768px) {
    .SignupForm_emailInput__j1vl3 {
        margin-bottom: 0;
        margin-right: 10px;
        flex: 2; /* Increased flex value to make input wider */
        border-radius: 10px; /* Restore border-radius for larger screens */
    }
}

.SignupForm_button__IuwnE {
    border-radius: 0; /* Remove border-radius for mobile */
    color: white; /* Changed to white */
    background-color: black; /* Changed to black */
    text-decoration: none;
    margin: 10px 0 0 0; /* Remove horizontal margin, keep top margin */
    font-size: 20px; /* Slightly increased font size */
    font-weight: bold;
    line-height: 1.2;
    transition: background-color 0.3s ease;
    border-radius: 10px; /* Changed to match button border-radius */
    position: relative;
    z-index: 1;
    border: none;
    cursor: pointer;
    width: 100% !important; /* Make button full width on mobile */
    min-width: max-content !important; /* Ensure button is at least as wide as its content */
    padding: 15px 30px !important; /* Force padding */
    box-sizing: border-box; /* Include padding in width calculation */
    overflow: hidden; /* Add this to hide the glow when it goes outside the button */
}

@media (min-width: 768px) {
    .SignupForm_button__IuwnE {
        flex: 0 1 auto !important; /* Don't grow, but allow shrinking */
        white-space: nowrap;
        height: 60px; /* Set a specific height for larger screens */
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 30px !important; /* Maintain horizontal padding on larger screens */
        width: auto !important; /* Reset to auto width for larger screens */
        max-width: none; /* Remove max-width constraint */
        margin: 0 0 0 10px; /* Add left margin for spacing on larger screens */
    }
}

.SignupForm_button__IuwnE::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px; /* Changed to match button border-radius */
    padding: 2px;
    background: linear-gradient(to right, #3187C4, #DB51DD); /* Updated gradient colors */
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.SignupForm_button__IuwnE:hover {
    background-color: #1a1a1a; /* Slightly lighter black for hover effect */
    color: white;
    box-shadow: 0 0 10px rgba(49, 135, 196, 0.3), /* Light blue shadow */
                0 0 20px rgba(219, 81, 221, 0.3), /* Light purple shadow */
                0 0 30px rgba(49, 135, 196, 0.2), /* Fainter blue shadow */
                0 0 40px rgba(219, 81, 221, 0.2); /* Fainter purple shadow */
    animation: SignupForm_bounce__auBpE 0.6s ease;
}

@keyframes SignupForm_bounce__auBpE {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.SignupForm_button__IuwnE::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.05) 40%,
        rgba(255, 255, 255, 0.167) 50%,
        rgba(255, 255, 255, 0.05) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    animation: SignupForm_glowAnimation__jadrN 4s infinite;
}

@keyframes SignupForm_glowAnimation__jadrN {
    0% {
        transform: rotate(45deg) translate(-150%, -150%);
    }
    100% {
        transform: rotate(45deg) translate(150%, 150%);
    }
}

.SignupForm_inputWrapper__DdG0y {
    position: relative;
    width: 100%;
}

.SignupForm_emailIcon__30m5Y {
    position: absolute;
    left: 14px;
    top: 15px;
    width: 24px;
    height: 24px;
    color: #888888; /* Adjust color as needed */
}

.SignupForm_emailInput__j1vl3::placeholder {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.SignupForm_emailInput__j1vl3:focus::placeholder {
  opacity: 0;
}

@keyframes SignupForm_blink__E3LXV {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.SignupForm_emailInput__j1vl3:placeholder-shown::placeholder {
  animation: SignupForm_blink__E3LXV 1s step-end infinite;
}
.Hero_heroSection__ASanP {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 145px;
    margin: 0;
    overflow-x: hidden;
    background-image: 
        linear-gradient(to bottom,
            rgba(14, 12, 21, 1) 0%,
            rgba(14, 12, 21, 0.8) 20%,
            rgba(14, 12, 21, 0) 50%,
            rgba(14, 12, 21, 0.8) 80%,
            rgba(14, 12, 21, 1) 100%),
        linear-gradient(to right, #1a1a1a 1px, transparent 1px),
        linear-gradient(to bottom, #1a1a1a 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
}

.Hero_heroSection__ASanP::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50vw;
    height: 50vh;
    background: linear-gradient(45deg, 
        rgba(110, 0, 255, 0.3), 
        rgba(255, 0, 0, 0.3), 
        rgba(110, 0, 255, 0.3));
    filter: blur(80px);
    opacity: 0.7;
    animation: Hero_gradientAnimation__HkxiL 10s ease infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes Hero_gradientAnimation__HkxiL {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.Hero_mainHeader__57QjH {
    color: #ffffff;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.Hero_poweredBy__y4F6e {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.Hero_poweredByText__QJvzU {
    color: #ffffff;
}

.Hero_poweredByLogo__NOr73 {
    margin-left: 10px;
    width: 100px;
    height: auto;
}

.Hero_title__QKuej {
    font-family: 'BlackFont', sans-serif;
    font-size: clamp(36px, 4vw, 60px);
    color: white;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.Hero_animatedText__HFZGj {
    min-height: 1.2em;
    display: inline-block;
}

@keyframes Hero_fadeInOut___9wp4 {
    0%, 100% { opacity: 0; transform: translateY(10px); }
    20%, 80% { opacity: 1; transform: translateY(0); }
}

.Hero_animatedText__HFZGj span {
    display: none;
    animation: Hero_fadeInOut___9wp4 4s ease-in-out;
}

.Hero_animatedText__HFZGj span:first-child {
    display: inline-block;
}

.Hero_titleHighlight__fjHMW {
    background: linear-gradient(45deg, rgba(110, 0, 255, 0.6), rgba(255, 0, 0, 0.6));
    font-size: clamp(56px, 4vw, 70px);
    border-radius: 10px;
    padding: 2px 10px;
}

.Hero_description__Bt13e {
    font-family: 'Poppins', sans-serif;
    max-width: 1000px;
    color: #e9e9e9;
    line-height: 1.67;
    font-size: 18px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .Hero_description__Bt13e {
        font-size: 16px;
    }
}

.Hero_logoContainer__a4ENS {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 100%;
    margin-bottom: 5px;
    position: relative;
}

.Hero_logoWrapper__ZAOAs {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 30px;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.Hero_logo__jiSI0 {
    height: 100%;
    width: auto;
    max-height: 60px;
    object-fit: contain;
}

.Hero_activeLogo__dOv4z {
    opacity: 1;
}

.Hero_emailInput__r8qO0 {
    border: 2px solid transparent;
    background: 
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(45deg, #4F46E5, #06b6d4) border-box;
    animation: Hero_borderGlow__7VLci 3s ease-in-out infinite;
}

@keyframes Hero_borderGlow__7VLci {
    0% {
        border-color: transparent;
        box-shadow: 0 0 5px rgba(79, 70, 229, 0.3);
    }
    50% {
        border-color: #4F46E5;
        box-shadow: 0 0 15px rgba(79, 70, 229, 0.5);
    }
    100% {
        border-color: transparent;
        box-shadow: 0 0 5px rgba(79, 70, 229, 0.3);
    }
}

.Hero_emailInput__r8qO0:focus {
    outline: none;
    border: 2px solid #4F46E5;
    box-shadow: 0 0 10px rgba(79, 70, 229, 0.4);
}

.Hero_buttonContainer__UcQmL {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  gap: 20px;
  padding: 20px 0;
}

@media (min-width: 768px) {
  .Hero_buttonContainer__UcQmL {
    gap: 30px;
  }
}


.Pills_pillContainerWrapper__dg2q7 {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px; /* Reduced from 20px to 10px */
}

.Pills_pillContainer__rUPE0 {
    display: flex;
    overflow-x: hidden;
    white-space: nowrap;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
    gap: 16px;  /* Use gap instead of margin-right on pills */
}

.Pills_pillContainer__rUPE0::before,
.Pills_pillContainer__rUPE0::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    pointer-events: none;
    z-index: 1;
}

.Pills_pillContainer__rUPE0::before {
    left: 0;
    background: linear-gradient(to right, #0E0C15, transparent);
}

.Pills_pillContainer__rUPE0::after {
    right: 0;
    background: linear-gradient(to left, #0E0C15, transparent);
}

.Pills_pill__7DdF1 {
    display: inline-block;
    background-color: #33343b;  /* Default background color */
    color: white;               /* Default text color */
    padding: 12px 24px;
    border-radius: 50px;  /* Increased from 25px to 50px */
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: default;
    position: relative;
    overflow: hidden;  /* Changed back to hidden */
    white-space: nowrap;  /* Ensure text stays on one line */
    text-align: center;   /* Center the text */
    flex-shrink: 0;
}

.Pills_pill__7DdF1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.Pills_pill__7DdF1:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 5px rgba(255, 255, 255, 0.1);
}

.Pills_pill__7DdF1:hover::before {
    opacity: 1;
    animation: Pills_pulse___WMFd 0.6s infinite;
}

@keyframes Pills_pulse___WMFd {
    0% {
        transform: scale(0.98);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(0.98);
    }
}

@media (max-width: 768px) {
    .Pills_pillContainerWrapper__dg2q7 {
        gap: 10px; /* Added to maintain consistent gap on mobile */
    }

    .Pills_pillContainer__rUPE0 {
        padding: 10px 0; /* Reduced from 20px to 10px */
    }

    .Pills_pill__7DdF1 {
        font-size: 14px;
        padding: 10px 20px;
    }

    .Pills_pillContainer__rUPE0::before,
    .Pills_pillContainer__rUPE0::after {
        width: 50px;
    }
}
.PricingCard_pricingCardContainer__pGgy6 {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  padding: 40px 0;
}

.PricingCard_pricingCardContainer__pGgy6::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
  background-size: 20px 20px;
  mask-image: linear-gradient(to bottom, 
    transparent 0%,
    rgba(0, 0, 0, 1) 25%,
    rgba(0, 0, 0, 1) 75%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(to bottom, 
    transparent 0%,
    rgba(0, 0, 0, 1) 25%,
    rgba(0, 0, 0, 1) 75%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}

.PricingCard_pricingCard__mEdKB {
  background: linear-gradient(143deg, #9a2ab426, #34a0d514);
  border-radius: 20px;
  padding: 40px 40px;
  text-align: center;
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.15);
  width: 100%;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  overflow: visible;
  animation: PricingCard_pulse__G1NmD 3s infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@keyframes PricingCard_pulse__G1NmD {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.PricingCard_discountBadgeWrapper__073HK {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
}

.PricingCard_discountBadge__gq4xd {
  background: #000000;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 16px;
  color: #ffffff;
  white-space: nowrap; /* Prevent text from wrapping */
  display: inline-block; /* Allow the badge to expand with content */
  min-width: max-content; /* Ensure the badge is at least as wide as its content */
  box-shadow: 0 2px 4px rgba(255, 255, 255, 0.2); /* Optional: Add a subtle shadow for depth */
  position: relative;
  z-index: 1;
}

.PricingCard_discountBadge__gq4xd::before,
.PricingCard_discountBadge__gq4xd::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 21px;
  z-index: -1;
}

.PricingCard_discountBadge__gq4xd::before {
  background: linear-gradient(45deg, #3063ae, #c222c9, #992FBD, #44B3DF);
  animation: PricingCard_animateGradient__9cwrC 3s linear infinite;
}

.PricingCard_discountBadge__gq4xd::after {
  background: #000000;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  border-radius: 19px;
}

@keyframes PricingCard_animateGradient__9cwrC {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.PricingCard_pricing__FdCkS {
  margin-top: 30px;
}

.PricingCard_price__HjLO3 {
  color: #ffffff;
  position: relative;
}

.PricingCard_currentPrice__M6JrP {
  font-size: 48px;
  font-weight: bold;
  color: #ffffff; /* Blue shade similar to Hero */
}

.PricingCard_originalPrice__WKlvQ {
  font-size: 24px;
  text-decoration: line-through;
  color: #ff6b6b; /* Red shade similar to Hero */
}

.PricingCard_planName__hHIpr {
  font-size: 24px;
  margin: 20px 0;
  color: #ffffff; /* Changed to white */
  font-weight: 600;
}

.PricingCard_button__abFof {
  background: linear-gradient(45deg, #3063ae, #c222c9);
  color: white;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

.PricingCard_button__abFof::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #992FBD, #44B3DF);
  transition: all 0.2s ease-in-out;
  z-index: -1;
}

.PricingCard_button__abFof:hover::before {
  left: 0;
}

.PricingCard_button__abFof:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(68, 179, 223, 0.3), 0 6px 6px rgba(153, 47, 189, 0.2);
}

.PricingCard_button__abFof:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(68, 179, 223, 0.2), 0 3px 3px rgba(153, 47, 189, 0.1);
}

.PricingCard_button__abFof::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

@keyframes PricingCard_ripple__YaXFd {
  0% {
    transform: scale(0, 0);
    opacity: 1;
  }
  20% {
    transform: scale(25, 25);
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(40, 40);
  }
}

.PricingCard_button__abFof:focus:not(:active)::after {
  animation: PricingCard_ripple__YaXFd 1s ease-out;
}

.PricingCard_features__9VPi0 {
  list-style: none;
  padding: 0;
  margin: 20px 0px 0;
  text-align: left;
  color: #b0cdef;
}

.PricingCard_featureItem__ZLQL_ {
  padding: 8px 0;
  font-size: 18px;
}

.PricingCard_featureIcon__BgUNW {
  color: #4e9eff; /* Blue shade similar to Hero */
  margin-right: 10px;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
  .PricingCard_pricingCardContainer__pGgy6 {
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .PricingCard_pricingCard__mEdKB {
    max-width: 100%; /* Allow full width within the container on mobile */
  }

  .PricingCard_currentPrice__M6JrP {
    font-size: 36px; /* Slightly smaller font on mobile */
  }

  .PricingCard_originalPrice__WKlvQ {
    font-size: 20px; /* Slightly smaller font on mobile */
  }

  .PricingCard_planName__hHIpr {
    font-size: 22px; /* Slightly smaller font on mobile */
  }

  .PricingCard_features__9VPi0 {
    text-align: center; /* Center the list items */
  }

  .PricingCard_featureItem__ZLQL_ {
    font-size: 18px; /* Slightly smaller font on mobile */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .PricingCard_featureIcon__BgUNW {
    margin-right: 8px; /* Slightly reduce the margin for better alignment */
  }
}
.VideoCarousel_carouselContainer__50vTr {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
    overflow: hidden;
  }
  
  .VideoCarousel_carouselTitle__SbjhM {
    font-family: 'BlackFont', sans-serif;
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .VideoCarousel_carousel__lU3zz {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    cursor: grab;
    user-select: none;
  }
  
  .VideoCarousel_carousel__lU3zz::-webkit-scrollbar {
    display: none; /* WebKit */
  }
  
  .VideoCarousel_carousel__lU3zz:active {
    cursor: grabbing;
  }
  
  .VideoCarousel_videoWrapper__MxTu3 {
    flex: 0 0 auto;
    width: 270px;
    scroll-snap-align: start;
    position: relative;
  }
  
  .VideoCarousel_video__d8O27 {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  
  .VideoCarousel_playButton__LT6zJ {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
  }
  
  .VideoCarousel_playButton__LT6zJ:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  
  @media (max-width: 768px) {
    .VideoCarousel_videoWrapper__MxTu3 {
      width: 200px;
    }
  
    .VideoCarousel_video__d8O27 {
      height: 355px;
    }
  
    .VideoCarousel_carouselTitle__SbjhM {
      font-size: 3.5rem;
    }
  }
.CTASection_ctaSection__JUZZg {
    background-image: url('/images/shorz_header.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #0e0c15;
    margin-top: 80px;
    padding: 50px 20px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  
  .CTASection_ctaContent__0qoAn {
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-family: 'Poppins', sans-serif;
    text-align: center;
    padding: 30px 40px; 
    border-radius: 20px;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
  }
  
  .CTASection_ctaContent__0qoAn h1,
  .CTASection_ctaContent__0qoAn p {
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  .CTASection_ctaContent__0qoAn h1 {
    margin-bottom: 0px;
    font-size: 1.8rem; /* Increased font size */
  }
  
  .CTASection_ctaContent__0qoAn p {
    margin-top: 10px; 
  }
  
  .CTASection_arrow__5wLF9 {
    display: inline-block;
    font-size: 1.4em;
    animation: CTASection_bounce__OyYKw 1s infinite;
  }

  @keyframes CTASection_bounce__OyYKw {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
  }
.LeftRightSection_leftRightSection__M3e3s {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: #b0cdef;
    margin-top: 60px;
    margin-bottom: 40px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Poppins', sans-serif;
}

.LeftRightSection_mobileContainer__7tE7I {
    display: flex;
    width: 100%;
}

.LeftRightSection_imageFirst__pX_Sv .LeftRightSection_mobileContainer__7tE7I {
    flex-direction: row-reverse;
}

.LeftRightSection_imageContent__C10nQ,
.LeftRightSection_textContent__fXryJ {
    width: 50%;
    padding: 20px;
}

.LeftRightSection_imageContent__C10nQ img {
    max-width: 100%;
    height: auto;
}

.LeftRightSection_textContent__fXryJ {
    text-align: left;
}

.LeftRightSection_title__0nmxg {
    font-family: 'BlackFont', sans-serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    margin-top: 10px; /* Add some space above the title for the pill */
}

.LeftRightSection_gradientText__eWHd6 {
    /* Add your gradient text styles here */
    font-family: 'BlackFont', sans-serif;
}

.LeftRightSection_description__Ruhm7 {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.LeftRightSection_styledList__EG_Wg {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.LeftRightSection_styledListItem__o4Hiz {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.4;
    color: #b0cdef; /* Adjust this color to match your text color */
}

.LeftRightSection_styledListItem__o4Hiz::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4em; /* Adjust this value to align with the text */
    width: 12px;
    height: 12px;
    background-color: #636FFE;
    border-radius: 50%;
}

/* Remove the ::after pseudo-element and animation */

@keyframes LeftRightSection_pulse__YUSSB {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.LeftRightSection_styledListItem__o4Hiz::before {
    animation: LeftRightSection_pulse__YUSSB 2s infinite;
}

/* Adjustments for right-aligned section */
.LeftRightSection_imageFirst__pX_Sv .LeftRightSection_textContent__fXryJ {
    padding-left: 20px;
    padding-right: 0;
}

.LeftRightSection_imageFirst__pX_Sv .LeftRightSection_imageContent__C10nQ {
    padding-right: 20px;
    padding-left: 0;
}

.LeftRightSection_pill__Q4Kii {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .LeftRightSection_leftRightSection__M3e3s {
        flex-direction: column;
        align-items: stretch;
        margin-top: 0;
        margin-bottom: 0;
        max-width: 100%;
        padding: 0;
        width: 100vw; /* Full viewport width */
    }

    .LeftRightSection_mobileContainer__7tE7I {
        flex-direction: column !important;
        padding: 0;
        width: 100%;
    }

    .LeftRightSection_videoContent__LM0oH,
    .LeftRightSection_textContent__fXryJ {
        width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }

    .LeftRightSection_videoContent__LM0oH {
        order: -1;
    }

    .LeftRightSection_video__S_0wH {
        width: 100vw; /* Full viewport width */
        height: auto;
        border-radius: 0; /* Remove border radius for full-width effect */
    }

    .LeftRightSection_textContent__fXryJ {
        padding: 0 16px; /* Add some padding to the text content */
    }

    .LeftRightSection_title__0nmxg {
        font-size: 1.8rem;
        margin-top: 16px;
    }

    .LeftRightSection_description__Ruhm7 {
        font-size: 1rem;
        line-height: 1.4;
    }

    .LeftRightSection_styledListItem__o4Hiz {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .LeftRightSection_pill__Q4Kii {
        font-size: 0.9rem;
        padding: 6px 10px;
    }
}

.LeftRightSection_videoFirst__2DfGn .LeftRightSection_mobileContainer__7tE7I {
    flex-direction: row-reverse;
}

.LeftRightSection_videoContent__LM0oH, 
.LeftRightSection_textContent__fXryJ {
    width: 100%;
    padding: 20px;
}

.LeftRightSection_videoContent__LM0oH video { /* Changed from imageContent img */
    max-width: 100%;
    height: auto;
}

/* Adjustments for right-aligned section */
.LeftRightSection_videoFirst__2DfGn .LeftRightSection_textContent__fXryJ { /* Changed from imageFirst */
    padding-left: 20px;
    padding-right: 20px;
}

.LeftRightSection_videoFirst__2DfGn .LeftRightSection_videoContent__LM0oH { /* Changed from imageFirst .imageContent */
    padding-right: 20px;
    padding-left: 20px;
}

/* New styles for video */
.LeftRightSection_video__S_0wH {
    width: 100%;
    height: auto;
    border-radius: 8px; /* Optional: if you want rounded corners */
}
.LogoGallery_logoGalleryContainer__IOdvl {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
  }
  
  .LogoGallery_poweredByText__3kEdU {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #a5a5a5;
    margin-bottom: 20px;
    font-weight: 500;
  }
  
  .LogoGallery_logoGallery__DpDmz {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Default gap for larger screens */
  }
  
  .LogoGallery_logo___MTAx {
    margin: 0 15px;
    height: 30px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease-in-out;
  }
  
  .LogoGallery_logo___MTAx:hover {
    filter: grayscale(0%);
  }
  
  @media (max-width: 768px) {
    .LogoGallery_logoGallery__DpDmz {
      gap: 10px; /* Reduced gap for mobile view */
    }
  }
.Features_container___rf3L {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Arial', sans-serif; /* Added font */
  }
  
  .Features_heading__AbZKK {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #ffffff; /* Changed from #ffffff */
  }
  
  .Features_subheading__JPpho {
    font-size: 1.2rem;
    text-align: center;
    color: #b0cdef; /* Changed from #cccccc */
    margin-bottom: 2rem;
  }
  
  .Features_grid__HPy_X {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .Features_feature__DFGBs {
    border-radius: 8px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    background: transparent;
  }
  
  .Features_feature__DFGBs::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 4px;
    background: linear-gradient(45deg, #3a4bda, #731994, #1e5b8a, #3a4bda);
    background-size: 400% 400%;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .Features_feature__DFGBs:hover::after {
    opacity: 1;
    animation: Features_gradientBorder__NRzqV 8s ease infinite;
  }
  
  .Features_feature__DFGBs:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 0 20px rgba(58, 75, 218, 0.1),
        0 0 30px rgba(115, 25, 148, 0.1),
        0 0 40px rgba(30, 91, 138, 0.1);
  }
  
  @keyframes Features_gradientBorder__NRzqV {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
  }
  
  .Features_iconWrapper__b3F2q {
    background: linear-gradient(135deg, #1e5b8a, #731994);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .Features_icon__m8jOi {
    width: 48px;
    height: 48px;
  }
  
  .Features_title__eiHRb {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff; /* Remains white */
  }
  
  .Features_description__wCZBI {
    font-size: 0.9rem;
    color: #b0cdef; /* Changed from #cccccc */
    margin-bottom: 1rem;
  }
.Pricing_container__7Ug1d {
  min-height: 100vh;
  margin-top: 2rem;
  background-color: #0e0c15;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8rem 1rem;
  position: relative;
  overflow: hidden;
  background-image: 
    linear-gradient(to bottom,
        rgba(14, 12, 21, 1) 0%,
        rgba(14, 12, 21, 0.8) 20%,
        rgba(14, 12, 21, 0) 50%,
        rgba(14, 12, 21, 0.8) 80%,
        rgba(14, 12, 21, 1) 100%),
    linear-gradient(to right, #1a1a1a 1px, transparent 1px),
    linear-gradient(to bottom, #1a1a1a 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px;
}

.Pricing_container__7Ug1d::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50vw;
  height: 50vh;
  background: linear-gradient(45deg, 
      rgba(110, 0, 255, 0.3), 
      rgba(255, 0, 0, 0.3), 
      rgba(110, 0, 255, 0.3));
  filter: blur(80px);
  opacity: 0.3;
  animation: Pricing_gradientAnimation__9LVo6 10s ease infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes Pricing_gradientAnimation__9LVo6 {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}

.Pricing_title__S__0N {
  text-align: center;
  max-width: 56rem;
  margin-bottom: 0.5rem;
}

.Pricing_heading__YdVwt {
  font-family: 'BlackFont', sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 1rem;
  background: linear-gradient(to right, white, #afafaf);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.Pricing_subtitle__chi4a {
  font-size: 1.25rem;
  line-height: 1.5;
  color: #b0cdef;
  text-align: center;
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
}

@media (min-width: 768px) {
  .Pricing_heading__YdVwt {
    font-size: 3.75rem;
  }
  
  .Pricing_subtitle__chi4a {
    font-size: 1.5rem;
  }
}

.Pricing_pricingSection__T5jxm {
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 2;
  position: relative;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
  .Pricing_container__7Ug1d {
    padding: 60px 16px;
  }

  .Pricing_title__S__0N {
    font-size: 36px;
  }

  .Pricing_subtitle__chi4a {
    font-size: 18px;
  }
} 
/* Shared styles adapted from VideoSummary.module.css and basic additions */

/* Using riddleContainer as the main content area below the title */
.PrivateBeta_riddleContainer__ipsO9 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 42rem; /* Match VideoSummary width */
  margin: 2rem auto;
  gap: 1rem; /* Add gap like VideoSummary */
  z-index: 2; /* Ensure above background effects */
  position: relative;
}

/* Adopted from VideoSummary.module.css */
.PrivateBeta_inputWrapper__frSe_ {
  position: relative;
  display: flex;
  flex-direction: column; /* Start column on mobile */
  width: 100%;
  gap: 1rem;
}

/* Adopted from VideoSummary.module.css */
.PrivateBeta_inputGroup__1Ihid {
  position: relative; /* Needed for potential icons later? */
  width: 100%;
}

/* Adopted from VideoSummary.module.css */
.PrivateBeta_input__Ybys_ {
  width: 100%;
  padding: 1rem 1.5rem; /* Adjusted padding */
  border-radius: 0.75rem;
  background-color: #000000;
  border: 1px solid #374151;
  color: white;
  font-size: 1.125rem;
  transition: border-color 0.2s;
  font-family: 'Poppins', sans-serif; /* Consistent font */
}

.PrivateBeta_input__Ybys_:focus {
  outline: none;
  border-color: #7c3aed; /* Highlight color from VideoSummary */
}

.PrivateBeta_input__Ybys_::placeholder {
  color: #888; 
}

/* Adopted from VideoSummary.module.css */
.PrivateBeta_button___suCm {
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
  justify-content: center;
  border-radius: 10px;
  color: white;
  background-color: black;
  padding: 15px 40px !important; /* Use important to override potential specificity issues */
  display: flex; /* Use flex for centering */
  flex-direction: row;
  align-items: center;
  font-family: 'BlackFont', sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%; /* Full width on mobile */
}

/* Adopted from VideoSummary.module.css */
.PrivateBeta_button___suCm::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  padding: 2px;
  background: linear-gradient(to right, #3187C4, #DB51DD); /* Gradient from VideoSummary/Todo */
  -webkit-mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

/* Adopted from VideoSummary.module.css */
.PrivateBeta_button___suCm:hover {
  background-color: #1a1a1a;
  color: white;
  box-shadow: 0 0 10px rgba(49, 135, 196, 0.3),
              0 0 20px rgba(219, 81, 221, 0.3),
              0 0 30px rgba(49, 135, 196, 0.2),
              0 0 40px rgba(219, 81, 221, 0.2);
  animation: PrivateBeta_bounce__gi4S4 0.6s ease; /* Bounce animation from VideoSummary */
}

/* Adopted from VideoSummary.module.css */
@keyframes PrivateBeta_bounce__gi4S4 {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.PrivateBeta_error__8YTIB {
  background-color: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  color: #ffcccc;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  text-align: center;
  width: 100%;
  font-family: 'Poppins', sans-serif;
}

.PrivateBeta_centeredContent__BZdXc {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 2rem;
  z-index: 2; /* Ensure above background */
  position: relative;
}

.PrivateBeta_successMessage__4HvsX {
  color: #ccffcc; /* Light green for success */
  margin-bottom: 1rem;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
}

/* Styles for the Download button in centeredContent */
/* Make it use the same button style */
.PrivateBeta_centeredContent__BZdXc .PrivateBeta_button___suCm {
  width: auto; /* Allow download button to size based on content */
}

/* Keep Styles for Riddle Elements */
.PrivateBeta_riddleText__ZZJk7 {
  white-space: pre-wrap;
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.1rem;
  color: #c0c0c0;
  background-color: rgba(0, 0, 0, 0.3); /* Darker transparent background */
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-align: left;
  width: 100%; 
  border: 1px solid #374151; /* Match input border */
}

.PrivateBeta_hintsContainer__1Iy4c {
  width: 100%;
  max-width: 42rem; 
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.5rem;
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px dashed #555;
  border-radius: 8px;
}

.PrivateBeta_hintsContainer__1Iy4c h4 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: #00aaff; 
  font-size: 1.1rem;
}

.PrivateBeta_hintsContainer__1Iy4c ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.PrivateBeta_hintItem__YUOQc {
  color: #b0b0b0;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.PrivateBeta_hintItem__YUOQc:last-child {
  margin-bottom: 0;
}

/* Use same button style for clue button, adjust margin */
.PrivateBeta_clueButton__0q73L {
  margin-top: 0; /* Already has gap from container */
  width: 100%; /* Full width on mobile initially */
}


/* Responsive adjustments - Adopted from VideoSummary */
@media (min-width: 768px) {
  /* Adjust riddle container if needed */
  .PrivateBeta_riddleContainer__ipsO9 {
     max-width: 42rem;
  }

  .PrivateBeta_inputWrapper__frSe_ {
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 1rem;
  }

  .PrivateBeta_inputGroup__1Ihid {
    flex-grow: 1; 
  }
  
  .PrivateBeta_button___suCm {
    width: auto; /* Button takes its content size */
    margin-top: 0; 
  }

  .PrivateBeta_clueButton__0q73L {
     width: auto; /* Allow clue button to shrink on desktop */
     margin-top: 1rem; /* Add space when it's below the main form */
  }
}

@media (max-width: 767px) {
   .PrivateBeta_button___suCm {
     width: 100%; /* Make button full width on mobile */
   }
} 
