/* laro77 styles - prefix v275- | palette #1B263B #00CED1 #FFB6C1 #0000FF #FF69B4 */
:root {
  --v275-bg: #1B263B;
  --v275-bg-deep: #0f1726;
  --v275-bg-soft: #243447;
  --v275-text: #FFB6C1;
  --v275-text-light: #ffe4ea;
  --v275-primary: #00CED1;
  --v275-accent: #FF69B4;
  --v275-blue: #0000FF;
  --v275-border: rgba(0, 206, 209, 0.28);
  --v275-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  --v275-radius: 0.8rem;
  --v275-header-h: 5.6rem;
  --v275-bottom-h: 6.2rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  line-height: 1.5rem;
  background: var(--v275-bg);
  color: var(--v275-text-light);
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--v275-primary); text-decoration: none; font-weight: 600; }
a:hover { color: var(--v275-accent); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.v275-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1.2rem;
}
.v275-wrapper { width: 100%; max-width: 430px; margin: 0 auto; }
.v275-main {
  padding-top: calc(var(--v275-header-h) + 1rem);
  padding-bottom: 2rem;
}

/* Header */
.v275-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #0f1726 0%, #1B263B 100%);
  border-bottom: 1px solid var(--v275-border);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}
.v275-header-inner {
  max-width: 430px;
  margin: 0 auto;
  height: var(--v275-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.2rem;
  gap: 0.8rem;
}
.v275-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
  flex: 1;
}
.v275-logo img {
  width: 3rem; height: 3rem;
  border-radius: 0.6rem;
  object-fit: cover;
  border: 1px solid var(--v275-border);
}
.v275-logo-text {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--v275-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.02em;
}
.v275-header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.v275-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 4.4rem;
  padding: 0 1.2rem;
  border-radius: 2.2rem;
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.v275-btn:active { transform: scale(0.96); }
.v275-btn-register {
  background: linear-gradient(135deg, #00CED1 0%, #008b8b 100%);
  color: #0f1726;
  box-shadow: 0 4px 12px rgba(0, 206, 209, 0.35);
}
.v275-btn-login {
  background: linear-gradient(135deg, #FF69B4 0%, #c71585 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 105, 180, 0.35);
}
.v275-btn-promo {
  background: linear-gradient(135deg, #0000FF 0%, #4169e1 100%);
  color: #fff;
  width: 100%;
  margin: 0.8rem 0;
  min-height: 4.8rem;
  font-size: 1.4rem;
}
.v275-btn-outline {
  border: 1px solid var(--v275-primary);
  color: var(--v275-primary);
  background: transparent;
}
.v275-menu-toggle {
  width: 4.4rem; height: 4.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  background: rgba(0, 206, 209, 0.12);
  color: var(--v275-primary);
  font-size: 2rem;
}

/* Mobile menu */
.v275-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}
.v275-overlay-show { opacity: 1; visibility: visible; }
.v275-mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(82vw, 320px);
  height: 100%;
  background: linear-gradient(180deg, #0f1726 0%, #1B263B 100%);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.4);
  overflow-y: auto;
  padding: 1.6rem;
}
.v275-menu-open { transform: translateX(0); }
.v275-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.6rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--v275-border);
}
.v275-menu-close {
  width: 4rem; height: 4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--v275-text);
  font-size: 2rem;
}
.v275-menu-list li { margin-bottom: 0.4rem; }
.v275-menu-list a {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4.4rem;
  padding: 0 1rem;
  border-radius: 0.8rem;
  color: var(--v275-text-light);
  font-size: 1.4rem;
}
.v275-menu-list a:hover,
.v275-menu-list a:active {
  background: rgba(0, 206, 209, 0.12);
  color: var(--v275-primary);
}
.v275-menu-list i,
.v275-menu-list .material-icons,
.v275-menu-list .ti,
.v275-menu-list .bi {
  width: 2.4rem;
  font-size: 2rem;
  text-align: center;
  color: var(--v275-primary);
}

/* Carousel */
.v275-carousel {
  position: relative;
  width: 100%;
  border-radius: var(--v275-radius);
  overflow: hidden;
  margin-bottom: 1.6rem;
  box-shadow: var(--v275-shadow);
  aspect-ratio: 16 / 9;
  background: var(--v275-bg-deep);
}
.v275-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
  cursor: pointer;
}
.v275-slide-active { opacity: 1; z-index: 1; }
.v275-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v275-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 3.6rem; height: 3.6rem;
  border-radius: 50%;
  background: rgba(15, 23, 38, 0.65);
  color: var(--v275-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.v275-carousel-prev { left: 0.8rem; }
.v275-carousel-next { right: 0.8rem; }
.v275-dots {
  position: absolute;
  bottom: 0.8rem;
  left: 0; right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}
.v275-dot {
  width: 0.8rem; height: 0.8rem;
  border-radius: 50%;
  background: rgba(255, 182, 193, 0.45);
}
.v275-dot-active { background: var(--v275-primary); transform: scale(1.2); }

/* Sections */
.v275-section { margin-bottom: 2.4rem; }
.v275-h1 {
  font-size: 1.9rem;
  line-height: 2.5rem;
  color: var(--v275-primary);
  margin-bottom: 1.2rem;
  font-weight: 800;
}
.v275-h2 {
  font-size: 1.7rem;
  line-height: 2.3rem;
  color: var(--v275-accent);
  margin: 1.6rem 0 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.v275-h3 {
  font-size: 1.5rem;
  line-height: 2rem;
  color: var(--v275-primary);
  margin: 1.2rem 0 0.8rem;
  font-weight: 700;
}
.v275-text {
  font-size: 1.35rem;
  line-height: 2.1rem;
  color: var(--v275-text-light);
  margin-bottom: 1rem;
}
.v275-text strong { color: var(--v275-primary); }
.v275-card {
  background: linear-gradient(160deg, rgba(36, 52, 71, 0.95) 0%, rgba(15, 23, 38, 0.98) 100%);
  border: 1px solid var(--v275-border);
  border-radius: var(--v275-radius);
  padding: 1.4rem;
  margin-bottom: 1.2rem;
  box-shadow: var(--v275-shadow);
}
.v275-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.v275-game-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  min-height: 4.4rem;
  transition: transform 0.2s ease;
}
.v275-game-item:active { transform: scale(0.95); }
.v275-game-item img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0.8rem;
  object-fit: cover;
  border: 1px solid var(--v275-border);
  margin-bottom: 0.4rem;
  background: var(--v275-bg-deep);
}
.v275-game-name {
  font-size: 1rem;
  line-height: 1.3rem;
  color: var(--v275-text);
  font-weight: 600;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.v275-cat-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1.6rem 0 1rem;
}
.v275-cat-title h2 {
  margin: 0;
  font-size: 1.6rem;
  color: var(--v275-primary);
}
.v275-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.8rem;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: 700;
  background: rgba(255, 105, 180, 0.18);
  color: var(--v275-accent);
  border: 1px solid rgba(255, 105, 180, 0.35);
}

/* FAQ */
.v275-faq-item {
  border: 1px solid var(--v275-border);
  border-radius: 0.8rem;
  margin-bottom: 0.8rem;
  overflow: hidden;
  background: rgba(15, 23, 38, 0.65);
}
.v275-faq-q {
  width: 100%;
  text-align: left;
  padding: 1.2rem;
  min-height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--v275-primary);
}
.v275-faq-a {
  display: none;
  padding: 0 1.2rem 1.2rem;
  font-size: 1.25rem;
  line-height: 1.9rem;
  color: var(--v275-text-light);
}
.v275-faq-open .v275-faq-a { display: block; }
.v275-faq-open .v275-faq-q { color: var(--v275-accent); }

/* Feature / promo / stats */
.v275-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.v275-feature-item {
  background: rgba(0, 206, 209, 0.08);
  border: 1px solid var(--v275-border);
  border-radius: 0.8rem;
  padding: 1.2rem;
  text-align: center;
}
.v275-feature-item i,
.v275-feature-item .material-icons,
.v275-feature-item .ti {
  font-size: 2.4rem;
  color: var(--v275-primary);
  margin-bottom: 0.6rem;
}
.v275-feature-item h3 {
  font-size: 1.25rem;
  color: var(--v275-accent);
  margin: 0 0 0.4rem;
}
.v275-feature-item p {
  font-size: 1.1rem;
  line-height: 1.6rem;
  color: var(--v275-text-light);
  margin: 0;
}
.v275-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin: 1rem 0;
}
.v275-stat {
  text-align: center;
  background: rgba(255, 105, 180, 0.1);
  border-radius: 0.8rem;
  padding: 1rem 0.4rem;
  border: 1px solid rgba(255, 105, 180, 0.25);
}
.v275-stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--v275-primary);
}
.v275-stat-label {
  font-size: 1rem;
  color: var(--v275-text);
}
.v275-list {
  margin: 0.8rem 0 1.2rem 1.4rem;
  list-style: disc;
}
.v275-list li {
  font-size: 1.3rem;
  line-height: 2rem;
  margin-bottom: 0.4rem;
  color: var(--v275-text-light);
}
.v275-link {
  color: var(--v275-primary);
  font-weight: 700;
  text-decoration: underline;
}
.v275-winners {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.v275-winner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 0.8rem;
  background: rgba(0, 0, 255, 0.08);
  border: 1px solid rgba(0, 206, 209, 0.2);
}
.v275-winner strong { color: var(--v275-primary); font-size: 1.2rem; }
.v275-winner span { color: var(--v275-accent); font-weight: 700; font-size: 1.2rem; }
.v275-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.v275-pay-tag {
  padding: 0.6rem 1rem;
  border-radius: 2rem;
  background: rgba(0, 206, 209, 0.12);
  border: 1px solid var(--v275-border);
  font-size: 1.15rem;
  color: var(--v275-text-light);
  font-weight: 600;
}
.v275-cta-box {
  text-align: center;
  padding: 1.8rem 1.4rem;
  border-radius: 1.2rem;
  background: linear-gradient(135deg, rgba(0, 206, 209, 0.18) 0%, rgba(255, 105, 180, 0.18) 100%);
  border: 1px solid var(--v275-border);
  margin: 1.6rem 0;
}
.v275-seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin: 1rem 0;
}
.v275-seo-links a {
  font-size: 1.25rem;
  color: var(--v275-primary);
  text-decoration: underline;
}

/* Footer */
.v275-footer {
  background: var(--v275-bg-deep);
  border-top: 1px solid var(--v275-border);
  padding: 2rem 0 9rem;
  margin-top: 1rem;
}
.v275-footer-brand {
  font-size: 1.3rem;
  line-height: 2rem;
  color: var(--v275-text);
  margin-bottom: 1.2rem;
}
.v275-footer-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}
.v275-footer-btns .v275-btn {
  width: 100%;
  font-size: 1.15rem;
  min-height: 4.4rem;
}
.v275-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  margin-bottom: 1.2rem;
}
.v275-footer-links a {
  font-size: 1.2rem;
  color: var(--v275-text);
}
.v275-footer-links a:hover { color: var(--v275-primary); }
.v275-copy {
  font-size: 1.1rem;
  color: rgba(255, 182, 193, 0.65);
  text-align: center;
  margin-top: 1rem;
}

/* Bottom nav - unique cyan/pink glow style */
.v275-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  height: 6.2rem;
  background: linear-gradient(180deg, #152033 0%, #0f1726 100%);
  border-top: 1px solid var(--v275-border);
  box-shadow: 0 -4px 18px rgba(0, 206, 209, 0.15);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  max-width: 100%;
}
.v275-bottom-nav-inner {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: stretch;
}
.v275-bnav-btn {
  flex: 1;
  min-width: 6rem;
  min-height: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  color: var(--v275-text);
  font-size: 1rem;
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
}
.v275-bnav-btn i,
.v275-bnav-btn .material-icons,
.v275-bnav-btn .ti,
.v275-bnav-btn .bi {
  font-size: 2.2rem;
  line-height: 1;
}
.v275-bnav-btn .material-icons { font-size: 2.4rem; }
.v275-bnav-btn:active { transform: scale(0.92); color: var(--v275-primary); }
.v275-bnav-btn.v275-bnav-active {
  color: var(--v275-primary);
}
.v275-bnav-btn.v275-bnav-active::before {
  content: '';
  position: absolute;
  top: 0.4rem;
  width: 2.4rem;
  height: 0.3rem;
  border-radius: 1rem;
  background: linear-gradient(90deg, var(--v275-primary), var(--v275-accent));
}
.v275-bnav-btn span {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .v275-main { padding-bottom: 8rem; }
  .v275-footer { padding-bottom: 9rem; }
}
@media (min-width: 769px) {
  .v275-bottom-nav { display: none; }
  .v275-main { padding-bottom: 3rem; }
  body {
    background: radial-gradient(ellipse at top, #243447 0%, #1B263B 45%, #0f1726 100%);
  }
  .v275-wrapper,
  .v275-header-inner,
  .v275-container {
    max-width: 430px;
  }
}
@media (max-width: 360px) {
  .v275-grid { grid-template-columns: repeat(3, 1fr); }
  .v275-btn-register,
  .v275-btn-login { padding: 0 0.9rem; font-size: 1.1rem; }
}
