/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/1.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px);
    transform: scale(1.1);
    z-index: 0;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(22, 33, 62, 0.7) 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.hero-bonus {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-image {
    animation: fadeInRight 1s ease-out;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: block;
}

/* Game Section */
.game-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.game-container {
    max-width: 800px;
    margin: 0 auto;
}

.game-area {
    position: relative;
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f1e 100%);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--accent-color);
}

.game-score {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(26, 26, 46, 0.9);
    padding: 10px 20px;
    border-radius: 5px;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 15;
    border: 1px solid var(--accent-color);
}

.game-time {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(26, 26, 46, 0.9);
    padding: 10px 20px;
    border-radius: 5px;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 15;
    border: 1px solid var(--accent-color);
}

.lightning-bolt {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--accent-color);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    animation: lightningPulse 0.5s ease-in-out infinite;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

.lightning-bolt:hover {
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    background-color: rgba(212, 175, 55, 0.4);
}

.lightning-bolt.caught {
    animation: lightningCatch 0.3s ease-out;
    opacity: 0;
    transform: scale(0);
}

@keyframes lightningPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes lightningCatch {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(2);
    }
}

.start-game-btn {
    display: block;
    margin: 2rem auto 0;
    font-size: 1.2rem;
    padding: 15px 40px;
}

.game-buttons {
    display: none;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}

.game-buttons .btn {
    min-width: 200px;
}

.continue-btn,
.restart-game-btn {
    display: inline-block;
}

@media (min-width: 768px) {
    .game-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Story Section */
.story-section {
    padding: 5rem 0;
    background-color: var(--bg-dark);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: block;
}

/* Accordion Section */
.accordion-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background-color: var(--primary-color);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.feature-item h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Zeus Section */
.zeus-section {
    padding: 5rem 0;
    background-color: var(--bg-dark);
}

.zeus-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.zeus-text h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.zeus-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.zeus-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: block;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .story-content,
    .zeus-content {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .game-area {
        height: 400px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .game-area {
        height: 300px;
    }
}

