/* Reset and global styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;


}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: #ffffff;
    color: #374151;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: #7c3aed;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover,
a:focus {
    color: #5b21b6;
    outline: none;
    text-decoration: underline;
}

/* Container with max width and horizontal padding */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* NAVBAR */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 6px rgba(120, 97, 226, 0.1);
    user-select: none;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 24px;
    max-width: 1200px;
    margin: auto;
}

.navbar-logo {
    font-weight: 800;
    font-size: 1.75rem;
    color: #7c3aed;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-logo .material-icons {
    font-size: 32px;
    color: #6d28d9;
}

nav.nav-links {
    display: flex;
    gap: 2rem;
}

nav.nav-links a {
    font-weight: 600;
    font-size: 1rem;
    color: #374151;
    padding: 0.5rem 0;
    position: relative;
}

nav.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 2px;
    width: 0;
    background: #7c3aed;
    border-radius: 2px;
    transition: width 0.3s ease;
}

nav.nav-links a:hover::after,
nav.nav-links a:focus::after {
    width: 100%;
}

/* Hamburger button for mobile */
.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    color: #7c3aed;
}

.hamburger-btn .material-icons {
    font-size: 32px;
}

/* Mobile nav (hidden by default) */
nav.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 1rem 2rem;
    background: #f9f5ff;
    border-bottom: 1px solid #e5e7eb;
}

nav.mobile-nav a {
    font-weight: 600;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
    color: #5b21b6;
}

nav.mobile-nav a:last-child {
    border-bottom: none;
}

/* HERO SECTION */
.hero {
    margin-top: 64px;
}

.hero-container {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.slider {
    flex: 1 1 320px;
    max-width: 320px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(124, 58, 173, 0.2);
    background: #f8f4ff;
}

.slider img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
}

.hero-content {
    flex: 1 1 400px;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: #4b5563;
    margin: 0;
    text-align: left;
}

.hero-content p {
    font-size: 1.125rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Rating stars */
.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fbbf24;
    font-weight: 600;
}

.rating .material-icons {
    font-size: 24px;
    user-select: none;
}

.rating span {
    color: #6b7280;
    font-weight: 400;
    font-size: 1rem;
    user-select: none;
}

/* Download buttons container */
.download-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #7c3aed;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 15px rgba(124, 58, 173, 0.4);
    border: none;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.download-btn:focus-visible {
    outline: 3px solid #ddd6fe;
    outline-offset: 4px;
}

.download-btn:hover,
.download-btn:focus {
    background-color: #5b21b6;
    transform: translateY(-3px);
    color: #fff;
}

.download-btn .material-icons {
    font-size: 28px;
}

/* Features Section */
.features {
    padding: 40px 0;
    margin-top: 50px;
    /* background: #f9f5ff; */
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.features-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    flex: 1 1 200px;
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* More Games Section */
.more-games {
    padding: 40px 0;
    background: #ffffff;
}

.more-games h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.games-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.game-item {
    flex: 1 1 150px;
    text-align: center;
}

.game-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Real Money Section */
.real-money {
    padding: 40px 0;
    background: #ffffff;
    text-align: center;
}

.real-money h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Footer Section */
/* Footer Section */
footer {
    padding: 40px 0;
    background: #1f2937;
    color: #ffffff;
    text-align: left;
    font-family: "Poppins", sans-serif;
}

.footer_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    gap: 20px;
}

.footer_column {
    flex: 1 1 220px;
    min-width: 200px;
    text-align: left;
    color: #fff;

}

.footer_column h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #facc15;
    text-align: left;

}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
    text-align: left;
}

.footer-links a:hover {
    color: #facc15;
    text-decoration: underline;
}


/* Responsive behavior */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        gap: 32px;
        padding: 0 16px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .features-list {
        flex-direction: column;
        align-items: center;
    }

    .games-list {
        flex-direction: column;
        align-items: center;
    }
}



header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 6px rgba(120, 97, 226, .1)
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem 24px;
    max-width: 1200px;
    margin: auto
}

.navbar-logo {
    font-weight: 800;
    font-size: 1.75rem;
    color: #7c3aed;
    display: flex;
    align-items: center;
    gap: .5rem
}

.navbar-logo .material-icons {
    font-size: 32px;
    color: #6d28d9
}

nav.nav-links {
    display: flex;
    gap: 2rem
}

nav.nav-links a {
    font-weight: 600;
    font-size: 1rem;
    color: #374151;
    padding: .5rem 0;
    position: relative
}

nav.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 2px;
    width: 0;
    background: #7c3aed;
    border-radius: 2px;
    transition: width .3s ease
}

nav.nav-links a:hover::after,
nav.nav-links a:focus::after {
    width: 100%
}

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    color: #7c3aed
}

.hamburger-btn .material-icons {
    font-size: 32px
}

nav.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 1rem 2rem;
    background: #f9f5ff;
    border-bottom: 1px solid #e5e7eb
}

nav.mobile-nav a {
    font-weight: 600;
    padding: .75rem 0;
    border-bottom: 1px solid #e5e7eb;
    color: #5b21b6
}

nav.mobile-nav a:last-child {
    border-bottom: none
}

nav.mobile-nav.show {
    display: flex
}

main {
    padding-top: 72px;
    padding-bottom: 72px
}

h1,
h2,
h3 {
    color: #4b5563
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: .25rem;
    text-align: center
}

section.about {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

footer {
    margin-top: 48px;
    text-align: center;
    font-size: .9rem;
    color: #6b7280
}

@media(max-width:768px) {
    nav.nav-links {
        display: none
    }

    .hamburger-btn {
        display: flex
    }

    h1 {
        font-size: 2rem
    }

    main {
        padding-top: 0;
        padding-bottom: 0;
    }
}


.features_link {
    position: relative;
    display: block;
    top: -100px;
    visibility: hidden;
}