/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px);
    transform: scale(1.1);
}

.hero-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 2rem 0;
}

.hero-content {
    text-align: left;
    padding: 3rem;
    background: rgba(26, 10, 46, 0.9);
    border-radius: 15px;
    border: 2px solid var(--neon-purple);
    box-shadow: 0 0 40px rgba(199, 125, 255, 0.3), 0 0 80px rgba(157, 78, 221, 0.2);
}

.hero-image-wrapper {
    position: relative;
    z-index: 1;
}

.hero-main-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(199, 125, 255, 0.4), 0 0 80px rgba(157, 78, 221, 0.3);
    border: 2px solid var(--neon-purple);
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--neon-purple);
    text-shadow: 0 0 20px rgba(199, 125, 255, 0.8), 0 0 40px rgba(157, 78, 221, 0.6), 3px 3px 6px rgba(0, 0, 0, 0.8);
    font-weight: bold;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-shadow: 0 0 10px rgba(199, 125, 255, 0.5);
    line-height: 1.6;
}

.hero-bonus {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--neon-pink);
    font-weight: bold;
    text-shadow: 0 0 15px rgba(224, 170, 255, 0.7);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.hero-feature {
    padding: 1rem;
    background: rgba(199, 125, 255, 0.1);
    border-radius: 10px;
    border: 1px solid var(--neon-purple);
    box-shadow: 0 0 15px rgba(199, 125, 255, 0.2);
}

.hero-feature h3 {
    color: var(--neon-purple);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(199, 125, 255, 0.5);
}

.hero-feature p {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.hero-btn {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
}

/* Quiz Game Section */
.quiz-game-section {
    padding: 4rem 0;
    background: var(--bg-section);
    border-top: 2px solid var(--neon-purple);
    border-bottom: 2px solid var(--neon-purple);
}

.quiz-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-section);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 0 40px rgba(199, 125, 255, 0.4), 0 0 80px rgba(157, 78, 221, 0.3);
    border: 2px solid var(--neon-purple);
}

.quiz-intro {
    text-align: center;
    color: var(--text-light);
}

.quiz-intro h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--neon-purple);
    text-shadow: 0 0 20px rgba(199, 125, 255, 0.8);
}

.quiz-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.quiz-start-btn,
.quiz-restart-btn {
    font-size: 1.3rem;
    padding: 1rem 3rem;
    margin-top: 1rem;
}

.quiz-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(199, 125, 255, 0.1);
    border-radius: 10px;
    border: 2px solid var(--neon-purple);
}

.quiz-score,
.quiz-question-number {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--neon-purple);
    text-shadow: 0 0 15px rgba(199, 125, 255, 0.6);
}

.quiz-question {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(199, 125, 255, 0.1);
    border-radius: 10px;
    border: 2px solid var(--neon-purple);
    text-align: center;
    line-height: 1.6;
}

.quiz-answers {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quiz-answer-btn {
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    background: var(--bg-dark);
    color: var(--text-light);
    border: 2px solid var(--neon-purple);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

.quiz-answer-btn:hover {
    background: rgba(199, 125, 255, 0.2);
    border-color: var(--neon-pink);
    transform: translateX(10px);
    box-shadow: 0 0 20px rgba(199, 125, 255, 0.4);
}

.quiz-answer-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.quiz-answer-btn.correct {
    background: rgba(0, 255, 0, 0.2);
    border-color: #00ff00;
    color: #00ff00;
}

.quiz-answer-btn.incorrect {
    background: rgba(255, 0, 0, 0.2);
    border-color: #ff0000;
    color: #ff0000;
}

.quiz-feedback {
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    min-height: 50px;
}

.quiz-feedback.correct {
    color: #00ff00;
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid #00ff00;
}

.quiz-feedback.incorrect {
    color: #ff0000;
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff0000;
}

.quiz-results {
    text-align: center;
    color: var(--text-light);
}

.quiz-results h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--neon-purple);
    text-shadow: 0 0 20px rgba(199, 125, 255, 0.8);
}

.final-score {
    font-size: 2rem;
    font-weight: bold;
    color: var(--neon-purple);
    margin-bottom: 2rem;
    text-shadow: 0 0 15px rgba(199, 125, 255, 0.6);
}

.quiz-message {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light);
    padding: 1.5rem;
    background: rgba(199, 125, 255, 0.1);
    border-radius: 10px;
    border: 2px solid var(--neon-purple);
}

.game-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 800px;
}

.stat-item {
    background: rgba(199, 125, 255, 0.1);
    border: 2px solid var(--neon-purple);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 0 20px rgba(199, 125, 255, 0.3);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.score-display,
.timer-display,
.collected-display {
    font-size: 2rem;
    font-weight: bold;
    color: var(--neon-purple);
    text-shadow: 0 0 20px rgba(199, 125, 255, 0.8);
    transition: all 0.3s;
}

.game-controls {
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.game-start-btn,
.game-reset-btn {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
}

.game-field {
    position: relative;
    width: 100%;
    min-height: 400px;
    max-height: 500px;
    border: 2px dashed var(--neon-purple);
    border-radius: 15px;
    margin: 2rem 0;
    background: rgba(199, 125, 255, 0.05);
    overflow: hidden;
}

.game-field.active {
    border-style: solid;
    background: rgba(199, 125, 255, 0.1);
}

.game-waiting {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-dark);
    font-size: 1.2rem;
    text-align: center;
}

.god-card {
    position: absolute;
    width: 120px;
    height: 140px;
    background: var(--bg-section);
    border: 3px solid;
    border-radius: 15px;
    padding: 1rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    opacity: 0;
    transform: scale(0.5);
    box-shadow: 0 0 20px rgba(199, 125, 255, 0.3);
    z-index: 10;
}

.god-card.spawned {
    opacity: 1;
    transform: scale(1);
    animation: godSpawn 0.5s ease-out;
}

.god-card:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(199, 125, 255, 0.6);
}

.god-emoji {
    font-size: 3rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.god-name {
    font-size: 1rem;
    font-weight: bold;
    color: var(--text-light);
    text-shadow: 0 0 10px rgba(199, 125, 255, 0.5);
}

.god-points {
    font-size: 0.9rem;
    color: var(--neon-pink);
    font-weight: bold;
    text-shadow: 0 0 10px rgba(224, 170, 255, 0.8);
}

@keyframes godSpawn {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-180deg);
    }
    50% {
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.collect-effect {
    position: absolute;
    font-size: 2rem;
    font-weight: bold;
    pointer-events: none;
    animation: collectFloat 1s ease-out forwards;
    text-shadow: 0 0 15px currentColor;
    z-index: 20;
}

@keyframes collectFloat {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-150px) scale(1.5);
    }
}

.game-result {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(199, 125, 255, 0.1);
    border: 2px solid var(--neon-purple);
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(199, 125, 255, 0.3);
}

.game-result h3 {
    color: var(--neon-purple);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(199, 125, 255, 0.8);
}

.game-result p {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.6;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.click-effect {
    position: absolute;
    color: var(--neon-pink);
    font-size: 1.5rem;
    font-weight: bold;
    pointer-events: none;
    animation: floatUp 1s ease-out forwards;
    text-shadow: 0 0 10px rgba(224, 170, 255, 0.8);
    z-index: 10;
    white-space: nowrap;
}

.click-effect.auto-effect {
    color: var(--neon-purple);
    font-size: 1.2rem;
    opacity: 0.8;
}

@keyframes floatUp {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1.5);
    }
}

.level-up-effect {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: var(--neon-purple);
    font-weight: bold;
    text-shadow: 0 0 30px rgba(199, 125, 255, 0.8), 0 0 60px rgba(157, 78, 221, 0.6);
    z-index: 9999;
    animation: levelUp 2s ease-out forwards;
    pointer-events: none;
}

@keyframes levelUp {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }
}

.game-target:hover {
    background: rgba(212, 175, 55, 1);
    transform: scale(1.1);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--neon-purple);
    text-shadow: 0 0 20px rgba(199, 125, 255, 0.6), 0 0 40px rgba(157, 78, 221, 0.4);
    font-weight: bold;
}

/* Info Section */
.info-section {
    padding: 4rem 0;
    background: var(--bg-section);
    border-top: 2px solid var(--neon-purple);
}

.info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.info-text h2 {
    color: var(--neon-purple);
    text-shadow: 0 0 15px rgba(199, 125, 255, 0.5);
}

.info-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.info-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Accordion Section */
.accordion-section {
    padding: 4rem 0;
    background: var(--bg-dark);
    border-top: 2px solid var(--neon-purple);
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--bg-section);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(199, 125, 255, 0.2);
    border: 1px solid var(--neon-purple);
}

.accordion-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    transition: all 0.3s;
    border-bottom: 2px solid var(--neon-purple);
}

.accordion-header:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--bg-section) 100%);
    box-shadow: 0 0 20px rgba(199, 125, 255, 0.3);
}

.accordion-header h3 {
    font-size: 1.3rem;
    margin: 0;
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: bold;
    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;
    padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
    padding: 1.5rem;
}

.accordion-content {
    background: var(--bg-section);
}

.accordion-content p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.accordion-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.accordion-content ul li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* Additional Info Section */
.additional-info-section {
    padding: 4rem 0;
    background: var(--bg-section);
    border-top: 2px solid var(--neon-purple);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--bg-section);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(199, 125, 255, 0.2);
    border: 2px solid var(--neon-purple);
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(199, 125, 255, 0.4);
    border-color: var(--neon-pink);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-purple);
    text-shadow: 0 0 10px rgba(199, 125, 255, 0.5);
}

.info-card p {
    line-height: 1.8;
    color: var(--text-light);
}

/* Registration Section - Not used anymore */
.registration-section {
    padding: 4rem 0;
    background: var(--bg-section);
    border-top: 2px solid var(--neon-purple);
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.registration-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
    font-weight: bold;
}

.registration-form-wrapper {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.registration-form .form-group {
    margin-bottom: 1.5rem;
}

.registration-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.registration-form input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.registration-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.registration-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s both;
}

.fade-in-delay-3 {
    animation: fadeIn 1s ease-in 0.9s both;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
        padding: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-bonus {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .info-content,
    .registration-content {
        grid-template-columns: 1fr;
    }

    .quiz-container {
        padding: 2rem 1.5rem;
    }

    .quiz-intro h3 {
        font-size: 1.5rem;
    }

    .quiz-intro p {
        font-size: 1rem;
    }

    .quiz-question {
        font-size: 1.2rem;
        padding: 1.5rem;
    }

    .quiz-answer-btn {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }

    .quiz-header {
        flex-direction: column;
        gap: 1rem;
    }

    .quiz-score,
    .quiz-question-number {
        font-size: 1.1rem;
    }

    .quiz-results h3 {
        font-size: 2rem;
    }

    .final-score {
        font-size: 1.5rem;
    }

    .quiz-message {
        font-size: 1.1rem;
    }
}

/* Accordion JavaScript functionality */
.accordion-header {
    user-select: none;
}

