    body {
        margin: 0;
        font-family: "PT Sans Narrow", sans-serif;
        line-height: 1.6;
        background: #212021;
        color: #fff;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    .hide{display: none}





    /* Animation Styles */
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Animation Classes */
    .fade-in {
        opacity: 0;
        animation: fadeIn 1s ease-out forwards;
    }

    .fade-in-up {
        opacity: 0;
        animation: fadeInUp 0.8s ease-out forwards;
        animation-delay: 0.6s;
    }

    /* Keep the slower animations only for index page */
    body.index .fade-in {
        animation: fadeIn 2s ease-out forwards;
    }

    body.index .fade-in-up {
        animation: fadeInUp 1.5s ease-out forwards;
        animation-delay: 0.8s;
    }


    .intro-section {
        position: relative;
        min-height: 100vh;
        background: #212021;
        padding: 40px 5vw;
        display: flex;
        align-items: center;
    }

    .intro-content {
        max-width: 900px;
        position: relative;
        padding: 20px 0;
        margin: auto 0;
    }

    .cue-icon {
        position: absolute;
        top: 40px;
        right: 0;
        width: 50px;
        height: 50px;
        opacity: 0.3;
    }

    .logo {
        width: 250px;
        margin-bottom: 60px;
        margin-left: -10px;
    }

    .hero-text {
        font-size: 4rem;
        line-height: 1.1;
        margin: 0 0 60px 0;
        font-weight: 700;
        letter-spacing: -1px;
    }

    .manifesto {
        margin: 20px 0;
    }

    .manifesto p {
        font-size: 1.4rem;
        margin: 4px 0;
        font-family: "Instrument Serif", serif;
        opacity: 0.8;
    }

    .app-intro {
        margin: 60px 0;
    }

    .app-intro h2 {
        font-size: 2.5rem;
        margin: 0;
        color: #666;
    }

    .app-intro p {
        font-size: 1.2rem;
        margin: 10px 0 40px 0;
        max-width: 500px;
    }

    .email-signup {
        width: 100%;
    }

    .email-signup input,
    .email-signup textarea {
        background: transparent;
        border: 1px solid #333;
        padding: 10px 15px;
        width: 100%;
        color: #fff;
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .email-signup textarea {
        height: 150px;
        resize: vertical;
    }

    .email-signup button {
        background: #00ADEE;
        color: #fff;
        border: none;
        padding: 15px 30px;
        font-size: 1rem;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
        border-radius: 8px;
        width: 100%;
    }

    .email-signup button:hover {
        background: #0090c5;
    }

    @media only screen and (max-width: 768px) {
        .email-signup {
            width: 100%;
            padding: 0;
        }
    }

    /* Updated footer styles */
    .footer {
        padding: 40px 5vw;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: auto;
    }
    
    .footer-content {
        max-width: 850px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.5);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .footer-right {
        display: flex;
        gap: 20px;
    }
    
    .footer-right a {
        color: rgba(255, 255, 255, 0.5);
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .footer-right a:hover {
        color: #00ADEE;
    }

    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            text-align: center;
            gap: 20px;
            font-size: 0.7rem;
        }

        .footer-right {
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .footer-right span {
            display: none !important;
        }

        .footer-left {
            font-size: 0.7rem;
        }
    }

    @media only screen and (max-width: 768px) {
        .hero-text {
            font-size: 3rem;
        }

        .manifesto p {
            font-size: 1.1rem;
        }

        .email-signup {
            margin: 20px 0;
            width: 100%;
        }

        .cue-icon {
            width: 40px;
            height: 40px;
            top: 20px;
        }

        .footer-content {
            gap: 20px;
        }

        .footer a {
            margin-right: 20px;
        }

        .intro-section {
            padding: 40px 5vw;
            min-height: auto;
            height: auto;
        }

        .intro-content {
            padding: 20px 0;
        }

        .logo {
            margin-bottom: 20px;
        }
    }
    
    
    


.center{text-align: center;}

    
    /* Mailchimp form overrides to match our design */
    #mc_embed_signup {
        background: transparent !important;
        font-family: inherit !important;
        width: 100% !important;
        margin: 40px 0;
    }

    #mc_embed_signup form {
        padding: 0 !important;
        display: flex !important;
    }

    #mc_embed_signup_scroll {
        display: flex !important;
        width: 100% !important;
        gap: 0 !important;
        align-items: stretch !important;
    }

    #mc_embed_signup .mc-field-group {
        padding: 0 !important;
        min-height: auto !important;
        width: auto !important;
        margin: 0 !important;
        position: relative !important;
    }

    #mc_embed_signup input.email {
        margin: 0 15px 0 0 !important;
        width: 300px !important;
    }

    #mc_embed_signup .optionalParent {
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
    }

    #mc_embed_signup .foot {
        margin: 0 !important;
        padding: 0 !important;
    }

    #mc_embed_signup .button {
        background: #fff !important;
        color: #000 !important;
        border: none !important;
        padding: 15px 30px !important;
        font-size: 1rem !important;
        font-weight: bold !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        margin: 0 !important;
        height: auto !important;
        line-height: normal !important;
        border-radius: 0 !important;
        width: auto !important;
    }

    #mc_embed_signup .button:hover {
        background: #666 !important;
        color: #fff !important;
    }

    @media only screen and (max-width: 768px) {
        #mc_embed_signup form,
        #mc_embed_signup_scroll {
            flex-direction: column !important;
        }

        #mc_embed_signup input.email {
            width: 100% !important;
            margin: 0 0 15px 0 !important;
        }

        #mc_embed_signup .button {
            width: 100% !important;
        }
    }

    /* Additional Mailchimp form styles */
    #mc_embed_signup div.response {
        margin: 0 !important;
        padding: 0 !important;
        font-weight: normal !important;
        float: none !important;
        position: absolute !important;
        bottom: -30px !important;
        width: auto !important;
        color: #fff !important;
        font-size: 0.9rem !important;
    }

    #mc_embed_signup #mce-success-response {
        color: #00ff00 !important;
    }

    #mc_embed_signup #mce-error-response {
        color: #ff4444 !important;
    }

    #mc_embed_signup div.mce_inline_error {
        background: transparent !important;
        padding: 0 !important;
        margin-top: 5px !important;
        color: #ff4444 !important;
        font-weight: normal !important;
        position: absolute !important;
        bottom: -30px !important;
    }

    /* Fix spacing issues */
    #mc_embed_signup_scroll {
        position: relative !important;
        gap: 0 !important;
    }

    #mc_embed_signup .mc-field-group {
        margin: 0 !important;
    }

    #mc_embed_signup .optionalParent {
        display: inline-block !important;
    }

    @media only screen and (max-width: 768px) {
        #mc_embed_signup div.response,
        #mc_embed_signup div.mce_inline_error {
            position: relative !important;
            bottom: 0 !important;
            margin-top: 10px !important;
        }
    }

    /* Updated Mailchimp form styles */
    #mc_embed_signup input.email {
        text-indent: 0 !important;  /* Remove the text indent */
        padding: 15px 25px !important;
        width: 300px !important;
        margin-right: 15px !important;
    }

    #mc_embed_signup_scroll {
        position: relative !important;
        display: flex !important;
        align-items: flex-start !important;
        gap: 15px !important;
    }

    #mc_embed_signup .mc-field-group {
        width: auto !important;
        padding: 0 !important;
        min-height: auto !important;
        margin-bottom: 25px !important;  /* Add space below for error message */
    }

    /* Fix error message positioning */
    #mc_embed_signup div.mce_inline_error {
        position: absolute !important;
        top: 100% !important;  /* Position below the input */
        left: 0 !important;
        bottom: auto !important;
        margin-top: 5px !important;
        font-size: 0.9rem !important;
    }

    #mc_embed_signup div.response {
        position: absolute !important;
        top: 100% !important;  /* Position below the input */
        left: 0 !important;
        bottom: auto !important;
        margin-top: 5px !important;
    }

    /* Fix button spacing */
    #mc_embed_signup .optionalParent {
        margin: 0 !important;
        padding: 0 !important;
    }

    @media only screen and (max-width: 768px) {
        #mc_embed_signup_scroll {
            flex-direction: column !important;
            align-items: stretch !important;
        }

        #mc_embed_signup input.email {
            width: 100% !important;
            margin-right: 0 !important;
        }

        #mc_embed_signup .button {
            width: 100% !important;
        }

        #mc_embed_signup div.mce_inline_error,
        #mc_embed_signup div.response {
            position: relative !important;
            margin-top: 5px !important;
        }
    }

    /* ConvertKit form styling overrides */
    .formkit-form {
        margin: 40px 0 !important;
        max-width: none !important;
    }

    .formkit-form[data-style="clean"] {
        background: transparent !important;
    }

    .formkit-fields {
        display: flex !important;
        gap: 15px !important;
    }

    .formkit-field {
        margin: 0 !important;
    }

    .formkit-input {
        background: transparent !important;
        border: 1px solid #333 !important;
        padding: 15px 25px !important;
        width: 300px !important;
        color: #fff !important;
        font-size: 1rem !important;
        font-family: inherit !important;
    }

    .formkit-submit {
        margin: 0 !important;
    }

    .formkit-submit span {
        background: #fff !important;
        color: #000 !important;
        border: none !important;
        padding: 15px 30px !important;
        font-size: 1rem !important;
        font-weight: bold !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        font-family: inherit !important;
    }

    .formkit-submit:hover span {
        background: #666 !important;
        color: #fff !important;
    }

    .formkit-powered-by-convertkit-container {
        display: none !important;
    }

    @media only screen and (max-width: 768px) {
        .formkit-fields {
            flex-direction: column !important;
        }

        .formkit-input {
            width: 100% !important;
        }

        .formkit-submit {
            width: 100% !important;
        }
    }

    .countdown {
        margin: 20px 0 0 0;
    }
    
    #countdown-timer {
        font-family: 'Courier New', Courier, monospace;
        font-size: 2rem;
        letter-spacing: 2px;
        color: #00ADEE;
        font-weight: bold;
    }

    @media only screen and (max-width: 768px) {
        #countdown-timer {
            font-size: 1.5rem;
            letter-spacing: 1px;
        }
    }

    /* Updated header styles */
    .header {
        position: fixed;
        top: 40px;
        left: 20px;
        right: 20px;
        max-width: 850px;
        margin: 0 auto;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 15px 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 1000;
        border: 1px solid rgba(255, 255, 255, 0.1);
        left: 0;
        right: 0;
    }

    .header .logo {
        width: 120px;
        margin: 0;
    }

    .menu-button {
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        width: 30px;
        height: 20px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .menu-button span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #fff;
        transition: all 0.3s ease;
        position: absolute;
    }

    .menu-button span:first-child {
        top: 0;
    }

    .menu-button span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    .menu-button span:last-child {
        bottom: 0;
    }

    /* X animation when menu is open */
    .menu-button.active span:first-child {
        transform: rotate(45deg);
        top: 9px;
    }

    .menu-button.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-button.active span:last-child {
        transform: rotate(-45deg);
        bottom: 9px;
    }

    /* Navigation menu styles */
    .nav-menu {
        position: fixed;
        top: 130px;
        left: 20px;
        right: 20px;
        max-width: 850px;
        margin: 0 auto;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 15px;
        padding: 30px;
        transform: translateY(-30px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        border: 1px solid rgba(255, 255, 255, 0.1);
        left: 0;
        right: 0;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .nav-menu a {
        color: #fff;
        text-decoration: none;
        font-size: 2rem;
        font-weight: 700;
        display: block;
        transition: all 0.3s ease;
        opacity: 0.7;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .nav-menu a:hover {
        opacity: 1;
        transform: translateX(10px);
    }

    /* Main content styles */
    .main-content {
            
            padding: 150px 40px 40px;
        
        padding-top: 180px!important;
        padding-bottom: 40px;
        width: 100%;
    }

    .page-title {
        font-size: 3rem;
        margin-bottom: 20px;
        font-weight: 700;
        width: 100%;
    }

    .page-content {
        font-size: 1.2rem;
        line-height: 1.8;
        opacity: 0.9;
    }

    @media only screen and (max-width: 768px) {
        .header {
            top: 20px;
            left: 10px;
            right: 10px;
            padding: 12px 20px;
        }

        .header .logo {
            width: 100px;
        }

        .nav-menu {
            top: 110px;
            left: 10px;
            right: 10px;
            margin: 0 auto;
        }

        .main-content {
            padding: 150px 30px 40px;
        }

        .page-title {
            margin-bottom: 20px;
        }

        .email-signup {
            margin: 20px 0;
            width: 100%;
        }

        .page-content {
            padding: 0;
            width: 100%;
        }

        .email-signup input,
        .email-signup textarea {
            width: 100%;
            box-sizing: border-box;
        }
    }

    main {
        flex: 1;
    }

    .nav-cta {
        margin-top: 20px;
        padding-top: 0;
        border-top: none;
    }

    .app-store-button {
        display: inline-block;
        transition: all 0.3s ease;
        opacity: 1 !important;
        padding: 0;
        background: none;
    }

    .app-store-button:hover {
        transform: translateY(-2px) !important;
        opacity: 1 !important;
    }

    .app-store-img {
        width: 180px;
        height: auto;
    }

    /* Roadmap Timeline Styles */
    .roadmap-section {
        padding: 80px 0;
        max-width: 850px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 2.4rem;
        margin: 30px 0 15px;
        font-weight: 700;
        font-family: "Instrument Serif", serif;
        text-align: left;
    }

    .timeline {
        position: relative;
        padding: 40px 0;
        margin: 0 20px;
    }

    /* Center Line */
    .timeline::after {
        content: '';
        position: absolute;
        width: 2px;
        background: rgba(255, 255, 255, 0.1);
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 0;
    }

    .timeline-item {
        position: relative;
        width: 50%;
        padding: 30px;
    }

    /* Timeline Dots */
    .timeline-item::before {
        content: '';
        position: absolute;
        width: 16px;
        height: 16px;
        background: #212021;
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
    }

    /* Left Items */
    .timeline-item.left {
        left: 0;
        padding-right: 60px;
    }

    .timeline-item.left::before {
        right: -8px;
    }

    /* Right Items */
    .timeline-item.right {
        left: 50%;
        padding-left: 60px;
    }

    .timeline-item.right::before {
        left: -8px;
    }

    /* Content Styling */
    .timeline-content {
        background: #000;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        padding: 25px;
        position: relative;
        transition: all 0.3s ease;
        z-index: 1;
    }

    .timeline-content:hover {
        border-color: #00ADEE;
    }

    .timeline-content .date {
        display: inline-block;
        padding: 5px 15px;
        background: rgba(0, 173, 238, 0.1);
        border-radius: 20px;
        color: #00ADEE;
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .timeline-content h3 {
        font-size: 1.4rem;
        margin: 10px 0;
        color: #fff;
    }

    .timeline-content p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 1rem;
        margin: 0;
    }

    /* Status Indicators */
    .timeline-item.completed::before {
        background: #00ADEE;
        border-color: #00ADEE;
    }

    .timeline-item.active::before {
        background: #212021;
        border-color: #00ADEE;
        box-shadow: 0 0 0 4px rgba(0, 173, 238, 0.2);
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .timeline {
            margin: 0 10px;
        }


        .main-content {
            padding-top: 140px!important;}


body.index .logo{margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 80px;}

        .timeline::after {
            left: 31px;
        }

        .timeline-item {
            width: 100%;
            padding-left: 70px;
            padding-right: 25px;
        }

        .timeline-item.right {
            left: 0;
        }

        .timeline-item::before {
            left: 23px !important;
        }
    }

    /* Add these styles for the updated navigation */
    .nav-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 250px; /* Give some minimum height to space out content */
    }

    .nav-cta {
        margin-top: 20px;
        padding-top: 0;
        border-top: none;
    }

    /* Add these new styles */
    .content-section {
        margin-bottom: 60px;
    }

    .section-subtitle {
        font-size: 2rem;
        margin-bottom: 30px;
        color: #00ADEE;
    }

    /* Team Styles */
    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        margin-top: 30px;
    }

    .team-member {
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        padding: 30px;
        transition: all 0.3s ease;
    }

    .team-member:hover {
        border-color: #00ADEE;
    }

    .team-member h3 {
        font-size: 1.4rem;
        margin: 0 0 5px 0;
    }

    .team-role {
        display: block;
        color: #00ADEE;
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    /* FAQ Styles */
    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .faq-item {
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        border-color: rgba(255, 255, 255, 0.2);
    }

    .faq-item.active {
        border-color: #00ADEE;
    }

    .faq-question {
        width: 100%;
        background: none;
        border: none;
        padding: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        color: #fff;
        font-size: 1.1rem;
        text-align: left;
    }

    .faq-question .arrow {
        transition: transform 0.3s ease;
    }

    .faq-question .arrow.rotated {
        transform: rotate(180deg);
    }

    .faq-answer {
        padding: 0 20px 20px;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
    }

    @media (max-width: 768px) {
        .team-grid {
            grid-template-columns: 1fr;
        }
        
        .section-subtitle {
            font-size: 1.8rem;
        }
        
            .main-content {
                padding: 100px 10px 40px;}
        
    }

    /* Update the main content styles */
    .main-content {
        padding: 100px 10px 40px;
        max-width: 850px;
        margin: 0 auto;
    }

    /* Also update the filter section width */
    .filter-section {
        width: 100%;
        max-width: 850px;
        margin: 0 auto;
    }

    /* And update the workouts list width */
    .workouts-list {
        width: 100%;
        max-width: 850px;
        margin: 2rem auto 0;
    }

    /* Contact Form Styles */
    .contact-intro {
        font-size: 1.2rem;
        margin-bottom: 40px;
        opacity: 0.8;
    }

    .contact-form {
        max-width: 600px;
        margin: 0 auto;
    }

    .form-group {
        margin-bottom: 30px;
    }

    .contact-form label {
        display: block;
        margin-bottom: 10px;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: rgba(255, 255, 255, 0.8);
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 15px 20px;
        border-radius: 8px;
        color: #fff;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
        outline: none;
        border-color: #00ADEE;
        background: rgba(0, 173, 238, 0.05);
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
        color: rgba(255, 255, 255, 0.3);
    }

    .contact-form .submit-button {
        background: #00ADEE;
        color: #fff;
        border: none;
        padding: 15px 40px;
        font-size: 1rem;
        font-weight: bold;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
        width: 100%;
    }

    .contact-form .submit-button:hover {
        background: #0090c5;
        transform: translateY(-2px);
    }

    .contact-form .submit-button:active {
        transform: translateY(0);
    }

    /* Form validation styles */
    .contact-form input:invalid:focus,
    .contact-form textarea:invalid:focus {
        border-color: #ff4444;
    }

    /* Success message styles */
    .form-success {
        background: rgba(0, 255, 0, 0.1);
        border: 1px solid rgba(0, 255, 0, 0.2);
        padding: 20px;
        border-radius: 8px;
        margin-top: 20px;
        text-align: center;
        color: #00ff00;
    }

    @media (max-width: 768px) {
        .contact-form {
            padding: 0 20px;
        }
    }

    .sales-letter {
        padding: 60px 5vw;
        max-width: 850px;
        margin: 0 auto;
    }

    .sales-content {
        margin-top: 60px;
        font-family: "Instrument Serif", serif;
        font-size: 1.8rem;
        line-height: 1.4;
    }

    .lead-text {
        font-size: 1.8rem;
        line-height: 1.4;
        margin-bottom: 40px;
        font-family: "Instrument Serif", serif;
    }

    .section-title {
        font-size: 2.4rem;
        margin: 60px 0 20px;
        font-weight: 700;
        font-family: "PT Sans Narrow", sans-serif;
    }

    .text-blue {
        color: #00ADEE;
        font-family: "PT Sans Narrow", sans-serif;
        font-size: 1.6rem;
        margin-top: 3rem;
        font-weight: bold;
    }

    .features-section {
        margin: 40px 0;
        padding: 30px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
    }

    .features-section h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
        font-family: "PT Sans Narrow", sans-serif;
    }

    .features-section ul {
        list-style: none;
        padding: 0;
    }

    .features-section li {
        font-size: 1.8rem;
        font-family: "Instrument Serif", serif;
        margin: 15px 0;
    }

    .cta-text {
        font-size: 2rem;
        text-align: center;
        margin: 60px 0;
        font-weight: 700;
        color: #00ADEE;
        font-family: "PT Sans Narrow", sans-serif;
    }

    .download-section {
        text-align: left;
        margin: 40px 0;
    }

    .sales-content ul {
        list-style: none;
        padding: 0;
        margin: 1rem 0;
    }

    .sales-content li {
        margin: 0.5rem 0;
        padding-left: 1rem;
        position: relative;
    }

    .sales-content li:before {
        content: "•";
        color: #00ADEE;
        position: absolute;
        left: -1rem;
    }

    .generate-section {
        margin-bottom: 40px;
    }

    .generate-button {
        background: #00ADEE;
        color: #fff;
        border: none;
        font-size: 1rem;
        font-weight: bold;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .generate-button:hover {
        transform: translateY(-2px);
        background: #0090c5;
    }

    .options-toggle-icon {
        background: none;
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: all 0.3s ease;
        width: 48px;
        height: 48px;
    }

    .options-toggle-icon:hover {
        border-color: #00ADEE;
        color: rgba(255, 255, 255, 0.8);
    }

    .options-toggle .arrow {
        transition: transform 0.3s ease;
    }

    .options-toggle .arrow.rotated {
        transform: rotate(180deg);
    }

    .try-another-button {
        background: none;
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #fff;
        padding: 12px 24px;
        border-radius: 8px;
        margin-top: 20px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .try-another-button:hover {
        border-color: #00ADEE;
        color: #00ADEE;
    }

    .workout-display {
        width: 100%;
    }

    .workout-card {
        background: #000;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        transition: all 0.3s ease;
        width: 100%;
        box-sizing: border-box;
    }

    .filter-section {
        width: 100%;
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        padding: 20px;
        margin-bottom: 30px;
    }

    .filter-group {
        margin-bottom: 20px;
    }

    .filter-button {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 8px 16px;
        border-radius: 8px;
        color: #fff;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .filter-button.active {
        background: #00ADEE;
        border-color: #00ADEE;
    }

    .filter-button:hover:not(.active) {
        border-color: #00ADEE;
    }

    /* Only apply margin-top when inside the workout display */
    .workout-display .options-toggle-icon {
        margin-top: 20px;
    }

    .mission-content {
        font-family: "Instrument Serif", serif;
    }

    .mission-content p {
        margin-bottom: 1.5rem;
    }

    .about-hero {
        margin-top: -40px;
    }
