/* Hero Section */
.hero-section {
    padding: 4rem 0;
    background: transparent;
    position: relative;
    z-index: 1;
}

.hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.4);
}

.hero-card-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-card-title {
    font-size: 2.5rem;
    color: var(--gold-orange);
    margin: 0;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-card-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

.hero-card-bonus {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 184, 77, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    border-radius: 10px;
    border: 2px solid rgba(255, 184, 77, 0.3);
}

.hero-card-bonus strong {
    color: var(--gold-orange);
    font-size: 1.2rem;
}

.bonus-highlight {
    color: var(--gold-orange);
    font-weight: 700;
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-cta {
    align-self: flex-start;
    margin-top: 0.5rem;
}

.hero-card-image {
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-image .hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    object-fit: cover;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Game Section */
.game-section {
    padding: 4rem 0;
    background: transparent;
}

.section-title {
    font-size: 2.5rem;
    color: var(--gold-orange);
    text-align: center;
    margin-bottom: 1rem;
}

.section-description {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.game-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

/* Game Stats */
.game-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--section-bg);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-orange);
    line-height: 1;
}

.stat-total,
.stat-unit {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 0.25rem;
}

/* Game Area */
.game-area {
    position: relative;
    min-height: 500px;
    background: linear-gradient(135deg, rgba(45, 26, 15, 0.8) 0%, rgba(61, 31, 10, 0.8) 100%);
    background-image: url('images/game-circles.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

/* Game Symbols */
.game-symbol {
    position: absolute;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: rgba(45, 26, 15, 0.9);
    border: 3px solid;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

.game-symbol:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6);
    z-index: 20;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Collection Effect */
.collection-effect {
    position: absolute;
    font-size: 2rem;
    font-weight: 700;
    pointer-events: none;
    z-index: 100;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Game Controls */
.game-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.game-controls .btn {
    min-width: 150px;
}

/* Game Message */
.game-message {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1rem;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.game-message p {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.game-message.success {
    background: linear-gradient(135deg, rgba(255, 184, 77, 0.2) 0%, rgba(255, 107, 53, 0.2) 100%);
    color: var(--gold-orange);
    border: 2px solid var(--gold-orange);
}

.game-message.success p {
    color: var(--gold-orange);
}

.game-message.success p strong {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 0.5rem;
}

.game-message.game-over {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.2) 0%, rgba(92, 46, 10, 0.2) 100%);
    color: var(--text-light);
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.full-version-btn {
    margin-top: 1.5rem !important;
    text-decoration: none;
}

/* Story Section */
.story-section {
    padding: 4rem 0;
    background: transparent;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    color: var(--gold-orange);
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Accordion Section */
.accordion-section {
    padding: 4rem 0;
    background: transparent;
}

/* Additional Info Section */
.additional-info-section {
    padding: 4rem 0;
    background: transparent;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--primary-orange);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.4);
}

.info-card h3 {
    font-size: 1.8rem;
    color: var(--gold-orange);
    margin-bottom: 1.5rem;
}

.info-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--primary-orange);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.4);
}

.feature-card h3 {
    font-size: 1.8rem;
    color: var(--gold-orange);
    margin-bottom: 1.5rem;
}

.feature-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }

    .hero-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-card {
        padding: 2rem;
    }

    .hero-card-title {
        font-size: 2rem;
    }

    .hero-card-description,
    .hero-card-bonus {
        font-size: 1rem;
    }

    .bonus-highlight {
        font-size: 1.1rem;
    }

    .story-content {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .game-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .game-area {
        min-height: 400px;
    }

    .game-symbol {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 1.5rem 0;
    }

    .hero-card {
        padding: 1.5rem;
    }

    .hero-card-title {
        font-size: 1.75rem;
    }

    .hero-card-description,
    .hero-card-bonus {
        font-size: 0.95rem;
    }

    .hero-card-bonus {
        padding: 1rem;
    }

    .game-symbol {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .game-area {
        min-height: 350px;
    }

    .stat-value {
        font-size: 1.3rem;
    }

    .game-message {
        font-size: 1rem;
        padding: 1rem;
    }
}


