* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
/* --- DESKTOP FIX (Header & Menu Container) --- */
header {
    display: flex;
    justify-content: space-between; /* Pushes logo left, menu right */
    align-items: center;
    padding: 10px 5%;
    background-color: white;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.menu-container {
    display: flex; /* This fixes the desktop shifting issue */
    align-items: center;
    gap: 40px; /* Space between links and buttons */
}

#menu-toggle, .hamburger {
    display: none; /* Hidden on desktop */
}

/* --- MOBILE FIX (Hamburger & Overlay) --- */
@media (max-width: 900px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1100;
    }

    /* Ensure the 3 lines are visible */
    .hamburger span {
        display: block;
        width: 28px;
        height: 3px;
        background-color: #000; /* Change to #fff if your header is dark */
        border-radius: 2px;
        transition: 0.3s ease-in-out;
    }

    .menu-container {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden off-screen */
        width: 80%; /* Menu width */
        height: 100vh;
        background-color: white;
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1050;
    }

    /* When Checked (Opened) */
    #menu-toggle:checked ~ .menu-container {
        right: 0;
    }

    /* Animate Hamburger to X */
    #menu-toggle:checked ~ .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    #menu-toggle:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
    #menu-toggle:checked ~ .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

    .navbar ul {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .header-right {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
        gap: 15px;
    }
}

.header-left{
    display: flex;
    align-items: center;
    gap: 20px;
}

.offer{
    border: 1px; solid:#222;
    padding: 1px 15px;
    border-radius: 20px;
    font-size: 14px;
}

header .logo img{
    height: 120px;
    width: 120px;
}
.logo{
    display: flex;
    align-items: center;
}
.navbar ul{
list-style: none;
gap: 30px;
display: flex;
}

.header-right{
display: flex;
align-items: center;
gap: 30px;
}

.buynow{
    background-color: #25D366;
    color: #075E54;
    padding: 20px 40px;
    border-radius: 60px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
}

.buynow:hover {
  background-color: #5FFC7B;
  transform: translateY(-5px); /* Lift up slightly */
  box-shadow: 0 6px 20px rgba(143, 227, 194, 0.4);
}

.buynow:active {
  background-color: #128C7E;
  color: white;
  transform: translateY(0);
}

.offer p {
    border: 1px solid #d1d1d1; 
    padding: 5px 15px;
    border-radius: 20px;       
    font-size: 13px;
    display: inline-block;
}
.signin{
    padding: 12px 24px;
    border: 1px solid #1a1a1a;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    color: white;
    background-color: #0088CC;
     transition: all 0.3s ease;
}

.signin:hover {
  background-color: #24A2E0;
  transform: translateY(-5px); /* Lift up slightly */
  box-shadow: 0 6px 20px rgba(143, 227, 194, 0.4);
}

.signin:active {
  background-color: #0078AA;
  transform: translateY(0);
}

.author p{
    align-self: center;
}
.hero{
    padding: 80px 0px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero img{
    height: 250px;
    width: 250px;
}
.hero h1{
    font-size: 58px;
    font-weight: 800px;
    max-width: 1300px;
    margin: 20px 0px;
    align-self: center;
}
#highlight{
background-color: #fce4ec;
padding: 0px 10px;
font-size: 50px;
}
#slogan{
background-color: #fce4ec;
padding: 0px 10px;
}
.btn-primary{
    background-color: #25D366;
    color: #075E54;
    border: 1px solid #000;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 30px;
    display: flex; 
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 5px;
    min-height: 80px; 
    line-height: 1.2;
}
.btn-primary .status-indicator, 
.cta-button .status-indicator {
    background: rgba(0, 0, 0, 0.05);
    margin-bottom: 2px;
}


.btn-primary, .cta-button {
    font-weight: 700;
}

.btn-primary:hover {
  background-color: #5FFC7B;
  transform: translateY(-5px); 
  box-shadow: 0 6px 20px rgba(143, 227, 194, 0.4);
}

.btn-primary:active {
  background-color: #128C7E;
  color: white;
}

.hero-subtext{
    font-size: 23px;
}

.hero span{
    font-size: x-large;
    align-content: center; 
}
.hero video{
    width: 600px;
    height: 250px;
}
section #Middletext{
    color: black;
    font-size: 23px;
    font-weight: bolder;
}

section .creator{
    align-items: center;
    display: flex;
    justify-content: center;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.timeline {
  background-color: #f5f5f5;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.timeline-item {
  text-align: center;
  position: relative;
}
.timeline-item h3 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.timeline-item p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .timeline {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}


.hero2 {
  background-color: #1a1a1a; 
  padding: 100px 20px;
  text-align: center;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
}

.hero2 h1 {
  font-size: 56px;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  margin-bottom: 60px;
}

.red-text {
  color: #ff6b6b; 
  font-style: italic;
}

.green-text {
  color: #51cf66; 
  font-style: italic;
}


@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}


.card {
  background-color: #2a2a2a;
  border: 2px solid #444;
  border-radius: 16px;
  padding: 30px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px); 
}


.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.card h2 {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}


.icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}

.icon-cross {
  background-color: rgba(255, 107, 107, 0.2);
  color: #51cf66;
}

.icon-check {
  background-color: rgba(81, 207, 102, 0.2);
  color: #51cf66;
}


.card-employee {
  border-color: #51cf66;
}

.card-employee h2 {
  color: #51cf66;
}


.card-entrepreneur {
  border-color: #51cf66;
}

.card-entrepreneur h2 {
  color: #51cf66;
}


.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-list li {
  color: #ccc;
  font-size: 16px;
  line-height: 1.8;
  padding-left: 20px;
  margin-bottom: 12px;
  position: relative;
}


.card-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
}

.card-employee .card-list li::before {
  color: #51cf66; 
}

.card-entrepreneur .card-list li::before {
  color: #51cf66; 
}


@media (max-width: 768px) {
  .comparison {
    grid-template-columns: 1fr;
  }
}
.anotherblack {
    background-color: #1a1a1a;
}

.timeline-item video {
    height: 250px;
    width: 250px;
}
/* ===== CTA SECTION ===== */
.cta-section {
  background-color: #f8f8f8; /* Light gray background */
  padding: 100px 20px;
  text-align: center;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto; /* Centers the container */
}
/* Heading */
.cta-heading {
  font-size: 64px;
  font-weight: 800; /* Extra bold */
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 30px;
}

/* Green highlight effect */
.highlight {
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 8px; /* Position from bottom */
  left: 0;
  width: 100%;
  height: 20px; /* Height of highlight */
  background-color: #8fe3c2; /* Mint green */
  z-index: -1; /* Behind the text */
  border-radius: 4px;
}
/* Description */
.cta-description {
  font-size: 22px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 400;
}
/* Button */
.cta-button {
  background-color: #0088CC; /* Mint green */
  color: #1a1a1a; /* Dark text */
  font-size: 18px;
  font-weight: 600;
  padding: 18px 50px;
  border: none;
  border-radius: 50px; /* Fully rounded edges */
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(143, 227, 194, 0.3);
  display: flex; /* Required to align the status indicator */
    flex-direction: column; /* Stacks the dot/text above the main label */
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 5px;
    min-height: 80px; /* Gives enough room for both lines of text */
    line-height: 1.2;
}

.btn-primary .status-indicator, 
.cta-button .status-indicator {
    background: rgba(0, 0, 0, 0.05); /* Slight contrast against the button color */
    margin-bottom: 2px;
}

/* Ensure the text inside remains bold and clear */
.btn-primary, .cta-button {
    font-weight: 700;
}

.cta-button:hover {
  background-color: #24A2E0; /* Slightly darker green */
  transform: translateY(-5px); /* Lift up slightly */
  box-shadow: 0 6px 20px rgba(143, 227, 194, 0.4);
}

.cta-button:active {
  transform: translateY(0); /* Press down when clicked */
  background-color: #0078AA;
}
/* Note below button */
.cta-note {
  margin-top: 20px;
  font-size: 16px;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px; /* Space between checkmark and text */
}

.checkmark {
  color: #51cf66; /* Green checkmark */
  font-size: 18px;
  font-weight: bold;
}

/* Header */
.header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 50px;
    line-height: 1.1;
}

.header span {
    background-color: #e0f2fe; /* Light blue highlight */
}

/* Container */
.cards-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0; /* They overlap/touch in the screenshot */
}

/* Base Card Styles */
.card {
    width: 450px;
    padding: 40px;
    border: 1px solid #e5e7eb;
    text-align: left;
    position: relative;
}

.card-light {
    background: white;
    border-radius: 8px 0 0 8px;
    margin-top: 20px; /* Sits slightly lower than the featured card */
}

.card-dark {
    background: #111827;
    color: white;
    border-radius: 8px;
    transform: scale(1.05); /* Makes it look prominent */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

/* Badge */
.bundle-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: black;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    border: 1px solid black;
}

/* Typography inside cards */
h3 { font-size: 1.5rem; margin-bottom: 8px; }
.subtitle { color: #6b7280; margin-bottom: 25px; }
.card-dark .subtitle { color: #9ca3af; }

/* Pricing */
.price { margin-bottom: 25px; display: flex; align-items: baseline; }
.old-price { text-decoration: line-through; color: #9ca3af; margin-right: 10px; font-size: 1.2rem; }
.amount { font-size: 3.5rem; font-weight: 800; }
.currency, .usd { font-size: 1.2rem; font-weight: 600; }

/* List and Highlights */
.features { list-style: none; margin-bottom: 30px; }
.features li::before { content: "✓"; margin-right: 10px; color: #6b7280; }

.highlight-box {
    border: 1px solid #facc15; /* Yellow border */
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 30px;
}
.highlight-title { color: #facc15; font-weight: bold; margin-bottom: 5px; }

/* Buttons */
.btn {
    width: 100%;
    padding: 15px;
    border-radius: 30px;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 15px;
}
.btn-dark { background: #1f2937; color: white; }
.btn-light { background: white; color: black; }

.access-info { font-size: 0.8rem; color: #9ca3af; text-align: center; }

/* FAQ Section Container */
.faq-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
}

/* Individual FAQ Item */
details {
    border-top: 1px solid #e5e7eb;
    transition: background-color 0.3s ease;
}

/* Remove default marker */
summary::-webkit-details-marker {
    display: none;
}

summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    outline: none;
}

/* The Plus/Minus Icon using CSS pseudo-elements */
.icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.icon::before, .icon::after {
    content: '';
    position: absolute;
    background-color: black;
    transition: transform 0.3s ease;
}

/* Horizontal line of the Plus */
.icon::before {
    top: 9px;
    left: 0;
    width: 100%;
    height: 2px;
}

/* Vertical line of the Plus */
.icon::after {
    top: 0;
    left: 9px;
    width: 2px;
    height: 100%;
}

/* Change Plus to Minus when Open */
details[open] .icon::after {
    transform: rotate(90deg);
    opacity: 0; /* Hides the vertical line to make it a minus */
}

/* Styling the Expanded Content */
.faq-content {
    padding-bottom: 25px;
    line-height: 1.6;
    color: #374151;
}

/* Highlight style for the specific "Open" state in your screenshot */
details[open] {
    background-color: #d1fae5; /* Soft green background from screenshot */
    margin-bottom: 10px;
    border: 1px solid #10b981;
    border-radius: 4px;
    padding: 0 20px;
}

details[open] summary {
    border-bottom: none;
}

.faq-content ol {
    padding-left: 20px;
}

.faq-content li {
    margin-bottom: 15px;
}

.cta-section {
  text-align: center;
  padding: 100px 20px;
}

.cta-text {
  font-style: italic;
  font-size: 1.5rem;
  color: #374151;
  margin-bottom: 30px;
}

.pill-button {
  background-color: #ffedd5; /* Light peach color */
  border: 1px solid #000;
  padding: 18px 60px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.pill-button:hover {
  transform: scale(1.05);
}

.social-proof {
  margin-top: 40px;
}

/* Overlapping Avatars */
.avatar-group {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.avatar-group img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px; /* This creates the overlap */
}

.avatar-group img:first-child {
  margin-left: 0;
}

.student-count {
  font-style: italic;
  color: #4b5563;
}
/* Footer Base Styling */
.footer {
    background-color: #f9fafb; /* Very light gray to distinguish from white body */
    border-top: 1px solid #e5e7eb;
    padding: 60px 20px 30px 20px;
    font-family: 'Inter', sans-serif;
    color: #1f2937;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

/* Brand Section */
.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Links Section */
.footer-links {
    display: flex;
    gap: 80px;
}

.link-column h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.link-column a {
    display: block;
    text-decoration: none;
    color: #4b5563;
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: color 0.2s ease;
}

/* This targets every link on your page */
a {
    text-decoration: none; /* Removes the underline */
    color: inherit;        /* Tells the link to use the parent's text color */
}

/* This happens only when the user hovers over the link */
a:hover {
    text-decoration: underline; /* The underline reappears on hover */
    opacity: 0.7;               /* The text fades slightly */
    cursor: pointer;            /* Ensures the 'hand' icon appears */
}

.link-column a:hover {
    color: #000;
}

/* Copyright Bar */
.footer-bottom {
    max-width: 1000px;
    margin: 60px auto 0 auto;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    font-size: 0.85rem;
    color: #9ca3af;
}
.cta-heading{
    max-width: 1300px;
    margin: 20px 0px;
    align-self: center;
    font-size: 50px;
}
#highlight33{
    background-color: #fce4ec;
    padding: 0px 10px;
}
.btn-light:hover {
  background-color: #5FFC7B;
  transform: translateY(-5px); /* Lift up slightly */
  box-shadow: 0 6px 20px rgba(143, 227, 194, 0.4);
}
.btn-light:active {
background-color: #128C7E;
  color: white;
}

.btn-dark:hover{
 background-color: #24A2E0;
  transform: translateY(-5px); /* Lift up slightly */
  box-shadow: 0 6px 20px rgba(143, 227, 194, 0.4);
}
.btn-dark:active {
    background-color: #24A2E0;
  color: white;
}

/* ============================================================
   RESPONSIVE PATCH: Fixes alignment and font sizes for Mobile
   ============================================================ */

@media (max-width: 768px) {
    /* 1. Global Fixes */
    body {
        overflow-x: hidden; /* Prevents side-scrolling */
    }

    /* 3. Hero Section */
    .hero {
        padding: 40px 15px;
    }

    .hero h1 {
        font-size: 32px !important; /* Smaller text for phone screens */
        line-height: 1.2;
    }

    #highlight {
        font-size: 30px;
    }

    .hero-subtext {
        font-size: 18px;
    }

    .hero video, .timeline-item video {
        width: 100% !important; /* Forces video to fit phone width */
        height: auto;
    }

    section .creator {
        flex-direction: column;
        text-align: center;
    }

    /* 4. Pricing Cards Section */
    .cards-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 0 15px;
    }

    .card {
        width: 100% !important; /* Removes the 450px fixed width */
        max-width: 380px;
        border-radius: 12px !important;
        margin-top: 0 !important;
    }

    .card-dark {
        transform: scale(1); /* Removes desktop-only scale effect */
    }

    /* 5. CTA Section */
    .cta-heading {
        font-size: 34px !important;
    }

    .cta-description {
        font-size: 18px;
    }

    .pill-button {
        padding: 15px 30px;
        width: 100%;
    }

    /* 6. Footer */
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .footer-brand {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    /* Extra tiny phones */
    .hero h1 {
        font-size: 28px !important;
    }
    
    .buynow, .signin, .btn-primary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 900px) {
    /* 1. Header Layout Fix */
    header {
        justify-content: space-between;
        padding: 15px 20px;
    }

    /* 2. Show the Hamburger Icon */
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1001; /* Stays above the menu */
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #333;
        border-radius: 3px;
        transition: 0.3s;
    }

    /* 3. The Mobile Menu "Overlay" */
    .menu-container {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden off-screen to the right */
        width: 100%;
        height: 100vh;
        background-color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

    /* 4. The "Magic" Toggle Logic */
    /* When the checkbox is checked, move the menu into view */
    #menu-toggle:checked ~ .menu-container {
        right: 0;
    }

    /* Turn the ☰ into an X when menu is open */
    #menu-toggle:checked ~ .hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    #menu-toggle:checked ~ .hamburger span:nth-child(2) {
        opacity: 0;
    }
    #menu-toggle:checked ~ .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* 5. Mobile Menu Content Styling */
    .navbar ul {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .navbar ul li a {
        font-size: 20px;
        font-weight: 600;
    }

    .header-right {
        flex-direction: column;
        width: 80%;
        gap: 15px;
    }

    .signin, .buynow {
        width: 100%;
        padding: 18px;
        font-size: 18px;
    }
}

/* Ensure the button reacts immediately to touch */
.buynow:active, .signin:active, .btn-primary:active, .cta-button:active {
    transform: scale(0.95) !important; /* Shrinks slightly when pressed */
    background-color: #128C7E !important; /* Darker green feedback */
    transition: transform 0.1s ease;
}

/* Optional: This removes the tap highlight color some mobile browsers add */
button, a {
    -webkit-tap-highlight-color: transparent;
} 

/* This works for both Hover (Laptop) and Active (Phone) */
.buynow, .signin, .btn-primary, .cta-button {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Laptop Feedback */
@media (hover: hover) {
    .buynow:hover {
        transform: translateY(-3px);
        filter: brightness(1.1);
    }
}

/* Mobile Touch Feedback */
.buynow:active {
    transform: scale(0.95); /* Button 'sinks' when pressed */
    filter: brightness(0.9);
}

/* Container for the dot and text */
.status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2); /* Subtle background for contrast */
    padding: 2px 8px;
    border-radius: 20px;
    margin-bottom: 4px; /* Sits slightly above the main button text */
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* The Green Dot */
.dot {
    width: 8px;
    height: 8px;
    background-color: #4ade80; /* Bright green */
    border-radius: 50%;
    position: relative;
}

/* The Pulse Animation */
.dot::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #4ade80;
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.status-text {
    font-weight: 800;
}

/* Adjusting the header buttons to fit the new content */
.signin, .buynow {
    flex-direction: column; /* Stacks status above the text */
    padding: 10px 25px !important;
    min-height: 65px;
    display: flex;
    justify-content: center;
}
.last-updated {
    margin-top: 10px;
    font-size: 0.75rem;
    color: #9ca3af; /* Light gray to match the footer bottom */
    font-style: italic;
}

#current-date {
    font-weight: 600;
    color: #6b7280;
}