@import url('common.css');

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 20px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--gold);
}

.hero-title {
    font-size: 3.5rem;
    color: var(--gold-dark);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--azure-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Game Section */
.game-section {
    padding: 4rem 20px;
    position: relative;
    z-index: 1;
}

.game-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.game-title {
    color: var(--azure-dark);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.game-area {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--gold-light), var(--azure-light));
    border: 3px solid var(--gold);
    border-radius: 10px;
    margin: 2rem 0;
    overflow: hidden;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.game-eye {
    position: absolute;
    width: 60px;
    height: 60px;
    font-size: 3rem;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    animation: eyeAppear 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    z-index: 10;
}

.game-eye:hover {
    transform: scale(1.2);
}

.game-eye:active {
    transform: scale(1.1);
}

@keyframes eyeAppear {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.game-stats {
    display: flex;
    justify-content: space-around;
    margin: 1.5rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.game-stat {
    background: rgba(212, 175, 55, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    border: 1px solid var(--gold);
}

.game-stat strong {
    color: var(--azure-dark);
    display: block;
    margin-bottom: 0.25rem;
}

.game-stat span {
    font-size: 1.5rem;
    color: var(--gold-dark);
}

/* Features Section */
.features {
    padding: 4rem 20px;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    border: 2px solid transparent;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 10px;
    background: linear-gradient(45deg, var(--gold), var(--azure));
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card:hover::before {
    opacity: 0.5;
}

.feature-icon {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--gold);
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.feature-card:hover .feature-image {
    transform: scale(1.05);
}

.feature-card h3 {
    color: var(--azure-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 20px;
    position: relative;
    z-index: 1;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    color: var(--gold-dark);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gold-light);
}

.accordion-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(212, 175, 55, 0.1);
    transition: background 0.3s;
}

.accordion-header:hover {
    background: rgba(212, 175, 55, 0.2);
}

.accordion-header h3 {
    color: var(--azure-dark);
    font-size: 1.2rem;
    margin: 0;
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gold-dark);
    transition: transform 0.3s;
}

.accordion-item.active .accordion-header::after {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content-inner {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Wisdom Section */
.wisdom-section {
    padding: 4rem 20px;
    position: relative;
    z-index: 1;
}

.wisdom-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.wisdom-content h2 {
    color: var(--gold-dark);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.wisdom-content p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        padding-top: 100px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-image {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-image {
        width: 150px;
        height: 150px;
    }

    .game-area {
        height: 300px;
        min-height: 250px;
    }

    .game-eye {
        width: 50px;
        height: 50px;
        font-size: 2.5rem;
    }

    .game-container {
        padding: 1.5rem;
    }

    .game-title {
        font-size: 1.5rem;
    }

    .wisdom-content {
        padding: 2rem 1.5rem;
    }
}

