        /* 
        ============================================
        FONTS & ROOT VARIABLES
        ============================================
        */
        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Lato:wght@400;700&family=Roboto:wght@100;400&display=swap');


        :root {
            --dark-bg: #1a1a1a;
            --medium-bg: #2c2c2c;
            --light-text: #f5f5f5;
            --grey-text: #b0b0b0;
            --accent-red: #e5383b;
            --accent-red-glow: rgba(229, 56, 59, 0.4);
            --header-height: 70px;
        }

        /* 
        ============================================
        GENERAL & RESET STYLES
        ============================================
        */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: var(--header-height);
        }

        body {
            font-family: 'Lato', sans-serif;
            background-color: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.7;
            min-height: 100vh;
  			display: flex;
  			flex-direction: column;
        }
        
        main {
        flex: 1;
        }
        
        h1 { font-size: 2.8rem; }
        h2 { font-size: 2.2rem; margin-bottom: 1.5rem; }
        p { margin-bottom: 1rem; color: var(--grey-text); }
        a { color: var(--accent-red); text-decoration: none; }
        section { padding: 80px 0; }
        
                h1, h2, h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            line-height: 1.3;
            color: var(--light-text);
        }
        
        .subcont {
        background-color: white;
        }
        
        .subcont h1, .subcont h2, .subcont h3 {
        color: black;
        }
        
        .subcont p {
        color: #666;
        }
        
        .thinhead {
        font-weight: 100;
        font-family: 'Roboto', sans-serif;
        }
        
        ul {
  list-style-type: none;
  padding: 0;     
  margin: 0;        
}

li {
  padding: 0;
  margin: 0;
}

.pagination {
  display: flex;
  gap: 10px;
  margin: 35px 0;
}

.pagination .page {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;       /* make it a circle */
  height: 40px;      /* equal to width */
  border-radius: 50%; /* makes it a circle */
  background-color: var(--accent-red);
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s;
}


.pagination .page.active {
  background-color: white;
  color: var(--accent-red);
}

.pagination .ellipsis {
  color: black;
  padding: 8px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}


        .meta {
        font-size: 0.9rem;
        color: #888;
        text-transform: uppercase;
        }
        
        hr {
border: none;
  height: 1px; 
  background-color: var(--accent-red);
  transform: scaleY(0.5); /* visually thinner */
        }
        
        .container {
            width: 90%;
            max-width: 1100px;
            margin: 0 auto;
        }
        
.columns {
  display: flex;
  gap: 30px; /* space between columns */
}

.left-column {
  flex: 1; /* takes remaining space */
  color: white;
  padding: 0px;
}

.right-column {
  flex: 0 0 30%; /* fixed 30% width */
  color: white;
  padding: 0px;
}


@media (max-width: 768px) {
  .columns {
    flex-direction: column; /* stack vertically */
  }

  .right-column {
    order: -1; /* move to the top */
    width: 100%; /* full width on mobile */
    margin-bottom: 20px; /* optional spacing below */
  }

  .left-column {
    width: 100%; /* full width on mobile */
  }
}


        .cta-button {
            display: inline-block;
            background-color: var(--accent-red);
            color: #fff;
            padding: 12px 28px;
            border-radius: 50px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        

/* Responsive stacking */
@media (max-width: 768px) {
  .columns {
    flex-direction: column;
  }

  .right-column {
    flex: 1 1 100%;
  }
}
        
        /* 
        ============================================
        HEADER & NAVIGATION
        ============================================
        */
        .main-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
            height: var(--header-height);
            background-color: rgba(26, 26, 26, 0.85);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid #333;
        }

        .main-header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }

        .logo {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--light-text);
            text-decoration: none;
            display: flex;
            align-items: center;
            position: relative;
        }

        .main-nav ul {
            list-style: none;
            display: flex;
            align-items: center;
        }

        .main-nav li {
            margin-left: 25px;
        }

        .main-nav a {
            color: var(--grey-text);
            font-weight: 600;
            transition: color 0.3s ease;
        }
        
        .main-nav a:hover, .main-nav a.active {
            color: var(--light-text);
        }

        .main-nav .cta-button {
            margin-left: 25px;
        }
        
        .menu-toggle {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            z-index: 1001;
        }

        .menu-toggle .bar {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px auto;
            background-color: var(--light-text);
            transition: all 0.3s ease-in-out;
        }

        /* 
        ============================================
        HERO SECTION
        ============================================
        */
        .hero {
            padding-top: 140px;
            padding-bottom: 140px;
            background: linear-gradient(rgba(26, 26, 26, 0.4), rgba(26, 26, 26, 1)), url('hero.jpg');
            background-size: cover;
            background-position: center;
            text-align: center;
        }
        
        .hero h1 {
            color: #fff;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 650px;
            margin: 0 auto 2.5rem auto;
            color: var(--light-text);
        }

        /* 
        ============================================
        CONTENT SECTIONS
        ============================================
        */
        
         #about {
            padding-top: 80px;
            padding-bottom: 20px;
        }
        
        
        #about, #faq {
            background-color: var(--dark-bg);
        }
        
        #join {
            background-color: var(--medium-bg);
        }
        
        .section-content {
            display: flex;
            align-items: center;
            gap: 50px;
            background-color: var(--medium-bg);
			padding: 40px;
			border-radius: 10px;
        }
        
        .section-contentdef {
            display: flex;
            align-items: center;
            gap: 50px;
            background-color: inherit;
            padding: inherit;
        }

        .section-content .text-content {
            flex: 1;
        }

        .section-content .image-content {
            flex: 1;
        }

        #about .image-content { /* Reverse order for visual variety */
            order: -1;
        }

        .section-content img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        }
        
        .section-footer {
            text-align: center;
            margin-top: 3rem;
        }

        .section-footer p {
            margin-bottom: 1.5rem;
        }

        /* 
        ============================================
        JOIN SECTION
        ============================================
        */
        .benefits-list {
            list-style: none;
            margin-top: 2rem;
        }

        .benefits-list li {
            padding-left: 35px;
            position: relative;
            margin-bottom: 1rem;
        }
        
        .benefits-list li::before {
            content: '✓';
            color: var(--accent-red);
            font-size: 1.5rem;
            position: absolute;
            left: 0;
            top: -5px;
        }
        
        /* 
        ============================================
        FAQ SECTION
        ============================================
        */
        .faq-item {
            border-bottom: 1px solid var(--medium-bg);
            padding: 1.5rem 0;
        }

        .faq-question {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 1.8rem;
            color: var(--accent-red);
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding-top 0.4s ease-out;
        }
        
        .faq-answer p {
            margin-top: 0;
        }

        .faq-item.active .faq-answer {
            padding-top: 1rem;
            max-height: 300px; /* Adjust if answers are longer */
        }
        
        /* 
        ============================================
        FOOTER
        ============================================
        */

        
        .main-footer p {
            color: var(--grey-text);
            font-size: 0.9rem;
            margin: 0;
        }
        
/* footer wrapper */
.main-footer {
  background: #101010;
  color: #fff;
  padding-block: 2rem;
  font-size: 1rem;                 /* base text a bit larger */
  text-align: center;              /* default centering fallback */
}

.main-footer a {
color: var(--grey-text);
}

/* stack + center children */
.main-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.95rem;                    /* space between copyright + icons */
}

.footer-copy {
  margin: 0;                       /* reset <p> */
  font-weight: 500;
  font-size: 1.8rem;             /* bigger copyright line */
}

.footer-copy a {
color: var(--grey-text);
}

/* icon row */
.footer-social {
  display: flex;
  gap: 1.95rem;
  font-size: 2.2rem;               /* bigger icons */
}

.footer-social a {
  color: inherit;
  transition: transform .25s ease-in-out;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  transform: scale(1.25);
  outline: none;
}

        .footer-links-alt {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0;
            font-size: 0.9rem;
        }
        
        .footer-links-alt .group {
            display: flex;
            align-items: center;
        }
        
        .footer-links-alt a {
            color: var(--grey-text);
            text-decoration: none;
            white-space: nowrap;
        }
        
        .footer-links-alt a:hover {
            text-decoration: none;
        }
        
        .footer-links-alt .pipe {
            margin: 0 10px;
            color: var(--grey-text);
        }
        
        @media (max-width: 768px) {
            .footer-links-alt {
                display: grid;
                grid-template-columns: 1fr;
                gap: 0px;
                justify-items: center;
            }
            
            /* Hide pipes between groups on mobile */
            .footer-links-alt .group:not(:last-child)::after {
                display: none;
            }
        }
        
        /* For desktop: add pipes between groups */
        .footer-links-alt .group:not(:last-child)::after {
            content: " | ";
            margin: 0 10px;
            color: #999;
        }
        
        /* 
        ============================================
        RESPONSIVE DESIGN (Media Queries)
        ============================================
        */
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            
            .section-content {
                flex-direction: column;
                gap: 0;
            }
            #about .image-content {
                order: 1; /* Reset order for stacking */
            }
            .section-content .image-content {
                margin-top: 40px;
            }
        }
        
        @media (max-width: 768px) {
            :root {
                --header-height: 60px;
            }
            
            .main-nav {
                position: fixed;
                top: 0;
                right: 0;
                width: 70%;
                max-width: 300px;
                height: 100vh;
                background-color: var(--medium-bg);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transform: translateX(100%);
                transition: transform 0.3s ease-in-out;
            }
            
            .main-nav.active {
                transform: translateX(0);
            }
            
            .main-nav ul {
                flex-direction: column;
            }
            
            .main-nav li {
                margin: 20px 0;
            }
            
            .main-nav .cta-button {
                margin-left: 0;
                margin-top: 20px;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .menu-toggle.active .bar:nth-child(2) {
                opacity: 0;
            }
            .menu-toggle.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }
            .menu-toggle.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }

            .header-cta-desktop {
                display: none;
            }
        }
        
        
        #tos-page .max-w-4xl {
  max-width: 64rem; /* 1024px */
  margin-left: auto;
  margin-right: auto;
}

#tos-page .space-y-1 > * + * { margin-top: 0.25rem; }
#tos-page .space-y-2 > * + * { margin-top: 0.5rem; }
#tos-page .space-y-6 > * + * { margin-top: 1.5rem; }
#tos-page .space-y-8 > * + * { margin-top: 2rem; }

#tos-page .font-extrabold { font-weight: 800; }
#tos-page .font-bold { font-weight: 700; }

#tos-page .text-center { text-align: center; }
#tos-page .text-gray-400 { color: #aaa; }
#tos-page .text-white { color: #fff; }

#tos-page .border-gray-700 { border-color: #555; }
#tos-page .bg-black { background-color: #000; }

#tos-page .flex { display: flex; }
#tos-page .flex-col { flex-direction: column; }
#tos-page .flex-1 { flex: 1; }

#tos-page .p-4 { padding: 1rem; }
#tos-page .p-6 { padding: 1.5rem; }
#tos-page .pl-6 { padding-left: 1.5rem; }

#tos-page .mb-2 { margin-bottom: 0.5rem; }
#tos-page .mb-4 { margin-bottom: 1rem; }
#tos-page .mb-6 { margin-bottom: 1.5rem; }
#tos-page .mt-2 { margin-top: 0.5rem; }
#tos-page .mt-4 { margin-top: 1rem; }

#tos-page .rounded-xl { border-radius: 0.75rem; }
#tos-page .shadow-lg { box-shadow: 0 10px 15px rgba(0,0,0,0.3); }

/* Scoped "ul" and "li" */
#tos-page .tos-list {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  list-style-type: disc;
}

#tos-page .tos-list li {
  margin-bottom: 0.5rem;
}

/* Scoped headings */
#tos-page h1, #tos-page h2 {
  font-weight: bold;
}

#tos-page h1 { font-size: 2rem; text-align: center; margin-bottom: 1rem; }
#tos-page h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }

#tos-page p { margin-bottom: 1rem; }

#tos-page section {
  margin-bottom: 40px; /* space between sections */
  padding: 0;
}

input {
      width: 100%;
      max-width: 400px;
      padding: 12px;
      margin: 8px 0;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 1rem;
    }
    
    
      .email-signup {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
  }

  .email-signup h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 5px;
  }

  .email-signup p {
    font-size: 15px;
    color: #999;
    margin-bottom: 15px;
  }

  .signup-form {
    display: flex;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
  }

  .signup-form input {
    flex: 1;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px 0 0 6px;
    font-size: 16px;
    margin: 0;
  }

  .signup-form button {
    padding: 10px 20px;
    border: none;
    background-color: #e5383b;
    color: #fff;
    font-size: 14px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
  }

  .signup-form button:hover {
    background-color: #e5383b;
  }

.apply {
    display: inline-block;
    background-color: black;
    padding: 6px 15px;
    border-radius: 25px;
    border: 1px solid #efefef;
    font-size: 0.7rem;
    margin-bottom: 8px;
    cursor: default;
}

#clock { 
            display: flex; 
            gap: 0; 
            justify-content: center; 
            align-items: center;
            color: var(--grey-text); 
            font-size: 0.9rem; 
            flex-wrap: wrap;
        }
        
        .crow { 
            display: flex; 
            gap: 0;
            align-items: center;
        }
        
        #clock span { white-space: nowrap; }
        
        /* Add dots after each span except the last one in each row */
        .crow span:not(:last-child)::after { 
            content: " · "; 
            margin: 0 10px;
        }
        
        /* Add dots after each row except the last one */
        .crow:not(:last-child)::after { 
            content: " · "; 
            margin: 0 10px;
        }
        
        @media (max-width: 768px) {
            #clock { 
                flex-direction: column; 
                align-items: center; 
                gap: 1px; 
            }
            .crow { 
                justify-content: center; 
            }
            /* Remove dots between rows on mobile */
            .crow:not(:last-child)::after { 
                content: ""; 
                margin: 0;
            }
        }