/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica', Arial, sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/BackGround.jpg');
    background-size: cover;
    background-position: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    padding: 40px 80px;
    z-index: 10;
    position: relative;
}

.logo {
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 14px;
    color: #fff;
}

.nav-links li {
    display: inline-block;
    margin-left: 40px;
}

.nav-links a {
    color: #888;
    font-size: 13px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

.hero-content {
    padding: 0 80px 120px;
}

.hero-title {
    font-size: 80px;
    font-weight: 700;
    line-height: 1.05;
}

.hero-title .highlight {
    color: #38bdf8;
}

.hero-subtitle {
    margin-top: 20px;
    color: #888;
    font-size: 18px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: #38bdf8;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translate(-50%, 0)
    }

    50% {
        transform: translate(-50%, 10px)
    }
}

/* Section */
.section {
    padding: 120px 80px;
}

.section.dark {
    background: #111;
}

.big-text {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
}

.big-text.small {
    font-size: 40px;
    margin-bottom: 50px;
}

/* Games */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
}

.game-card {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.5s;
    position: relative;
}

.game-card:hover {
    transform: translateY(-10px);
}

.game-img-wrapper {
    width: 100%;
    padding-top: 56%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.game-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-img-wrapper img:hover {
    transform: scale(1.05);
}

.game-info {
    margin-top: 15px;
}

.game-info h3 {
    font-size: 20px;
}

.game-info p {
    font-size: 14px;
    color: #aaa;
}

/* Stats */
.stats-grid {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
}

.stat h3 {
    font-size: 36px;
    color: #38bdf8;
}

.stat p {
    font-size: 14px;
    color: #888;
}

/* Footer */
footer {
    text-align: center;
    padding: 60px 80px;
    font-size: 12px;
    color: #444;
}

/* Responsive */
@media(max-width:768px) {
    .hero-content {
        padding: 0 40px 80px;
    }

    .hero-title {
        font-size: 48px;
    }

    .big-text {
        font-size: 32px;
    }

    .big-text.small {
        font-size: 28px;
    }

    .section {
        padding: 80px 40px;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        flex-direction: column;
        gap: 20px;
    }
}