﻿

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 20px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px) brightness(0.7);
    transform: scale(1.1);
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: var(--radius);
}

.hero-content {
    color: white;
    padding: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-family: 'Baloo 2', cursive;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInDown 1s ease;
}

.hero-slogan {
    font-size: clamp(18px, 2.5vw, 24px);
    margin-bottom: 20px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-bonus {
    font-size: clamp(16px, 2vw, 20px);
    margin-bottom: 32px;
    padding: 16px 24px;
    background: rgba(95, 211, 168, 0.2);
    border-left: 4px solid var(--accent-secondary);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease 0.5s both;
    font-weight: 600;
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.description-section {
    padding: 80px 20px;
    background: var(--bg-secondary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.description-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.description-text h2 {
    font-family: 'Baloo 2', cursive;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.description-text p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.description-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    object-fit: cover;
    height: 400px;
}

.features-section {
    padding: 80px 20px;
    background: var(--bg-primary);
}

.section-title {
    font-family: 'Baloo 2', cursive;
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.accordion-group {
    max-width: 900px;
    margin: 0 auto;
}

.accordion {
    background: var(--bg-secondary);
    border-radius: var(--radius);
    margin-bottom: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.accordion:hover {
    box-shadow: var(--shadow-hover);
}

.accordion-header {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header:hover {
    background: rgba(43, 124, 255, 0.05);
}

.accordion-header h3 {
    font-size: 20px;
    color: var(--text-primary);
}

.accordion-icon {
    font-size: 24px;
    color: var(--accent-primary);
    transition: var(--transition);
    font-weight: 300;
}

.accordion.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 24px;
}

.accordion.active .accordion-content {
    max-height: 500px;
    padding: 0 24px 24px;
}

.accordion-content p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.fs-section {
    padding: 80px 20px;
    background: var(--bg-secondary);
}

.fs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.fs-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    object-fit: cover;
    height: 500px;
}

.fs-tables {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.reward-card {
    background: var(--bg-primary);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.reward-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.reward-table {
    width: 100%;
    border-collapse: collapse;
}

.reward-table thead {
    background: rgba(43, 124, 255, 0.1);
}

.reward-table th,
.reward-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid rgba(79, 105, 119, 0.1);
}

.reward-table th {
    font-weight: 600;
    color: var(--text-primary);
}

.reward-table td {
    color: var(--text-secondary);
}

.fs-usage-list {
    list-style: none;
    padding: 0;
}

.fs-usage-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-secondary);
}

.fs-usage-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-secondary);
    font-weight: 700;
    font-size: 18px;
}

.tasks-section {
    padding: 80px 20px;
    background: var(--bg-primary);
}

.tasks-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.task-card {
    background: var(--bg-secondary);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.task-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.task-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.task-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.task-card:hover .task-image img {
    transform: scale(1.1);
}

.task-content {
    padding: 24px;
}

.task-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.task-content p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.6;
}

.task-date {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(95, 211, 168, 0.15);
    color: var(--accent-secondary);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.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) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-image-wrapper {
        order: 2;
        min-height: 350px;
    }
    
    .hero-main-image {
        min-height: 350px;
        object-fit: cover;
    }
    
    .hero-content {
        order: 1;
        text-align: center;
    }
    
    .description-content,
    .fs-content {
        grid-template-columns: 1fr;
    }
    
    .description-image img,
    .fs-image img {
        height: 300px;
    }
    
    .tasks-slider {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 80px 20px 40px;
    }
    
    .hero-container {
        gap: 30px;
    }
    
    .hero-image-wrapper {
        min-height: 300px;
    }
    
    .hero-main-image {
        min-height: 300px;
        object-fit: cover;
    }
    
    .description-section,
    .features-section,
    .fs-section,
    .tasks-section,
    .cta-section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
}


