﻿

.fs-intro-section {
    padding: 80px 20px;
    background: var(--bg-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.fs-intro-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.fs-intro-content h1 {
    font-family: 'Baloo 2', cursive;
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.highlight-text {
    font-size: 20px;
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.8;
    padding: 20px;
    background: rgba(43, 124, 255, 0.08);
    border-radius: var(--radius);
    border-left: 4px solid var(--accent-primary);
}

.fs-intro-content p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.fs-intro-image {
    max-width: 900px;
    margin: 0 auto;
}

.fs-intro-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    object-fit: cover;
    height: 500px;
}

.rewards-section {
    padding: 80px 20px;
    background: var(--bg-secondary);
}

.section-title {
    font-family: 'Baloo 2', cursive;
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.reward-card {
    background: var(--bg-primary);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.reward-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.reward-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.reward-header h3 {
    font-size: 20px;
    color: var(--text-primary);
}

.reward-badge {
    background: linear-gradient(120deg, var(--accent-primary), #5A9BFF);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(43, 124, 255, 0.3);
}

.reward-card .accordion {
    background: transparent;
    box-shadow: none;
    margin: 0;
}

.reward-card .accordion-header {
    padding: 12px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 14px;
}

.reward-card .accordion-header:hover {
    background: transparent;
    color: var(--accent-primary);
}

.reward-card .accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.reward-card .accordion.active .accordion-content {
    max-height: 200px;
    padding: 12px 0 0;
}

.reward-card .accordion-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.cards-section {
    padding: 80px 20px;
    background: var(--bg-primary);
}

.cards-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.cards-text h3 {
    font-family: 'Baloo 2', cursive;
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.cards-text p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.cards-features {
    list-style: none;
    padding: 0;
}

.cards-features li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-secondary);
    font-size: 16px;
}

.cards-features li:before {
    content: "★";
    position: absolute;
    left: 0;
    color: var(--accent-secondary);
    font-size: 20px;
}

.cards-images {
    display: flex;
    justify-content: center;
}

.card-image-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    max-width: 500px;
    width: 100%;
}

.card-image-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.card-image-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.tips-section {
    padding: 80px 20px;
    background: var(--bg-secondary);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.tip-card {
    background: var(--bg-primary);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.tip-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.tip-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(120deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 16px;
    box-shadow: 0 4px 12px rgba(43, 124, 255, 0.3);
}

.tip-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.tip-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, #5A9BFF 100%);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-family: 'Baloo 2', cursive;
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}


@media (max-width: 968px) {
    .cards-content {
        grid-template-columns: 1fr;
    }
    
    .cards-images {
        grid-template-columns: 1fr;
    }
    
    .card-image-item img {
        height: 300px;
    }
    
    .rewards-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .fs-intro-section,
    .rewards-section,
    .cards-section,
    .tips-section,
    .cta-section {
        padding: 60px 20px;
    }
    
    .fs-intro-content h1,
    .section-title {
        font-size: 28px;
    }
    
    .highlight-text {
        font-size: 18px;
    }
    
    .fs-intro-image img {
        height: 300px;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
}


