/* Karbit Prime - Simple Pink Theme */
:root {
  --bg: #0f0814;
  --card: #1c1424;
  --accent: #ff2d95;
  --text: #ffeef8;
  --muted: #c8a6c8;
  --border: #3a2a42;
}

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
}

/* Header */
.kp-app-header {
  background: rgba(15, 8, 20, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.kp-app-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.kp-brand-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: white;
}

.kp-brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ff2d95, #ff6ec4);
  color: white;
  border-radius: 18px;
  box-shadow: 0 0 25px rgba(255, 45, 149, 0.7);
}

.kp-brand-title {
  font-size: 1.75rem;
  font-weight: 800;
}

.kp-brand-subtitle {
  font-size: 0.95rem;
  color: #f8c4e0;
}

/* Hamburger */
.kp-hamburger {
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6px 0;
}

.kp-hamburger span {
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 3px;
}

/* Hero */
.main-hero {
  background: linear-gradient(135deg, #3a1f3a, #6b2a5e);
  padding: 60px 20px 50px;
  text-align: center;
  color: white;
}

.hero-title {
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.hero-desc {
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 30px;
}

.filter-main-btn {
  background: linear-gradient(90deg, #ff2d95, #ff6ec4);
  color: white;
  border: none;
  padding: 16px 42px;
  border-radius: 50px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
}

/* Games */
.latest-section {
  padding: 30px 20px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 20px;
}

.game-card {
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.cover {
  height: 220px;
  position: relative;
}

.cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-card h3 {
  padding: 14px;
  font-size: 1.05rem;
}