* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #04040A;
    color: #f8fafc;
    line-height: 1.5;
}

.navbar {
    background: rgba(18, 18, 20, 1);
    border-bottom: 1px solid #1e293b;
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 2px;
}

.logo-icon {
    width: 80px;
    height: 80px;
	padding: 5px;
}

.logo span {
    color: #38bdf8;
}

.nav-links {
    display: flex;
    gap: 30px;
    margin-left: auto;
}

.nav-links a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #38bdf8;
}

.hamburger {
    display: none;
    margin-left: auto;
    width: 40px;
    height: 40px;
    padding: 7px;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #f8fafc;
    border-radius: 3px;
    transition: all 0.25s ease;
}

.hero {
    text-align: center;
    padding: 70px 20px 30px;
}

.hero h1 {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: #64748b;
    font-size: 18px;
}

.games-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px 30px 60px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.game-card {
    background: #151520;
    border: 1px solid #1f2937;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.game-card:hover {
    transform: translateY(-30px);
    border-color: #38bdf8;
    box-shadow: 0 15px 20px -5px rgba(0, 0, 0, 0.3), 0 8px 8px -5px rgba(56, 189, 248, 0.1);
}

.game-image {
    width: 100%;
    aspect-ratio: 4;
    background: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    position: relative;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.03);
}

.game-info {
    padding: 12px 14px;
}

.game-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #f8fafc;
}

.game-info p {
    color: #94a3b8;
    font-size: 16px;
}

footer {
    text-align: center;
    padding: 50px 20px;
    margin-top: 50px;
    color: #64748b;
    border-top: 1px solid #1e293b;
}

@media (max-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 34px;
    }
    .games-container {
        padding: 20px 20px 40px;
    }

    .navbar {
        position: sticky;
        height: 60px;
        padding: 0 20px;
    }

    .logo {
        font-size: 24px;
    }

    .logo-icon {
        width: 60px;
        height: 60px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        margin-left: 0;
        padding: 10px 0;
        background: rgba(18, 18, 20, 0.98);
        border-bottom: 1px solid #1e293b;
        flex-direction: column;
        gap: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        padding: 14px 20px;
        text-align: center;
    }

    .nav-links a:hover {
        background: #151520;
    }
}