body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #0d1117;
    color: #c9d1d9;
    scroll-behavior: smooth;
}

header.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #161b22;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.logo {
    color: #58a6ff;
    font-size: 1.5em;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #c9d1d9;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #58a6ff;
}

#hero {
    background: linear-gradient(135deg, #1f2937, #0d1117);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 90vh;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 2.5em;
}

.hero-content span {
    color: #58a6ff;
}

.hero-content button {
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #58a6ff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    color: white;
    font-weight: bold;
    transition: background 0.3s;
}

.hero-content button:hover {
    background-color: #1f6feb;
}

section {
    padding: 80px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.project-card {
    background: #161b22;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

/* 🎮 GAMES SECTION */
#games {
    background: #0d1117;
    padding: 80px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.game-card {
    background: #161b22;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.video-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.video-container iframe {
    width: 100%;
    max-width: 700px;
    height: 400px;
    border-radius: 8px;
}

.game-info h3 {
    color: #58a6ff;
    margin-bottom: 10px;
}

.image-gallery {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    margin-top: 20px;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.image-gallery img {
    height: 180px;
    border-radius: 8px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.image-gallery img:hover {
    transform: scale(1.05);
}

.contact-btn {
    background-color: #58a6ff;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s;
}

.contact-btn:hover {
    background-color: #1f6feb;
}

footer {
    text-align: center;
    padding: 20px;
    background: #161b22;
    font-size: 0.9em;
    color: #8b949e;
}