/**
 * 2999 bdt Layout Stylesheet
 * Prefix: g134-
 * Color Palette: #FFB6C1 | #F08080 | #36454F | #C0C0C0 | #FF7F50 | #0A0A0A
 */

/* Root variables */
:root {
  --g134-primary: #FF7F50;
  --g134-secondary: #F08080;
  --g134-accent: #FFB6C1;
  --g134-dark: #0A0A0A;
  --g134-charcoal: #36454F;
  --g134-silver: #C0C0C0;
  --g134-bg: #0A0A0A;
  --g134-card-bg: #1a1a2e;
  --g134-card-border: #2a2a3e;
  --g134-text: #f0f0f0;
  --g134-text-muted: #a0a0b0;
  --g134-gradient-1: linear-gradient(135deg, #FF7F50, #F08080);
  --g134-gradient-2: linear-gradient(135deg, #FFB6C1, #FF7F50);
  --g134-gradient-3: linear-gradient(180deg, #36454F, #0A0A0A);
  --g134-radius: 1rem;
  --g134-radius-sm: 0.6rem;
  --g134-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  font-size: 62.5%;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--g134-bg);
  color: var(--g134-text);
  line-height: 1.5rem;
  font-size: 1.5rem;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
}
a { color: var(--g134-primary); text-decoration: none; }
img { max-width: 100%; display: block; }

/* ========== HEADER ========== */
.g134-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(10,10,10,0.97), rgba(54,69,79,0.95));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,127,80,0.15);
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.g134-logo-area {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.g134-logo-area img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}
.g134-logo-area span {
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--g134-gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.g134-header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.g134-btn-register {
  background: var(--g134-gradient-1);
  color: #fff;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.g134-btn-register:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 12px rgba(255,127,80,0.4);
}
.g134-btn-login {
  background: transparent;
  color: var(--g134-primary);
  border: 1.5px solid var(--g134-primary);
  padding: 0.45rem 1.1rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.g134-btn-login:hover {
  background: rgba(255,127,80,0.1);
}
.g134-menu-toggle {
  background: none;
  border: none;
  color: var(--g134-text);
  font-size: 2.2rem;
  cursor: pointer;
  padding: 0.2rem;
  line-height: 1;
}

/* ========== MOBILE MENU ========== */
.g134-menu-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.g134-overlay-active { opacity: 1; pointer-events: auto; }
.g134-mobile-menu {
  position: fixed;
  top: 0; right: -280px;
  width: 280px;
  height: 100%;
  background: var(--g134-gradient-3);
  z-index: 9999;
  transition: right 0.3s ease;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}
.g134-menu-active { right: 0; }
.g134-menu-close {
  background: none;
  border: none;
  color: var(--g134-text);
  font-size: 2.4rem;
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  cursor: pointer;
}
.g134-mobile-menu nav a {
  display: block;
  color: var(--g134-text);
  padding: 1rem 0;
  font-size: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.g134-mobile-menu nav a:hover {
  color: var(--g134-primary);
}

/* ========== MAIN CONTENT ========== */
.g134-main {
  padding-top: 56px;
  min-height: 100vh;
}

/* ========== CAROUSEL ========== */
.g134-carousel {
  position: relative;
  overflow: hidden;
  margin: 0.8rem 0;
  border-radius: var(--g134-radius);
  margin-left: 1rem;
  margin-right: 1rem;
}
.g134-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}
.g134-carousel-slide {
  min-width: 100%;
  cursor: pointer;
}
.g134-carousel-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/7;
  object-fit: cover;
  border-radius: var(--g134-radius);
}
.g134-carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.g134-carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  border: none;
  transition: background 0.3s;
}
.g134-dot-active { background: var(--g134-primary); }

/* ========== SECTION TITLES ========== */
.g134-section-title {
  font-size: 2rem;
  font-weight: 800;
  margin: 2rem 1rem 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--g134-primary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.g134-section-title i {
  color: var(--g134-primary);
  font-size: 2rem;
}

/* ========== GAME GRID ========== */
.g134-category-label {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 1.5rem 1rem 0.8rem;
  color: var(--g134-accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.g134-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  padding: 0 0.8rem;
}
.g134-game-card {
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
  border-radius: var(--g134-radius-sm);
  padding: 0.4rem;
}
.g134-game-card:hover { transform: scale(1.05); }
.g134-game-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--g134-radius-sm);
  border: 1.5px solid var(--g134-card-border);
}
.g134-game-card span {
  display: block;
  font-size: 1.05rem;
  color: var(--g134-text-muted);
  margin-top: 0.3rem;
  line-height: 1.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ========== CONTENT BLOCKS ========== */
.g134-content-block {
  background: var(--g134-card-bg);
  border: 1px solid var(--g134-card-border);
  border-radius: var(--g134-radius);
  padding: 1.5rem;
  margin: 1rem;
}
.g134-content-block h2 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  color: var(--g134-primary);
}
.g134-content-block h3 {
  font-size: 1.5rem;
  margin: 1rem 0 0.5rem;
  color: var(--g134-accent);
}
.g134-content-block p {
  color: var(--g134-text-muted);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}
.g134-content-block ul {
  padding-left: 1.8rem;
  color: var(--g134-text-muted);
}
.g134-content-block li {
  margin-bottom: 0.4rem;
  line-height: 1.7;
}

/* ========== PROMO BUTTONS ========== */
.g134-promo-btn {
  display: inline-block;
  background: var(--g134-gradient-1);
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1.4rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}
.g134-promo-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(255,127,80,0.4);
}
.g134-promo-text {
  color: var(--g134-primary);
  font-weight: 700;
  cursor: pointer;
  border-bottom: 1px dashed var(--g134-primary);
}

/* ========== TESTIMONIALS ========== */
.g134-testimonial {
  background: rgba(255,127,80,0.06);
  border-left: 3px solid var(--g134-primary);
  border-radius: 0 var(--g134-radius-sm) var(--g134-radius-sm) 0;
  padding: 1rem 1.2rem;
  margin: 0.8rem 0;
}
.g134-testimonial-name {
  font-weight: 700;
  color: var(--g134-primary);
  font-size: 1.3rem;
}
.g134-testimonial-text {
  color: var(--g134-text-muted);
  font-size: 1.3rem;
  margin-top: 0.3rem;
}

/* ========== FOOTER ========== */
.g134-footer {
  background: var(--g134-gradient-3);
  border-top: 1px solid var(--g134-card-border);
  padding: 2rem 1rem 1rem;
  margin-top: 2rem;
}
.g134-footer-brand {
  text-align: center;
  margin-bottom: 1.5rem;
}
.g134-footer-brand p {
  color: var(--g134-text-muted);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-top: 0.5rem;
}
.g134-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.g134-footer-links a {
  background: var(--g134-card-bg);
  border: 1px solid var(--g134-card-border);
  color: var(--g134-text);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 1.1rem;
  transition: border-color 0.2s;
}
.g134-footer-links a:hover { border-color: var(--g134-primary); }
.g134-footer-copy {
  text-align: center;
  color: var(--g134-silver);
  font-size: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--g134-card-border);
}

/* ========== BOTTOM NAV ========== */
.g134-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(26,26,46,0.98), rgba(10,10,10,0.99));
  border-top: 1px solid rgba(255,127,80,0.2);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  backdrop-filter: blur(10px);
}
.g134-bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 56px;
  background: none;
  border: none;
  color: var(--g134-text-muted);
  cursor: pointer;
  transition: color 0.2s, transform 0.15s;
  padding: 0.2rem;
}
.g134-bottom-btn:hover, .g134-bottom-btn:focus {
  color: var(--g134-primary);
  transform: scale(1.1);
}
.g134-bottom-btn i, .g134-bottom-btn span.material-symbols-outlined {
  font-size: 22px;
  margin-bottom: 2px;
}
.g134-bottom-btn span.g134-nav-label {
  font-size: 1rem;
  line-height: 1;
}
.g134-bottom-active {
  color: var(--g134-primary) !important;
}

/* ========== RESPONSIVE ========== */
@media (min-width: 769px) {
  .g134-bottom-nav { display: none; }
  .g134-menu-toggle { display: none; }
}
@media (max-width: 768px) {
  .g134-main { padding-bottom: 72px; }
}

/* ========== UTILITIES ========== */
.g134-text-center { text-align: center; }
.g134-mt-1 { margin-top: 1rem; }
.g134-mb-1 { margin-bottom: 1rem; }
.g134-p-1 { padding: 1rem; }
.g134-hidden { display: none !important; }
.g134-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
