* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', 'Noto Sans', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.home-main {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 0;
    padding-bottom: 0;
    width: 100%;
    max-width: 100%;
    background: var(--bg);
    position: relative;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1rem 6rem 1rem;
    margin: 0;
    position: relative;
    min-height: 85vh;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.08) 0%, rgba(26, 34, 54, 0.12) 100%);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(46, 139, 87, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(46, 139, 87, 0.08) 0%, transparent 50%);
}

.hero-content-container {
    max-width: 1100px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content-container h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
    .hero-content-container h1 {
        background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: var(--muted-text);
    line-height: 1.6;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-row {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.cta-btn {
    background: linear-gradient(135deg, var(--primary) 0%, #1e6b47 100%);
    color: #fff;
    border: none;
    padding: 1.1rem 2.2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(46, 139, 87, 0.4);
}

.cta-btn.large {
    padding: 1.3rem 2.8rem;
    font-size: 1.2rem;
}

.secondary-btn {
    background: var(--card-bg);
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 1.1rem 2.2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px) scale(1.05);
}

.secondary-btn.large {
    padding: 1.3rem 2.8rem;
    font-size: 1.2rem;
}

[data-theme="dark"] .secondary-btn {
    background: var(--card-bg);
    color: #fff;
    border: 2px solid var(--primary);
}

[data-theme="dark"] .secondary-btn:hover {
    background: var(--primary);
    color: #fff;
}

/* Hero Chart */
.hero-chart-container {
    margin-top: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.chart-placeholder {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid var(--input-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.chart-placeholder h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--muted-text);
    text-align: center;
    font-weight: 600;
}

.bar-chart-container {
    position: relative;
    width: 100%;
}

.bar-chart.horizontal {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 0 1rem;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bar-label {
    font-size: 1rem;
    color: var(--muted-text);
    font-weight: 600;
    min-width: 140px;
    text-align: left;
}

.bar-container-horizontal {
    flex: 1;
    height: 50px;
    background: transparent;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    border: none;
    overflow: hidden;
}

.bar-horizontal {
    height: 100%;
    width: 0%;
    border-radius: 6px;
    position: relative;
    transition: width 1.5s ease-out;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    animation: fadeInBar 0.3s ease-out forwards;
}

.bar-horizontal.traditional-bar {
    background: linear-gradient(90deg, #e74c3c 0%, #c0392b 100%);
    animation: fadeInBar 0.3s ease-out 0.3s forwards, growBarTraditional 1.5s ease-out 0.6s forwards;
}

.bar-horizontal.ai-bar {
    background: linear-gradient(90deg, var(--primary) 0%, #1e6b47 100%);
    animation: fadeInBar 0.3s ease-out 0s forwards, growBarAI 1.5s ease-out 0.3s forwards;
}

@keyframes fadeInBar {
    to {
        opacity: 1;
    }
}

@keyframes growBarTraditional {
    from {
        width: 0%;
    }
    to {
        width: 65%;
    }
}

@keyframes growBarAI {
    from {
        width: 0%;
    }
    to {
        width: 83%;
    }
}

.chart-improvement {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--input-border);
}

.chart-improvement p {
    color: var(--text);
    font-size: 1rem;
    margin: 0;
}

.chart-improvement strong {
    color: var(--primary);
    font-weight: 700;
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.legend-bar {
    width: 30px;
    height: 12px;
    border-radius: 4px;
}

.legend-bar.ai {
    background: linear-gradient(180deg, var(--primary) 0%, #1e6b47 100%);
}

.legend-bar.traditional {
    background: linear-gradient(180deg, #e74c3c 0%, #c0392b 100%);
}

.legend-label {
    font-size: 0.9rem;
    color: var(--muted-text);
}

.legend-label strong {
    color: var(--text);
    font-weight: 600;
}

.chart-sports-info {
    text-align: center;
    margin-top: 3rem;
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 700;
}

/* Section Styles */
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
    color: var(--text);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--muted-text);
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Why Section */
.why-section {
    width: 100%;
    background: var(--bg);
    padding: 6rem 0;
    position: relative;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.advantage-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--input-border);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.15);
    border-color: var(--primary);
}

.advantage-icon {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    display: block;
}

.advantage-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text);
    font-weight: 600;
}

.advantage-card p {
    color: var(--muted-text);
    font-size: 1rem;
    line-height: 1.6;
}

/* Probability Comparison */
.probability-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.comparison-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2.5rem;
    border: 2px solid var(--input-border);
    text-align: center;
    transition: all 0.3s ease;
}

.comparison-card.highlight {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(46, 139, 87, 0.2);
    transform: scale(1.02);
}

.comparison-card h3 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text);
}

.probability-wheel {
    margin: 2rem 0;
}

.wheel-container {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    position: relative;
    border-radius: 50%;
    background: conic-gradient(
        var(--primary) 0deg calc(var(--percentage) * 3.6deg),
        var(--input-border) calc(var(--percentage) * 3.6deg) 360deg
    );
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.wheel-segment {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wheel-segment.market {
    background: var(--bg);
}

.wheel-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.wheel-label {
    margin-top: 1rem;
    color: var(--muted-text);
    font-size: 0.95rem;
}

/* Automated Research Section */
.automated-research-section {
    width: 100%;
    background: var(--card-bg);
    padding: 6rem 0;
}

.research-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.old-way-card,
.new-way-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2.5rem;
    border: 2px solid var(--input-border);
}

.new-way-card.highlight {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(46, 139, 87, 0.2);
}

.old-way-card h3,
.new-way-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    padding: 0.8rem 0;
    color: var(--muted-text);
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid var(--input-border);
}

.comparison-list li:last-child {
    border-bottom: none;
}

/* Dashboard Preview */
.dashboard-preview {
    margin-top: 3rem;
}

.dashboard-placeholder {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid var(--input-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--input-border);
}

.dashboard-header h3 {
    font-size: 1.3rem;
    color: var(--text);
    margin: 0;
}

.live-badge {
    background: var(--primary);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.odds-table {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.odds-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
    background: var(--input-bg);
    border-radius: 8px;
    align-items: center;
}

.odds-row.header {
    background: transparent;
    font-weight: 600;
    color: var(--muted-text);
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.odds-row span {
    color: var(--text);
    font-size: 0.95rem;
}

.value-positive {
    color: var(--primary);
    font-weight: 600;
}

.action-btn {
    background: var(--primary);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.action-btn:hover {
    background: #1e6b47;
    transform: scale(1.05);
}

/* AI Predictions Section */
.ai-predictions-section {
    width: 100%;
    background: var(--bg);
    padding: 6rem 0;
}

.predictions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.prediction-feature {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--input-border);
    transition: all 0.3s ease;
}

.prediction-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.15);
    border-color: var(--primary);
}

.prediction-feature .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.prediction-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text);
    font-weight: 600;
}

.prediction-feature p {
    color: var(--muted-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Prediction Example */
.prediction-example {
    margin-top: 3rem;
}

.prediction-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2.5rem;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 20px rgba(46, 139, 87, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.prediction-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--input-border);
}

.prediction-header h3 {
    font-size: 1.3rem;
    color: var(--text);
    margin: 0;
}

.confidence-badge {
    background: var(--primary);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.prediction-matchup {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 2rem 0;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.team-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
}

.team-score {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.vs-divider {
    font-size: 1.5rem;
    color: var(--muted-text);
    font-weight: 600;
}

.prediction-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--input-border);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-label {
    color: var(--muted-text);
    font-size: 0.95rem;
}

.detail-value {
    color: var(--text);
    font-weight: 600;
    font-size: 1rem;
}

.detail-value.positive {
    color: var(--primary);
}

/* Features Section */
.features-section {
    width: 100%;
    background: var(--card-bg);
    padding: 6rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2.5rem;
    text-decoration: none;
    color: var(--text);
    border: 2px solid var(--input-border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.2);
    border-color: var(--primary);
}

.feature-card .feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    display: block;
}

.feature-card h3 {
    margin: 0 0 1rem 0;
    font-size: 1.4rem;
    color: var(--text);
    font-weight: 600;
}

.feature-card p {
    margin: 0;
    color: var(--muted-text);
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* Testimonials Section */
.testimonials-section {
    width: 100%;
    background: var(--bg);
    padding: 6rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2.5rem;
    border: 2px solid var(--input-border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.15);
    border-color: var(--primary);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--input-border);
}

.author-name {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

.author-badge {
    background: var(--primary);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Pricing Preview Section */
.pricing-preview-section {
    width: 100%;
    background: var(--card-bg);
    padding: 6rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2.5rem;
    border: 2px solid var(--input-border);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(46, 139, 87, 0.2);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text);
    font-weight: 700;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 0.2rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--muted-text);
    font-weight: 600;
}

.price {
    font-size: 3.5rem;
    color: var(--primary);
    font-weight: 700;
    line-height: 1;
}

.price-decimal {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
    line-height: 1;
}

.period {
    font-size: 1.2rem;
    color: var(--muted-text);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: var(--muted-text);
    font-size: 1rem;
    border-bottom: 1px solid var(--input-border);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: "✓ ";
    color: var(--primary);
    font-weight: 700;
    margin-right: 0.5rem;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
}

.pricing-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.pricing-btn.primary {
    background: var(--primary);
    color: #fff;
}

.pricing-btn.primary:hover {
    background: #1e6b47;
}

/* FAQ Section */
.faq-section {
    width: 100%;
    background: var(--bg);
    padding: 6rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid var(--input-border);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.1);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text);
    font-weight: 600;
}

.faq-item p {
    color: var(--muted-text);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Final CTA Section */
.final-cta-section {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, #1e6b47 100%);
    padding: 6rem 1rem;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.final-cta-section h2 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 2.8rem;
}

.final-cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.final-cta-section .cta-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta-section .cta-btn {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.final-cta-section .cta-btn:hover {
    background: var(--card-bg);
    transform: translateY(-3px) scale(1.05);
}

.final-cta-section .secondary-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.final-cta-section .secondary-btn:hover {
    background: #fff;
    color: var(--primary);
}

/* Footer */
.main-footer {
    text-align: center;
    padding: 1.5rem 0;
    background: var(--footer-bg);
    color: #fff;
    width: 100%;
    font-size: 0.95rem;
    position: static;
    margin: 0;
}

.footer-disclaimer {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content-container,
.advantage-card,
.feature-card,
.testimonial-card,
.pricing-card,
.faq-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 800px) {
    .hero-section {
        min-height: 70vh;
        padding: 6rem 1rem 4rem 1rem;
    }

    .hero-content-container h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .cta-btn,
    .secondary-btn {
        font-size: 1rem;
        padding: 1rem 1.8rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .advantage-grid,
    .predictions-grid,
    .features-grid,
    .testimonials-grid,
    .pricing-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .probability-comparison,
    .research-comparison {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .final-cta-section h2 {
        font-size: 2rem;
    }

    .chart-placeholder {
        padding: 1.5rem;
    }

    .bar-chart {
        gap: 1.5rem;
        height: 180px;
        padding: 0 0.5rem;
    }

    .bar-container {
        height: 140px;
    }

    .bar-label {
        font-size: 0.9rem;
    }

    .bar-value {
        font-size: 0.95rem;
    }

    .chart-legend {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-content-container h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-btn,
    .secondary-btn {
        width: 100%;
        text-align: center;
    }

    section h2 {
        font-size: 1.75rem;
    }

    .why-section,
    .automated-research-section,
    .ai-predictions-section,
    .features-section,
    .testimonials-section,
    .pricing-preview-section,
    .faq-section {
        padding: 4rem 0;
    }

    .advantage-card,
    .feature-card,
    .testimonial-card,
    .pricing-card,
    .faq-item {
        padding: 1.5rem;
    }

    .wheel-container {
        width: 150px;
        height: 150px;
    }

    .wheel-segment {
        width: 110px;
        height: 110px;
    }

    .wheel-value {
        font-size: 2rem;
    }
}

/* NFL Example Section */
.nfl-example-section {
    width: 100%;
    background: var(--card-bg);
    padding: 6rem 0;
}

.nfl-example-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Import NFL card styles */
.nfl-game-card {
    background: var(--card-bg);
    border: 1px solid var(--input-border);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.nfl-game-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.game-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--input-border);
}

.game-time {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 600;
}

.teams-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
    overflow: visible;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.team-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: contain;
    object-position: center;
    padding: 8px;
    overflow: visible;
    background: var(--card-bg);
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.team-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.team-logo-fallback {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--input-border);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    border: 2px solid var(--primary);
}

.team-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    text-align: center;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.team-record {
    font-size: 0.85rem;
    color: var(--muted-text);
    font-weight: 500;
}

.vs-separator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin: 0 1rem;
}

.vs-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.venue-info {
    font-size: 0.8rem;
    color: var(--muted-text);
    text-align: center;
    margin-top: 0.25rem;
}

.win-probability-section {
    margin-bottom: 2rem;
}

.win-probability-label {
    font-size: 0.9rem;
    color: var(--muted-text);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.win-probability-slider {
    position: relative;
    height: 8px;
    border-radius: 4px;
    overflow: visible;
    margin-bottom: 1rem;
}

.win-probability-fill {
    height: 100%;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.win-probability-fill::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 0.4rem;
    height: 1.5rem;
    background: #000000;
    border-radius: 2px;
    z-index: 1;
}

[data-theme="dark"] .win-probability-fill::after {
    background: #FFFFFF;
}

.win-probability-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
}

.win-probability-away,
.win-probability-home {
    color: var(--text);
}

.projected-scores-section {
    margin-bottom: 2rem;
}

.projected-scores-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.projected-score-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    flex: 1;
    text-align: center;
}

.projected-scores-label {
    font-size: 0.75rem;
    color: var(--muted-text);
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.bet-slider-section {
    margin-bottom: 2rem;
}

.bet-slider-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    width: 100%;
}

.bet-slider-label {
    font-size: 0.9rem;
    color: var(--muted-text);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.bet-slider-header .bet-slider-label {
    margin-bottom: 0;
    flex: 1;
}

.bet-spread-tag-left,
.bet-spread-tag-right {
    font-size: 0.75rem;
    color: var(--primary);
    background: var(--input-bg);
    border: 1px solid var(--primary);
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    flex-shrink: 0;
}

.bet-value-tag {
    font-size: 0.75rem;
    color: var(--primary);
    background: var(--input-bg);
    border: 1px solid var(--primary);
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
}

.bet-slider-container {
    margin-bottom: 1rem;
}

.bet-slider {
    position: relative;
    height: 8px;
    border-radius: 4px;
    overflow: visible;
}

.bet-slider-fill {
    height: 100%;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.bet-slider-fill::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 0.4rem;
    height: 1.5rem;
    background: #000000;
    border-radius: 2px;
    z-index: 1;
}

[data-theme="dark"] .bet-slider-fill::after {
    background: #FFFFFF;
}

.bet-slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
}

.bet-slider-away,
.bet-slider-home {
    color: var(--text);
}

.collapsible-sections {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--input-border);
}

.collapsible-section {
    margin-bottom: 0.75rem;
    border: 1px solid var(--input-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.collapsible-section:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.collapsible-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: var(--input-border);
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.collapsible-header:hover {
    background: var(--border);
}

.collapsible-section.active .collapsible-header {
    background: var(--primary);
    color: #ffffff;
}

.collapsible-title {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.collapsible-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.collapsible-section.active .collapsible-icon {
    transform: rotate(180deg);
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--card-bg);
}

.collapsible-section.active > .collapsible-content {
    max-height: 5000px;
    overflow: visible;
}

.previous-games-content {
    padding: 1.25rem;
}

.previous-games-teams-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--input-bg);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    border: 1px solid var(--input-border);
    align-items: center;
}

.previous-games-stat-label-column {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

.previous-games-team-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.previous-games-team-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    object-position: center;
    overflow: visible;
}

.previous-games-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--input-border);
}

.previous-games-row:last-child {
    border-bottom: none;
}

.previous-games-stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.previous-games-stat-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
}

.player-props-content {
    padding: 0.5rem;
}

.player-props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    padding: 1rem;
}

.player-prop-card {
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.2s ease;
}

.player-prop-card:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.player-prop-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--input-border);
}

.prop-type-group {
    margin-bottom: 0.875rem;
}

.prop-type-group:last-child {
    margin-bottom: 0;
}

.prop-type-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.prop-lines-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.prop-line-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--card-bg);
    border: 1px solid var(--input-border);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
}

.prop-line-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    min-width: 45px;
}

.prop-line-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
}

.ai-analysis-content {
    padding: 1.25rem;
}

.ai-analysis-wrapper {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(168, 85, 247, 0.05));
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.ai-analysis-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(99, 102, 241, 0.2);
}

.ai-icon {
    width: 28px;
    height: 28px;
    color: var(--primary);
    flex-shrink: 0;
}

.ai-analysis-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.3px;
}

.ai-analysis-text {
    line-height: 1.7;
}

.ai-analysis-paragraph {
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 1rem;
    text-align: justify;
}

.ai-analysis-paragraph:last-child {
    margin-bottom: 0;
}

/* Responsive for NFL example */
@media (max-width: 768px) {
    .nfl-example-container {
        max-width: 100%;
    }
    
    .nfl-game-card {
        padding: 1rem;
    }
    
    .teams-section {
        gap: 0.5rem;
    }
    
    .team-logo {
        width: 50px;
        height: 50px;
    }
    
    .team-logo-fallback {
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
    }
    
    .team-name {
        font-size: 1rem;
    }
    
    .projected-score-value {
        font-size: 1.5rem;
    }
    
    .player-props-grid {
        grid-template-columns: 1fr;
    }
}
