/* Additional Sections CSS for AI Sport Website */

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Applications Section */
.applications-section {
    padding: 6rem 0;
    background: white;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.application-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.application-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.application-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.application-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.application-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Resources Section */
.resources-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.resource-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.resource-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.resource-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.resource-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.resource-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.resource-link:hover {
    color: #1d4ed8;
    transform: translateX(4px);
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-card ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.service-card ul li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #64748b;
    margin: 0;
}

.contact-form {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #1e293b;
    color: #cbd5e1;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-section h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #60a5fa;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1rem;
    text-align: center;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .applications-grid,
    .resources-grid,
    .services-grid,
    .target-groups-grid,
    .hobby-features-grid,
    .achievement-grid,
    .kpi-grid,
    .opportunity-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid,
    .expansion-content,
    .investor-overview {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .market-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .service-card,
    .application-card,
    .resource-card,
    .target-group-card,
    .hobby-feature,
    .achievement-card {
        padding: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .expansion-features {
        gap: 1rem;
    }
    
    .expansion-feature {
        padding: 1rem;
    }
    
    .map-placeholder {
        height: 200px;
    }
    
    .social-links {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .dashboard-mockup {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .target-groups-section,
    .hobby-youth-section,
    .applications-section,
    .resources-section,
    .services-section,
    .international-section,
    .contact-section {
        padding: 3rem 0;
    }
    
    .target-group-card,
    .service-card,
    .application-card,
    .resource-card {
        padding: 1.25rem;
    }
    
    .group-icon,
    .application-icon,
    .resource-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Target Groups Section */
.target-groups-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.target-groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.target-group-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.target-group-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}

.target-group-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.group-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.target-group-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.target-group-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.benefits-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #374151;
    padding: 0.5rem 0;
}

.benefits-list li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* Hobby and Youth Sports Section */
.hobby-youth-section {
    padding: 6rem 0;
    background: white;
}

.hobby-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.hobby-feature {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.hobby-feature:hover {
    transform: translateY(-4px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.75rem;
}

.hobby-feature h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.hobby-feature p {
    color: #64748b;
    line-height: 1.6;
}

/* International Expansion Section */
.international-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.expansion-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: center;
}

.expansion-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.expansion-text p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.expansion-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.expansion-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.expansion-feature i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.expansion-feature h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.expansion-feature p {
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.expansion-map {
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    border: 2px dashed #a5b4fc;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.map-placeholder p {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

/* Enhanced Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
}

/* Social Media Integration */
.social-media-section {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

/* Gamification Elements */
.gamification-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.achievement-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.achievement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.achievement-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.achievement-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Investor Section */
.investor-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.investor-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.investor-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.market-analysis,
.value-proposition {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.market-analysis h3,
.value-proposition h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.market-analysis p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 600;
}

.value-list {
    list-style: none;
    padding: 0;
}

.value-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
    line-height: 1.6;
}

.value-list li:last-child {
    border-bottom: none;
}

.value-list strong {
    color: #1e293b;
    font-weight: 700;
}

.kpi-visualization {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.kpi-visualization h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.kpi-card {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.kpi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.kpi-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.kpi-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.kpi-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 600;
    line-height: 1.4;
}

.investment-opportunity {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.investment-opportunity h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
}

.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.opportunity-card {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.opportunity-card:hover {
    border-color: #2563eb;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.1);
}

.opportunity-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.funding-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 1rem;
}

.opportunity-card p {
    color: #64748b;
    line-height: 1.6;
}

.contact-investors {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-investors h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.contact-investors p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* User Dashboard Section */
.user-dashboard-section {
    padding: 6rem 0;
    background: white;
}

.dashboard-preview {
    background: #f8fafc;
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
    text-align: center;
}

.dashboard-mockup {
    width: 100%;
    max-width: 800px;
    height: 400px;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    border: 2px dashed #a5b4fc;
    margin: 0 auto;
}

.dashboard-mockup i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.dashboard-mockup p {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .applications-section {
        background: #0f172a;
    }
    
    .application-card {
        background: #1e293b;
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .application-card:hover {
        background: #334155;
    }
    
    .application-card h3 {
        color: #f1f5f9;
    }
    
    .application-card p {
        color: #cbd5e1;
    }
    
    .resources-section {
        background: #1e293b;
    }
    
    .resource-card {
        background: #334155;
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .resource-card h3 {
        color: #f1f5f9;
    }
    
    .resource-card p {
        color: #cbd5e1;
    }
    
    .services-section {
        background: #0f172a;
    }
    
    .service-card {
        background: #1e293b;
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .service-card:hover {
        background: #334155;
    }
    
    .service-card h3 {
        color: #f1f5f9;
    }
    
    .service-card p,
    .service-card ul li {
        color: #cbd5e1;
    }
    
    .contact-section {
        background: #1e293b;
    }
    
    .contact-item {
        background: #334155;
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .contact-item h4 {
        color: #f1f5f9;
    }
    
    .contact-item p {
        color: #cbd5e1;
    }
    
    .contact-form {
        background: #334155;
    }
    
    .form-group label {
        color: #f1f5f9;
    }
    
    .form-group input,
    .form-group textarea {
        background: #1e293b;
        border-color: rgba(255, 255, 255, 0.2);
        color: #f1f5f9;
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
        background: #0f172a;
        border-color: #60a5fa;
    }
    
    /* Dark mode for new sections */
    .target-groups-section {
        background: #1e293b;
    }
    
    .target-group-card {
        background: #334155;
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .target-group-card h3 {
        color: #f1f5f9;
    }
    
    .target-group-card p,
    .benefits-list li {
        color: #cbd5e1;
    }
    
    .hobby-youth-section {
        background: #0f172a;
    }
    
    .hobby-feature h3 {
        color: #f1f5f9;
    }
    
    .hobby-feature p {
        color: #cbd5e1;
    }
    
    .international-section {
        background: #1e293b;
    }
    
    .expansion-text h3 {
        color: #f1f5f9;
    }
    
    .expansion-text p {
        color: #cbd5e1;
    }
    
    .expansion-feature {
        background: #334155;
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .expansion-feature h4 {
        color: #f1f5f9;
    }
    
    .expansion-feature p {
        color: #cbd5e1;
    }
    
    .map-placeholder {
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        border-color: rgba(255, 255, 255, 0.2);
        color: #94a3b8;
    }
    
    .section-header h2 {
        color: #f1f5f9;
    }
    
    .section-header p {
        color: #cbd5e1;
    }
    
    /* Dark mode for investor section */
    .investor-section {
        background: #1e293b;
    }
    
    .market-analysis,
    .value-proposition,
    .kpi-visualization,
    .investment-opportunity,
    .contact-investors {
        background: #334155;
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .market-analysis h3,
    .value-proposition h3,
    .kpi-visualization h3,
    .investment-opportunity h3,
    .contact-investors h3 {
        color: #f1f5f9;
    }
    
    .market-analysis p,
    .contact-investors p {
        color: #cbd5e1;
    }
    
    .stat-item {
        background: #1e293b;
    }
    
    .stat-number {
        color: #60a5fa;
    }
    
    .stat-label {
        color: #cbd5e1;
    }
    
    .value-list li {
        color: #cbd5e1;
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }
    
    .value-list strong {
        color: #f1f5f9;
    }
    
    .kpi-card {
        background: #1e293b;
    }
    
    .kpi-number {
        color: #60a5fa;
    }
    
    .kpi-label {
        color: #cbd5e1;
    }
    
    .opportunity-card {
        background: #1e293b;
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .opportunity-card:hover {
        border-color: #60a5fa;
    }
    
    .opportunity-card h4 {
        color: #f1f5f9;
    }
    
    .funding-amount {
        color: #60a5fa;
    }
    
    .opportunity-card p {
        color: #cbd5e1;
    }
}

