/* Reset & Base */

{ margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Segoe UI', sans-serif; background-color: #111; color: #f0f0f0; }


/* Layout */ .app-wrapper { display: flex; flex-direction: row; min-height: 100vh; }

/* Sidebar */ .sidebar { width: 220px; background-color: #1a1a1a; padding: 20px; display: flex; flex-direction: column; justify-content: flex-start; transition: transform 0.3s ease-in-out; } .sidebar h2 { color: #0ff; margin-bottom: 30px; } .sidebar nav a { color: #ccc; margin: 10px 0; text-decoration: none; display: flex; align-items: center; gap: 8px; transition: all 0.3s ease; } .sidebar nav a:hover { color: #0ff; transform: translateX(5px); }

/* Overlay */ .overlay { display: none; position: fixed; top: 0; left: 0; height: 100vh; width: 100vw; background: rgba(0, 0, 0, 0.6); z-index: 998; } .overlay.show { display: block; }

/* Topbar */ .topbar { display: flex; justify-content: space-between; align-items: center; padding: 10px 20px; } .topbar h1 { font-size: 1.5rem; }

.menu-btn { display: none; font-size: 1.8rem; background: none; border: none; color: white; cursor: pointer; }

/* Main Content */ .main-content { flex: 1; display: flex; flex-direction: column; padding: 20px; }

.about-me { background-color: #222; padding: 20px; border-radius: 8px; margin-bottom: 30px; line-height: 1.6; color: #ddd; } .about-me h2 { color: #0ff; margin-bottom: 15px; }

/* Content Sections */ .content-section { padding: 20px; margin-bottom: 30px; background-color: #fff; border-radius: 8px; } .about-me p { color: #555; margin-bottom: 1em; }

/* Hero Banner */ .hero-banner { background-color: #333; color: #fff; text-align: center; padding: 50px 20px; border-radius: 8px; margin-bottom: 30px; } .hero-banner h2 { font-size: 2.5em; margin-bottom: 0.5em; } .hero-banner p { font-size: 1.2em; }

/* Game Cards */ .game-card { background-color: #fff; border: 1px solid #e0e0e0; border-radius: 8px; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; } .game-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); } .game-card img { width: 100%; height: auto; display: block; } .game-card h4 { margin: 15px; font-size: 1.2em; color: #333; } .download-btn { display: block; margin: 0 15px 15px 15px; padding: 10px 15px; background-color: #007bff; color: white; text-align: center; text-decoration: none; border-radius: 5px; transition: background-color 0.3s ease, transform 0.2s ease; } .download-btn:hover { background-color: #0056b3; transform: scale(1.02); }

/* Responsive */ @media (max-width: 768px) { .app-wrapper { flex-direction: column; }

.menu-btn { display: block; }

.sidebar { position: fixed; top: 0; left: 0; height: 100vh; width: 75%; max-width: 280px; transform: translateX(-100%); z-index: 999; }

.sidebar.show { transform: translateX(0); }

.sidebar-title { display: none; }

.sidebar .label { display: none; }

.sidebar.show .label { display: inline; }

.main-content { padding: 15px; }

.game-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }

.sidebar nav a { justify-content: center; } }

