/* Hero Section */
.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4rem 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px);
    transform: scale(1.1);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-description {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 600px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.hero-benefit {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.hero-benefit .benefit-text {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.hero-benefit .benefit-text strong {
    font-size: 1.4rem;
    color: var(--gold);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    display: block;
    margin-top: 0.5rem;
}

.hero-cta {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    display: block;
    margin-top: 2rem;
    border-radius: 10px;
}

/* Game Section */
.game-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--light) 0%, #e8e8e8 100%);
}

.game-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 3rem;
}

.game-zone {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.game-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 2rem;
}

.game-progress {
    margin: 2rem 0;
}

.progress-bar {
    width: 100%;
    height: 30px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    border: 2px solid var(--primary-orange);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--gold) 100%);
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 15px;
}

.progress-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin: 0;
}

.progress-text span {
    color: var(--primary-orange);
    font-size: 1.3rem;
}

.fire-rings-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
    min-height: 200px;
}

.fire-ring {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    border: 4px solid var(--gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
}

.fire-ring:hover:not(.activated) {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

.fire-ring.activated {
    background: linear-gradient(135deg, var(--gold) 0%, var(--accent-yellow) 100%);
    border-color: var(--primary-orange);
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.8);
    animation: glow 2s infinite;
    cursor: default;
}

.fire-ring.correct {
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    border-color: #2E7D32;
}

.fire-ring.wrong {
    background: linear-gradient(135deg, var(--red) 0%, #F44336 100%);
    border-color: #C62828;
    animation: wrongShake 0.5s ease-in-out;
}

.game-message {
    min-height: 50px;
    margin: 1.5rem 0;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    display: none;
    transition: all 0.3s;
}

.game-message.success {
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    color: var(--white);
    display: block;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.4);
}

.game-message.correct {
    background: rgba(76, 175, 80, 0.1);
    color: #2E7D32;
    border: 2px solid #4CAF50;
    display: block;
}

.game-message.error {
    background: rgba(229, 57, 53, 0.1);
    color: #C62828;
    border: 2px solid var(--red);
    display: block;
}

.game-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 193, 7, 0.8); }
    50% { box-shadow: 0 0 50px rgba(255, 193, 7, 1); }
}

/* Cards Section */
.cards-section {
    padding: 4rem 0;
    background: var(--white);
}

.cards-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 3rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    border-color: var(--primary-orange);
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--light);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-weight: 600;
    padding: 1.5rem 1.5rem 0.5rem;
}

.card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
    padding: 0 1.5rem 1.5rem;
}

/* Accordion */
.accordion-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--light) 0%, #e8e8e8 100%);
}

.accordion-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 3rem;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    border: 2px solid var(--primary-orange);
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: linear-gradient(135deg, var(--secondary-orange) 0%, var(--primary-orange) 100%);
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 1.5rem;
}

.accordion-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Content Section */
.content-section {
    padding: 4rem 0;
    background: var(--white);
}

.content-text {
    max-width: 900px;
    margin: 0 auto;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.content-section h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.game-description {
    margin-bottom: 2rem;
    text-align: center;
}

.game-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-wrapper {
        gap: 2rem;
    }
    
    .hero-description {
        padding: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-main-image {
        max-width: 100%;
    }
    
    .hero-description {
        padding: 2rem 1.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-text {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-benefit {
        padding: 1.2rem;
        margin: 1.5rem 0;
    }
    
    .hero-benefit .benefit-text {
        font-size: 1rem;
    }
    
    .hero-benefit .benefit-text strong {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card-image {
        height: 200px;
    }
    
    .card h3 {
        font-size: 1.3rem;
        padding: 1rem 1rem 0.5rem;
    }
    
    .card p {
        padding: 0 1rem 1rem;
    }

    .fire-rings-container {
        gap: 1rem;
    }

    .fire-ring {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
}

