/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(5, 8, 17, 0.8) 0%, rgba(10, 14, 39, 0.8) 100%);
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--neon-blue);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.8), 0 0 40px rgba(0, 212, 255, 0.5);
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.hero-reward {
    font-size: 1.3rem;
    color: var(--neon-blue);
    font-weight: bold;
    margin: 1.5rem 0;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

/* Mini Game Section */
.mini-game-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.6) 0%, rgba(5, 8, 17, 0.6) 100%);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.game-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    min-height: 500px;
}

.game-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

.game-content {
    position: relative;
    z-index: 2;
    padding: 3rem;
    text-align: center;
}

.game-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--neon-blue);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
}

.game-content > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.game-quiz {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(5, 8, 17, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3), inset 0 0 50px rgba(0, 212, 255, 0.1);
}

.game-question {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.6;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.game-option-btn {
    padding: 1rem 1.5rem;
    background-color: rgba(5, 8, 17, 0.8);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.game-option-btn:hover:not(:disabled) {
    background-color: rgba(0, 212, 255, 0.1);
    border-color: var(--neon-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4), 0 0 20px rgba(0, 212, 255, 0.2);
    color: var(--neon-blue);
}

.game-option-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.game-option-btn.correct {
    background-color: #4caf50;
    border-color: #4caf50;
    color: white;
    animation: correctPulse 0.5s ease-in-out;
}

.game-option-btn.wrong {
    background-color: #f44336;
    border-color: #f44336;
    color: white;
    animation: wrongShake 0.5s ease-in-out;
}

@keyframes correctPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes wrongShake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-10px);
    }
    75% {
        transform: translateX(10px);
    }
}

.game-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.game-score {
    font-size: 1.2rem;
    color: var(--neon-blue);
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.continue-btn {
    margin-top: 1rem;
}

/* Legends Section */
.legends-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(5, 8, 17, 0.5) 0%, rgba(10, 14, 39, 0.5) 100%);
}

.legends-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.legends-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--neon-blue);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
}

.legends-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.legends-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Secrets Section */
.secrets-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.6) 0%, rgba(5, 8, 17, 0.6) 100%);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.secrets-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--neon-blue);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.8) 0%, rgba(5, 8, 17, 0.8) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 212, 255, 0.1);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background-color: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: bold;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s;
    position: relative;
}

.accordion-header:hover {
    background-color: rgba(0, 212, 255, 0.1);
}

.accordion-header::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    font-size: 1.5rem;
    color: var(--neon-blue);
    transition: transform 0.3s;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

.accordion-item.active .accordion-header::after {
    content: '-';
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.accordion-content p {
    padding: 1.5rem 0;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Gods Section */
.gods-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.6) 0%, rgba(5, 8, 17, 0.6) 100%);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.gods-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--neon-blue);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
}

.gods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.god-card {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.8) 0%, rgba(5, 8, 17, 0.8) 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 10px rgba(0, 212, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.god-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4), 0 0 40px rgba(0, 212, 255, 0.2);
    border-color: var(--neon-blue);
}

.god-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s;
}

.god-card:hover .god-image {
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.god-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.god-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Myths Section */
.myths-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(5, 8, 17, 0.5) 0%, rgba(10, 14, 39, 0.5) 100%);
}

.myths-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--neon-blue);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
}

.myths-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.myth-item {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.8) 0%, rgba(5, 8, 17, 0.8) 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 2px 10px rgba(0, 212, 255, 0.1);
}

.myth-item:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.myth-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.myth-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Game Message Animation */
@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    20%, 80% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .game-content h2 {
        font-size: 2rem;
    }

    .game-content > p {
        font-size: 1rem;
    }

    .game-quiz {
        padding: 1.5rem;
    }

    .game-question {
        font-size: 1.1rem;
        min-height: 50px;
    }

    .game-options {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .game-option-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        min-height: 50px;
    }

    .legends-content {
        grid-template-columns: 1fr;
    }

    .game-controls {
        flex-direction: column;
        gap: 1rem;
    }

    .game-score {
        font-size: 1rem;
    }

    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .gods-grid {
        grid-template-columns: 1fr;
    }

    .god-image {
        height: 180px;
    }

    .legends-section h2,
    .secrets-section h2,
    .gods-section h2,
    .myths-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .game-content {
        padding: 2rem 1rem;
    }

    .game-content h2 {
        font-size: 1.5rem;
    }

    .game-quiz {
        padding: 1rem;
    }

    .game-question {
        font-size: 1rem;
        min-height: 40px;
    }

    .game-option-btn {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
        min-height: 45px;
    }

    .god-image {
        height: 150px;
    }

    .god-card {
        padding: 1.5rem;
    }

    .legends-section h2,
    .secrets-section h2,
    .gods-section h2,
    .myths-section h2 {
        font-size: 1.8rem;
    }
}

