/* Hero Section Styles */
.hero-section {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px; /* Offset for fixed header */
    background-color: var(--bg-color);
    flex-direction: column; /* Stack text and content vertically */
    text-align: center;
}

.hero-text-content {
    margin-bottom: 60px;
    padding: 0 20px;
    max-width: 900px;
}

.hero-main-title {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    font-family: "Aldrich", sans-serif;
    line-height: 1.2;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .hero-main-title {
    /* Gradient Text Effect */
    background: linear-gradient(
        to right,
        var(--accent-color),
        var(--text-color)
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-color);
    opacity: 0.8;
    font-family: "Quicksand", sans-serif;
    line-height: 1.6;
}

/* Responsive adjustments for hero text */
@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-text-content {
        margin-bottom: 40px;
    }
}

/* [data-theme="dark"] .hero-section {
    background: radial-gradient(
        circle at center,
        rgba(148, 226, 26, 0.1) 0%,
        transparent 70%
    );
} */

.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    width: 100%;
}

/* Left Column */
.hero-left {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.app-icon {
    width: 300px; /* Increased size as requested */
    height: 300px;
    border-radius: 40px; /* Rounded corners, not round */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    transition: transform 0.3s, background-color var(--transition-speed);
}

.app-icon:hover {
    transform: scale(1.05);
}

/* Right Column */
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.game-title {
    font-size: 4rem; /* Large text */
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.1;
    color: var(--text-color);
    transition: background-color var(--transition-speed);
}

.game-description {
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
    color: var(--text-color);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

/* Responsive Hero */
@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-left {
        justify-content: center;
    }

    .hero-right {
        align-items: center;
    }

    .game-title {
        font-size: 3rem;
    }

    .game-description {
        text-align: center;
    }

    .app-icon {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 480px) {
    .game-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
}
