/**
 * Pinas77Login - Theme Stylesheet
 * CSS Class Prefix: v9e7-
 * Color Palette: #0A0A0A (bg-dark), #778899 (primary), #E0E0E0 (text-light), #BDC3C7 (accent)
 */

:root {
  --v9e7-bg: #0A0A0A;
  --v9e7-bg-card: #141414;
  --v9e7-bg-section: #1A1A1A;
  --v9e7-primary: #778899;
  --v9e7-primary-dark: #5A6B7C;
  --v9e7-text: #E0E0E0;
  --v9e7-text-muted: #BDC3C7;
  --v9e7-accent: #778899;
  --v9e7-border: #2A2A2A;
  --v9e7-gold: #C9A96E;
  --v9e7-glow: rgba(119,136,153,0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--v9e7-bg);
  color: var(--v9e7-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--v9e7-primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--v9e7-gold);
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== HEADER ===== */
.v9e7-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--v9e7-border);
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.2rem;
}

.v9e7-logo-area {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.v9e7-logo-area img {
  width: 28px;
  height: 28px;
  border-radius: 4px;
}

.v9e7-logo-area span {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--v9e7-text);
  letter-spacing: -0.3px;
}

.v9e7-header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.v9e7-btn-register {
  background: var(--v9e7-gold);
  color: #0A0A0A;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.v9e7-btn-register:hover {
  background: #D4B87A;
  transform: translateY(-1px);
}

.v9e7-btn-login {
  background: transparent;
  color: var(--v9e7-gold);
  border: 1.5px solid var(--v9e7-gold);
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.v9e7-btn-login:hover {
  background: rgba(201,169,110,0.1);
}

.v9e7-menu-btn {
  background: none;
  border: none;
  color: var(--v9e7-text);
  font-size: 2.2rem;
  cursor: pointer;
  padding: 0.4rem;
  line-height: 1;
}

/* ===== MOBILE MENU ===== */
.v9e7-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9998;
}

.v9e7-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 75%;
  max-width: 300px;
  height: 100%;
  background: var(--v9e7-bg-card);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 2rem 1.6rem;
  overflow-y: auto;
}

.v9e7-mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--v9e7-border);
}

.v9e7-mobile-menu-header span {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--v9e7-gold);
}

.v9e7-close-btn {
  background: none;
  border: none;
  color: var(--v9e7-text-muted);
  font-size: 2.4rem;
  cursor: pointer;
  line-height: 1;
}

.v9e7-mobile-menu a {
  display: block;
  padding: 1rem 0;
  color: var(--v9e7-text);
  font-size: 1.5rem;
  border-bottom: 1px solid var(--v9e7-border);
  transition: color 0.2s;
}

.v9e7-mobile-menu a:hover {
  color: var(--v9e7-gold);
}

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

@media (max-width: 768px) {
  .v9e7-main {
    padding-bottom: 80px;
  }
}

/* ===== CAROUSEL ===== */
.v9e7-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.v9e7-slide {
  display: none;
  width: 100%;
  cursor: pointer;
}

.v9e7-slide img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 430/200;
  object-fit: cover;
}

.v9e7-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.v9e7-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  border: none;
  transition: background 0.3s;
}

.v9e7-dot-active {
  background: var(--v9e7-gold);
}

/* ===== SECTION LAYOUT ===== */
.v9e7-section {
  padding: 2rem 1.2rem;
}

.v9e7-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--v9e7-text);
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--v9e7-gold);
  display: inline-block;
}

.v9e7-section-title i {
  margin-right: 0.6rem;
  color: var(--v9e7-gold);
}

/* ===== GAME GRID ===== */
.v9e7-category-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--v9e7-gold);
  margin: 1.5rem 0 1rem;
  padding-left: 0.4rem;
  border-left: 3px solid var(--v9e7-gold);
}

.v9e7-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.v9e7-game-card {
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
  border-radius: 8px;
  overflow: hidden;
  background: var(--v9e7-bg-card);
  padding: 0.6rem 0.4rem;
}

.v9e7-game-card:hover {
  transform: scale(1.04);
}

.v9e7-game-card img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.v9e7-game-card span {
  display: block;
  font-size: 1.1rem;
  color: var(--v9e7-text-muted);
  margin-top: 0.4rem;
  line-height: 1.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ===== CONTENT CARDS ===== */
.v9e7-card {
  background: var(--v9e7-bg-card);
  border-radius: 10px;
  padding: 1.6rem;
  margin-bottom: 1.2rem;
  border: 1px solid var(--v9e7-border);
}

.v9e7-card h3 {
  font-size: 1.6rem;
  color: var(--v9e7-gold);
  margin-bottom: 0.8rem;
}

.v9e7-card p {
  font-size: 1.3rem;
  color: var(--v9e7-text-muted);
  line-height: 1.6rem;
  margin-bottom: 0.8rem;
}

/* ===== PROMO BUTTONS ===== */
.v9e7-promo-btn {
  display: inline-block;
  background: var(--v9e7-gold);
  color: #0A0A0A;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s;
}

.v9e7-promo-btn:hover {
  background: #D4B87A;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201,169,110,0.3);
}

/* ===== FOOTER ===== */
.v9e7-footer {
  background: var(--v9e7-bg-card);
  border-top: 1px solid var(--v9e7-border);
  padding: 2rem 1.2rem 3rem;
}

.v9e7-footer-brand {
  font-size: 1.3rem;
  color: var(--v9e7-text-muted);
  line-height: 1.6rem;
  margin-bottom: 1.5rem;
}

.v9e7-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.v9e7-footer-links a {
  background: var(--v9e7-bg-section);
  color: var(--v9e7-text);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 1.2rem;
  transition: all 0.2s;
}

.v9e7-footer-links a:hover {
  background: var(--v9e7-gold);
  color: #0A0A0A;
}

.v9e7-footer-copy {
  font-size: 1.2rem;
  color: var(--v9e7-text-muted);
  text-align: center;
  opacity: 0.6;
}

.v9e7-partners {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.v9e7-partners img {
  height: 24px;
  opacity: 0.5;
  filter: grayscale(1);
  transition: opacity 0.2s;
}

.v9e7-partners img:hover {
  opacity: 0.8;
}

/* ===== BOTTOM NAVIGATION ===== */
.v9e7-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--v9e7-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  padding: 0 0.4rem;
}

.v9e7-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 52px;
  background: none;
  border: none;
  color: var(--v9e7-text-muted);
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 8px;
  position: relative;
}

.v9e7-bottom-nav-btn:hover {
  color: var(--v9e7-gold);
  background: rgba(201,169,110,0.08);
}

.v9e7-bottom-nav-btn.active {
  color: var(--v9e7-gold);
}

.v9e7-bottom-nav-btn .v9e7-nav-icon {
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 2px;
}

.v9e7-bottom-nav-btn .v9e7-nav-text {
  font-size: 1rem;
  line-height: 1.2rem;
}

@media (min-width: 769px) {
  .v9e7-bottom-nav {
    display: none;
  }
}

/* ===== LIST STYLES ===== */
.v9e7-list {
  list-style: none;
  padding: 0;
}

.v9e7-list li {
  padding: 0.6rem 0;
  padding-left: 1.6rem;
  position: relative;
  font-size: 1.3rem;
  color: var(--v9e7-text-muted);
  line-height: 1.5rem;
}

.v9e7-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--v9e7-gold);
  font-size: 1rem;
}

/* ===== FAQ ===== */
.v9e7-faq-item {
  border-bottom: 1px solid var(--v9e7-border);
  padding: 1rem 0;
}

.v9e7-faq-item h4 {
  font-size: 1.3rem;
  color: var(--v9e7-text);
  margin-bottom: 0.4rem;
}

.v9e7-faq-item p {
  font-size: 1.2rem;
  color: var(--v9e7-text-muted);
  line-height: 1.5rem;
}

/* ===== RATING STARS ===== */
.v9e7-stars {
  color: var(--v9e7-gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

/* ===== WINNER TABLE ===== */
.v9e7-winner-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--v9e7-border);
  font-size: 1.2rem;
}

.v9e7-winner-name {
  color: var(--v9e7-gold);
  font-weight: 600;
}

.v9e7-winner-amount {
  color: #4CAF50;
  font-weight: 700;
}

/* ===== PROMO TEXT LINK ===== */
.v9e7-promo-link {
  color: var(--v9e7-gold);
  font-weight: 700;
  cursor: pointer;
  border-bottom: 1px dashed var(--v9e7-gold);
  transition: all 0.2s;
}

.v9e7-promo-link:hover {
  color: #D4B87A;
  border-bottom-style: solid;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 430px) {
  .v9e7-game-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
  }
}

@media (min-width: 431px) and (max-width: 768px) {
  .v9e7-game-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 769px) {
  .v9e7-main {
    max-width: 430px;
    margin: 0 auto;
  }
  .v9e7-header {
    max-width: 430px;
    left: 50%;
    transform: translateX(-50%);
  }
  .v9e7-footer {
    max-width: 430px;
    margin: 0 auto;
  }
}

/* ===== TEXT UTILITIES ===== */
.v9e7-text-gold {
  color: var(--v9e7-gold);
}

.v9e7-text-center {
  text-align: center;
}

.v9e7-mt-1 { margin-top: 0.8rem; }
.v9e7-mt-2 { margin-top: 1.6rem; }
.v9e7-mb-1 { margin-bottom: 0.8rem; }
.v9e7-mb-2 { margin-bottom: 1.6rem; }

/* ===== BADGE ===== */
.v9e7-badge {
  display: inline-block;
  background: var(--v9e7-gold);
  color: #0A0A0A;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-left: 0.4rem;
}
