/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px; /* Optimized for mobile */
}

/* Header Styles */
.main-header {
    background: rgba(26, 35, 126, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 3px solid #ff6b35;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.navigation-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px;
}

.nav-brand .logo-image {
    height: 55px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-brand .logo-image:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: #ff6b35;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.btn-register,
.btn-login {
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-register {
    background: linear-gradient(45deg, #ff6b35, #e55a2b);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-register:hover {
    background: linear-gradient(45deg, #e55a2b, #d44920);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-login {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-login:hover {
    background: #fff;
    color: #1a237e;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Predictor Hero Section */
.predictor-hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 120px 10px 80px;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 50%, #ff6b35 100%);
    position: relative;
    overflow: hidden;
}

.predictor-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="predictor-grid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="rgba(255,255,255,0.06)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23predictor-grid)"/></svg>');
    opacity: 0.4;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    display: flex;
    flex-direction: column;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
}

.predictor-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 25px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-icon {
    font-size: 20px;
}

.predictor-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-start-predicting {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #e55a2b);
    color: #fff;
    padding: 20px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    align-self: flex-start;
}

.btn-start-predicting:hover {
    background: linear-gradient(45deg, #e55a2b, #d44920);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-style: italic;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.predictor-dashboard {
    position: relative;
    z-index: 2;
}

.dashboard-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

/* Live Predictor Section */
.live-predictor-section {
    padding: 100px 10px;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: #1a237e;
    margin-bottom: 60px;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b35, #e55a2b);
    border-radius: 2px;
}

.predictor-tool {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 2px solid #f0f0f0;
}

.tool-header {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    color: #fff;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #28a745;
    animation: pulse 2s infinite;
}

.status-dot.active {
    background: #28a745;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.status-text {
    font-weight: 600;
    font-size: 16px;
}

.last-update {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.predictor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    padding: 40px 30px;
}

.prediction-panel,
.recent-history,
.pattern-analysis {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.prediction-panel h3,
.recent-history h3,
.pattern-analysis h3 {
    color: #1a237e;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.prediction-display {
    margin-bottom: 25px;
}

.predicted-range {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.range-label {
    color: #666;
    font-weight: 500;
}

.range-value {
    color: #ff6b35;
    font-weight: 700;
    font-size: 1.2rem;
}

.confidence-meter {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.confidence-label {
    color: #666;
    font-weight: 500;
    min-width: 80px;
}

.confidence-bar {
    flex: 1;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    min-width: 100px;
}

.confidence-fill {
    height: 100%;
    background: linear-gradient(45deg, #28a745, #20c997);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.confidence-percentage {
    color: #28a745;
    font-weight: 700;
    min-width: 40px;
}

.prediction-advice {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.advice-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 10px;
    border-left: 4px solid;
}

.advice-item.safe {
    background: #e8f5e8;
    border-left-color: #28a745;
}

.advice-item.balanced {
    background: #fff3cd;
    border-left-color: #ffc107;
}

.advice-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.advice-content {
    display: flex;
    flex-direction: column;
}

.advice-content strong {
    color: #1a237e;
    font-size: 14px;
    margin-bottom: 2px;
}

.advice-content span {
    color: #666;
    font-size: 13px;
}

.history-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.history-item {
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    min-width: 50px;
    text-align: center;
}

.history-item.low {
    background: #dc3545;
}

.history-item.medium {
    background: #ffc107;
    color: #000;
}

.history-item.high {
    background: #28a745;
}

.history-item.very-high {
    background: #6f42c1;
}

.history-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #dee2e6;
    flex-wrap: wrap;
    gap: 10px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-label {
    color: #666;
    font-size: 12px;
    margin-bottom: 2px;
}

.stat-value {
    color: #1a237e;
    font-weight: 700;
    font-size: 14px;
}

.pattern-indicators {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.pattern-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    flex-wrap: wrap;
    gap: 10px;
}

.pattern-label {
    color: #666;
    font-weight: 500;
    font-size: 14px;
}

.pattern-value {
    font-weight: 600;
    font-size: 14px;
}

.pattern-value.streak-low {
    color: #dc3545;
}

.pattern-value.trend-up {
    color: #28a745;
}

.pattern-value.risk-medium {
    color: #ffc107;
}

.pattern-recommendation {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    border-radius: 10px;
    padding: 15px;
}

.recommendation-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.rec-icon {
    color: #2196f3;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.rec-content strong {
    color: #1a237e;
    display: block;
    margin-bottom: 5px;
}

.rec-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.tool-disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #856404;
    flex-wrap: wrap;
}

.disclaimer-icon {
    color: #f39c12;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* How Predictor Works Section */
.how-predictor-works-section {
    padding: 100px 10px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.works-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #ff6b35;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.work-step {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid #ff6b35;
}

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

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.work-step h3 {
    color: #1a237e;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.work-step p {
    color: #666;
    line-height: 1.6;
}

.important-note {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.note-header {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    color: #fff;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.note-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.note-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
}

.note-content {
    padding: 30px;
}

.note-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.note-examples {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.example-item {
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid;
}

.example-item:first-child {
    background: #e8f5e8;
    border-left-color: #28a745;
}

.example-item:last-child {
    background: #f8d7da;
    border-left-color: #dc3545;
}

.example-item strong {
    color: #1a237e;
}

/* Prediction Strategies Section */
.prediction-strategies-section {
    padding: 100px 10px;
    background: #fff;
}

.strategies-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.strategy-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.strategy-tab {
    padding: 15px 30px;
    background: #f8f9fa;
    color: #1a237e;
    border: 2px solid #dee2e6;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.strategy-tab.active,
.strategy-tab:hover {
    background: #1a237e;
    color: #fff;
    border-color: #1a237e;
}

.strategy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.strategy-panel {
    display: none;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.strategy-panel.active {
    display: block;
}

.strategy-header {
    padding: 25px 30px;
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
}

.difficulty-badge {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.strategy-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.strategy-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.strategy-body {
    padding: 30px;
}

.strategy-description p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.strategy-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    background: linear-gradient(45deg, #ff6b35, #e55a2b);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #1a237e;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.step-example {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
    font-size: 14px;
    color: #555;
    margin-top: 10px;
}

.step-example strong {
    color: #1a237e;
}

.probability-chart {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.prob-bar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.prob-label {
    min-width: 80px;
    font-size: 14px;
    color: #666;
}

.prob-fill {
    height: 20px;
    background: linear-gradient(45deg, #ff6b35, #e55a2b);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.analysis-example {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
}

.analysis-layer {
    padding: 8px 0;
    border-bottom: 1px solid #dee2e6;
    color: #666;
}

.analysis-layer:last-child {
    border-bottom: none;
}

.analysis-result {
    background: #e8f5e8;
    padding: 10px 15px;
    border-radius: 8px;
    margin-top: 10px;
    border-left: 4px solid #28a745;
}

.bet-sizing-table {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.sizing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    flex-wrap: wrap;
    gap: 10px;
}

.confidence-level {
    font-weight: 600;
    color: #1a237e;
}

.bet-size {
    color: #ff6b35;
    font-weight: 600;
}

.strategy-results {
    background: #e3f2fd;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.strategy-results h4 {
    color: #1a237e;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.result-item {
    text-align: center;
    background: #fff;
    padding: 15px 10px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.result-metric {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.result-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff6b35;
}

/* Predictor Tools Section */
.predictor-tools-section {
    padding: 100px 10px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.tool-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.tool-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
}

.tool-header {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    color: #fff;
    padding: 25px 20px;
    text-align: center;
}

.tool-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.tool-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
}

.tool-content {
    padding: 25px 20px;
}

.tool-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.tool-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
}

.feature-item {
    font-size: 14px;
    color: #666;
    padding: 5px 0;
}

.tool-btn {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #e55a2b);
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    width: 100%;
    text-align: center;
}

.tool-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Success Stories Section */
.success-stories-section {
    padding: 100px 10px;
    background: #fff;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.story-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-left: 5px solid #ff6b35;
}

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

.story-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.player-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff6b35, #e55a2b);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.player-info {
    flex: 1;
}

.player-info strong {
    display: block;
    color: #1a237e;
    font-weight: 600;
    margin-bottom: 2px;
}

.player-info span {
    color: #666;
    font-size: 14px;
}

.story-rating {
    color: #ffc107;
    font-size: 14px;
}

.story-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.story-stats {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 10px;
    flex: 1;
    min-width: 80px;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.stat-value {
    font-weight: 700;
    color: #ff6b35;
    font-size: 14px;
}

.success-disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #856404;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* FAQ Section */
.faq-section {
    padding: 100px 10px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-question {
    background: #1a237e;
    color: #fff;
    padding: 20px 25px;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-question:hover {
    background: #3949ab;
}

.faq-answer {
    padding: 25px;
    display: none;
}

.faq-answer.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 10px;
    background: linear-gradient(135deg, #1a237e 0%, #ff6b35 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-stars" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-stars)"/></svg>');
    opacity: 0.6;
}

.final-cta-section .cta-content {
    position: relative;
    z-index: 2;
}

.final-cta-section h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.final-cta-section p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.cta-stat .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.final-cta-section .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.final-cta-section .btn-cta-primary,
.final-cta-section .btn-cta-secondary {
    display: inline-block;
    padding: 20px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.final-cta-section .btn-cta-primary {
    background: #fff;
    color: #1a237e;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.final-cta-section .btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
}

.final-cta-section .btn-cta-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.final-cta-section .btn-cta-secondary:hover {
    background: #fff;
    color: #1a237e;
    transform: translateY(-3px);
}

.final-cta-section .cta-disclaimer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
}

/* Footer Styles */
.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 10px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.footer-section h4 {
    color: #ff6b35;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 20px;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer-section ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

.footer-section ul li a:hover::before {
    width: 100%;
}

.payment-methods {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #333;
    margin-bottom: 30px;
}

.payment-methods h4 {
    color: #ff6b35;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.payment-icon {
    width: 45px;
    height: 45px;
    filter: brightness(0.8);
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 5px;
    background: rgba(255, 255, 255, 0.1);
}

.payment-icon:hover {
    filter: brightness(1);
    transform: scale(1.1);
    background: rgba(255, 107, 53, 0.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 14px;
}

/* Responsive Design - Mobile optimized */
@media (max-width: 980px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 35, 126, 0.98);
        flex-direction: column;
        padding: 15px;
        gap: 12px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 16px;
    }
    
    .auth-buttons {
        display: flex;
        gap: 8px;
    }
    
    .btn-register,
    .btn-login {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .predictor-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 20px;
    }
    
    .strategy-tabs {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .strategy-tab {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .tools-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .final-cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .final-cta-section .btn-cta-primary,
    .final-cta-section .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .container {
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .auth-buttons {
        gap: 6px;
    }
    
    .btn-register,
    .btn-login {
        padding: 5px 10px;
        font-size: 10px;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .predictor-highlights {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .tool-header {
        padding: 20px 15px;
    }
    
    .tool-content {
        padding: 20px 15px;
    }
    
    .cta-stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .story-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .container {
        padding: 0 8px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .predictor-highlights {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .final-cta-section h2 {
        font-size: 2.2rem;
    }
    
    .final-cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .final-cta-section .btn-cta-primary,
    .final-cta-section .btn-cta-secondary {
        width: 100%;
        max-width: 280px;
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .auth-buttons {
        gap: 4px;
    }
    
    .btn-register,
    .btn-login {
        padding: 4px 8px;
        font-size: 9px;
        min-width: 50px;
        border-radius: 15px;
    }
    
    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .sizing-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
    }
    
    .container {
        padding: 0 10px;
    }
}

@media (max-width: 320px) {
    .navigation-container {
        padding: 10px 8px;
    }
    
    .nav-brand .logo-image {
        height: 45px;
    }
    
    .auth-buttons {
        gap: 3px;
    }
    
    .btn-register,
    .btn-login {
        padding: 3px 6px;
        font-size: 8px;
        min-width: 45px;
        border-radius: 12px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .final-cta-section h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 5px;
    }
    
    .predictor-grid {
        padding: 20px 15px;
    }
    
    .tool-header,
    .tool-content {
        padding: 15px 12px;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print styles */
@media print {
    .main-header,
    .final-cta-section {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
    
    .predictor-hero-section {
        background: #fff;
        color: #000;
    }
    
    .hero-title,
    .section-title {
        color: #000;
    }
}

/* Focus states for accessibility */
.strategy-tab:focus,
.tool-btn:focus,
.btn-start-predicting:focus,
.btn-register:focus,
.btn-login:focus,
.btn-cta-primary:focus,
.btn-cta-secondary:focus {
    outline: 3px solid #ff6b35;
    outline-offset: 2px;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ff6b35;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e55a2b;
}

/* Selection styles */
::selection {
    background: #ff6b35;
    color: #fff;
}

::-moz-selection {
    background: #ff6b35;
    color: #fff;
}

