/* variables */
:root {
  --bkgd-gradient: linear-gradient(90deg, #2F2555 0%, #16112B 100%);
  --text-gradient: linear-gradient(90deg, #7D76FE 0%, #9BE6FE 80%);
  --button-gradient: linear-gradient(90deg, #50B1E3 0%, #453DE0 100%);
  --dark-bg: #191330;
  --dark-secondary: #16213e;
  --accent-purple: #7D76FE;
  --accent-blue: #3b82f6;
  --purple: #7D76FE;
  --blue: #3b82f6;
  --text-light: #e2e8f0;
  --text-muted: #94a3b8;
  --success: #10b981;
  --danger: #ef4444;
}

/* google font hanken grotesk */
@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap');

/* ui reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hanken Grotesk', 'Arial', sans-serif;
    background: linear-gradient(135deg, #2D1B69 0%, #11182C 100%);
    color: white;
    line-height: 1.2;
}

/* general layout styles */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* header & nav */
.header {
    padding: 20px 0;
    position: relative;
    background-color: var(--dark-bg);
}

a {
    color: rgba(200,200,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav ul {
    list-style-type: none;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 0;
}

.nav-links a:not(.btn-secondary) {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

  #menu a[class*="btn"] {
    padding: .5em 1em;
  }

.nav-links a:hover {
    opacity: .87;
}

/* buttons */
.cta-button {
    background: var(--button-gradient);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
    cursor: pointer;
}

.cta-button:hover {
    opacity: .87;
}


.btn-secondary {
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    transition: all 0.3s;
    background: var(--dark-bg);
    border: none;
    border-radius: 25px;
    /*margin: auto;*/
    position: relative;
}

.btn-secondary::before {
    background: var(--button-gradient);
    border-radius: inherit;
    bottom: 0;
    content: "";
    left: 0;
    margin: -2px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    filter: blur(3px);
}

.btn-secondary:hover::before {
    background: var(--button-gradient);
    border-radius: inherit;
    bottom: 0;
    content: "";
    left: 0;
    margin: -2px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    filter: blur(0px);
}

/* home page */
/* hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
    background: var(--bkgd-gradient);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
}

.hero-text h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: left;
    line-height: 1;
}

.hero-text p {
    font-size: 18px;
    text-align: left;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    position: relative;
    z-index: 0;
}

.hero-buttons * {
    margin: .5rem;
}

.hero-image {
    /*background: linear-gradient(45deg, #667EEA, #764BA2);*/
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    height: auto;
}

.flashmessage {
    font-size: 2em;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: var(--purple);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.section-header h4 {
    font-style: italic;
    font-weight: 300;
}

.works-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.works-text ul {
    list-style: none;
    margin-bottom: 20px;
}

.works-text li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.works-text li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667EEA;
}

.chart-container {
    padding: 0;
    text-align: left;
}

.chart {
    width: 100%;
    height: auto;
}

/* Daily Routine Section */
.daily-routine {
    padding: 80px 0;
}

.routine-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.routine-step {
    background: rgba(255,255,255,0.1);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: left;
}

.step-icon {
    width: 2rem;
    height: 2rem;
    margin-bottom: 2rem;
}

.step-title {
    font-weight: bold;
    margin-bottom: 10px;
}

/* Differentiators Section */
.differentiators {
    padding: 80px 0;
    background: var(--purple);
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.diff-item {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: left;
}

.diff-item p {
    color: var(--dark-bg);
}

.diff-icon {
    width: 2rem;
    height: 2rem;
    margin-bottom: 2rem;
    display: block;
}

.diff-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--purple);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.testimonial {
    background: rgba(102, 126, 234, 0.2);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #667EEA;
}

.testimonial-text {
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: bold;
    color: #667EEA;
}

/* Press Section */
.press {
    padding: 60px 0;
    background: var(--purple);
}

.press-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.press-logo img {
    width: 12rem;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.pricing-card {
    background: rgba(255,255,255,0.1);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    background: linear-gradient(45deg, #667EEA, #764BA2);
    /*transform: scale(1.025);*/
}

.plan-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: white;
}

/* Footer CTA */
.footer-cta {
    padding: 80px 0;
    text-align: center;
    background: rgba(0,0,0,0.3);
}

.footer-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.footer-cta p {
    display: block;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
    text-align: left;
}

.subscription-form {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 15px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 16px;
    transition: border-color 0.3s;
}

.email-input::placeholder {
    color: rgba(255,255,255,0.6);
}

.email-input:focus {
    outline: none;
    border-color: #667EEA;
    background: rgba(255,255,255,0.15);
}

.subscribe-btn {
    padding: 15px 25px;
    background: linear-gradient(45deg, #667EEA 0%, #764BA2 100%);
    color: white;
    border: none;
    border-radius: 64px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    white-space: nowrap;
}

.disclaimer {
    font-size: 12px;
    opacity: 0.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #667EEA;
    font-weight: bold;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-column ul li a:hover {
    opacity: .87;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.footer-logo .logo {
    font-size: 24px;
    font-weight: bold;
}

.footer-logo p {
    opacity: 0.7;
    font-size: 14px;
}

.copyright {
    text-align: left;
}

.copyright p {
    opacity: 0.6;
    font-size: 12px;
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content,
    .works-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .routine-steps,
    .diff-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

/* show menu button */
    .nav-links {
        display: none;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .subscription-form {
        flex-direction: column;
    }

    .email-input {
        min-width: auto;
    }

}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-logo {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

.gradient {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/** nav mobile/responsive **/

.nav {
  width: 100%;
  /*position: fixed;*/
  z-index: 10;
  clear: both;
}

ul#menu {
  display: none;
}

ul#menu li {
  list-style-type: none;
}

ul#menu li a {
  width: 100%;
  display: block;
  color: white;
  font-size: 1em;
  padding: 1.5em 1.6em;
  transition: background 0.2s;
  text-decoration: none;
}

ul#menu a:hover {
  opacity: .87;
}

@media screen and (max-width: 1000px) {
  .nav ul#menu {
    /*display: inline;*/
    position: absolute;
    z-index: 99;
    right: 0;
    top: 80px;
    padding: 20px;
    background: var(--dark-bg);
  }

  #menu li {
    padding: .5em 0;
  }

  ul#menu li a {
    padding: .5em .5em;
  }

}

@media screen and (min-width: 1001px) {
  .hamburger-container {
    display: none;
  }

  .nav ul#menu {
    display: inline;
  }

  .nav ul#menu li {
    display: inline-block;
    margin-right: -5px;
  }
}
ul.hamburger li {
  height: 5px;
  background: white;
  content: "";
  position: relative;
  transition: 0.25s ease-in-out;
}

.hidden {
  opacity: 0;
}

.rot45deg {
  transform: rotate(45deg);
  top: 10px !important;
}

.rot-45deg {
  transform: rotate(-45deg);
}

ul.hamburger {
  display: block;
}
ul.hamburger li:nth-child(1) {
  top: 0;
}
ul.hamburger li:nth-child(2) {
  top: 5px;
}
ul.hamburger li:nth-child(3) {
  top: 10px;
}

.hamburger-container {
  width: 38px;
  margin: 1.2em 1.6em;
  height: 30px;
  cursor: pointer;
  float: right;
}


/** forms: registration and contact **/
.registration,
#register {
    background: var(--dark-bg);
    margin: 0;
    padding: 4rem 5%;
    text-align: center;
}

.form-container {
    max-width: 250px;
    margin: 1rem auto;
}

.form-container form {
    text-align: left;
}

.form-group label {
    margin-bottom: .25em;
}

.form-group input,
.form-group textarea {
    flex: 1;
    min-width: 250px;
    padding: 15px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 16px;
    transition: border-color 0.3s;
    margin-bottom: .5em;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667EEA;
    background: rgba(255,255,255,0.15);
}


/**************/
/* Additional page styles: blog, proof, about, FAQs, and how-to (blog post) pages */

/* Page Hero Variations */
.page-hero {
    padding: 60px 0;
}

.page-hero-title {
    text-align: center;
}

.page-hero-subtitle {
    text-align: center;
    font-size: 18px;
    margin-top: 20px;
}

.page-hero-subtitle-large {
    text-align: center;
    font-size: 24px;
    margin-top: 20px;
    opacity: 0.9;
}

/* Blog Styles */
.blog-featured-section {
    padding: 60px 0;
    background: var(--purple);
}

.blog-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
}

.blog-featured-link {
    text-decoration: none;
    color: inherit;
    display: contents;
}

.blog-featured-image {
    width: 100%;
    border-radius: 10px;
}

.blog-featured-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.blog-featured-content p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.blog-featured-content span {
    color: var(--accent-purple);
    font-weight: bold;
}

.blog-posts-section {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.blog-post-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.blog-post-link {
    text-decoration: none;
    color: inherit;
}

.blog-post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-post-content {
    padding: 30px;
}

.blog-post-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.blog-post-content p {
    opacity: 0.8;
    margin-bottom: 15px;
}

.blog-post-content span {
    color: var(--accent-purple);
    font-weight: bold;
}

.blog-ai-thoughts-section {
    padding: 80px 0;
    background: var(--purple);
}

.read-more {
    color: white !important;
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    .blog-featured {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-featured-content h3 {
        font-size: 24px;
    }
}

/* Proof Page Styles */
.proof-verification-section {
    padding: 60px 0;
    background: var(--purple);
    text-align: center;
}

.proof-verification-title {
    font-size: 28px;
    margin-bottom: 20px;
}

.proof-verification-link {
    text-decoration: none;
    color: white;
    display: inline-block;
}

.proof-verification-logo {
    width: 200px;
    margin-bottom: 20px;
}

.proof-verification-rating {
    font-size: 20px;
    margin-bottom: 10px;
}

.proof-verification-stars {
    max-width: 200px;
    margin-bottom: 10px;
}

.proof-verification-badge {
    font-size: 18px;
}

.proof-paper-trading-section {
    padding: 80px 0;
}

.proof-performance-box {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.proof-performance-box p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.proof-stats-container {
    text-align: center;
    margin-bottom: 40px;
}

.proof-stat {
    display: inline-block;
    margin: 0 30px;
}

.proof-stat-label {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.proof-stat-value-large {
    font-size: 42px;
    color: var(--success);
    font-weight: bold;
}

.proof-stat-value-medium {
    font-size: 42px;
    color: var(--danger);
    font-weight: bold;
}

.proof-chart-box {
    /*background: white;*/
    padding: 20px;
    border-radius: 10px;
}

.proof-chart-image {
    width: 100%;
    height: auto;
}

.proof-test-case-section {
    padding: 80px 0;
    background: var(--purple);
}

.proof-test-case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.proof-test-case-text p {
    margin-bottom: 20px;
}

.proof-test-case-link {
    color: white;
    text-decoration: underline;
}

.proof-results-box {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.proof-results-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.proof-results-stat {
    font-size: 18px;
    margin-bottom: 10px;
}

.proof-results-highlight {
    font-size: 24px;
    /*color: var(--success);*/
    font-weight: bold;
    margin-top: 20px;
}

.proof-results-chart {
    width: 100%;
    max-width: 400px;
    margin-top: 30px;
}

.proof-historical-section {
    padding: 80px 0;
}

.proof-historical-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.proof-historical-card {
    background: rgba(255,255,255,0.1);
    padding: 30px 20px;
    border-radius: 15px;
}

.proof-historical-card h3 {
    margin-bottom: 15px;
}

.proof-historical-card p {
    margin-bottom: 10px;
}

.proof-historical-date {
    opacity: 0.8;
}

.proof-historical-label {
    font-weight: bold;
    margin-top: 10px;
}

.proof-historical-result {
    color: var(--success);
    font-weight: bold;
    margin-top: 15px;
}

/* Responsive Proof Styles */
@media (max-width: 768px) {
    .proof-stat {
        display: block;
        margin: 20px 0;
    }

    .proof-test-case-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .proof-historical-grid {
        grid-template-columns: 1fr;
    }

    .proof-stat-value-large {
        font-size: 36px;
    }

    .proof-stat-value-medium {
        font-size: 28px;
    }

    .proof-results-title {
        font-size: 24px;
    }

    .proof-results-chart {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

/* About Page Styles */
.about-content-section {
    padding: 80px 0;
}

.about-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.about-content-box {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.about-content-box p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-content-link {
    color: var(--accent-purple);
    text-decoration: underline;
}

.about-creator-section {
    padding: 80px 0;
    background: var(--purple);
}

.about-creator-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-creator-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.about-creator-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-social-links {
    list-style: none;
    margin-bottom: 20px;
}

.about-social-links li {
    margin-bottom: 10px;
}

.about-social-links a {
    color: var(--white);
    text-decoration: underline;
}

.about-creator-image {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
}

/* Responsive About Styles */
@media (max-width: 768px) {
    .about-creator-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-creator-image {
        max-width: 200px;
        margin: 0 auto;
        display: block;
    }
}

/* FAQs Page Styles */
.faqs-content-section {
    padding: 80px 0;
}

.faqs-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.faq-question {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--accent-purple);
}

.faq-answer {
    font-size: 18px;
    line-height: 1.8;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.faq-answer ol li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.faq-answer strong {
    color: white;
    font-weight: 600;
}

.faq-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(125, 118, 254, 0.3), transparent);
    margin: 40px 0;
}

/* Responsive FAQs Styles */
@media (max-width: 768px) {
    .faq-item {
        padding: 30px 20px;
    }

    .faq-question {
        font-size: 20px;
    }

    .faq-answer {
        font-size: 16px;
    }
}

/* How-To Page Styles */
.howto-content-section {
    padding: 80px 0;
}

.howto-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.howto-intro {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.howto-intro p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.howto-intro p:last-child {
    margin-bottom: 0;
}

.howto-section {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.howto-section-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--accent-purple);
}

.howto-section-subtitle {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 25px;
    font-weight: 600;
}

.howto-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.howto-section ul,
.howto-section ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.howto-section li {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.howto-section strong {
    color: white;
    font-weight: 600;
}

.howto-image-container {
    text-align: center;
    margin: 30px 0;
}

.howto-image {
    max-width: 100%;
    width: 360px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.howto-email-example {
    max-width: 400px;
}

.howto-screenshot {
    width: 640px;
    max-width: 100%;
}

.howto-highlight-box {
    background: rgba(125, 118, 254, 0.2);
    border-left: 4px solid var(--accent-purple);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.howto-highlight-box p {
    margin-bottom: 0;
    font-size: 16px;
}

.howto-cta-section {
    padding: 60px 0;
    background: var(--purple);
}

.howto-cta-box {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.howto-cta-box p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Responsive How-To Styles */
@media (max-width: 768px) {
    .howto-intro,
    .howto-section {
        padding: 30px 20px;
    }

    .howto-section-title {
        font-size: 24px;
    }

    .howto-section-subtitle {
        font-size: 20px;
    }

    .howto-section p,
    .howto-section li {
        font-size: 16px;
    }
}
.mathchallenge {
    padding: 0px;
    margin: 0px;
    opacity: 0.0 !important;
    width: 1px !important;
    height: 1px !important;
}
.mathchallenge input {
    padding: 0px;
    margin: 0px;
    opacity: 0.0 !important;
    width: 1px !important;
    height: 1px !important;
}
