/*
 * Lucky Cola Casino - Main Stylesheet
 * File: css/style-d210.css
 * Prefix: wd210-
 * Color Palette: #4A4A4A | #696969 | #B03060 | #212F3D | #708090
 */

:root {
  --wd210-primary: #B03060;
  --wd210-primary-dark: #8a2550;
  --wd210-secondary: #708090;
  --wd210-bg-dark: #212F3D;
  --wd210-bg-darker: #1a2530;
  --wd210-bg-card: #2a3a4a;
  --wd210-text-light: #e8e8e8;
  --wd210-text-muted: #a0a0a0;
  --wd210-accent: #d4a574;
  --wd210-accent-gold: #c9a84c;
  --wd210-gray-dark: #4A4A4A;
  --wd210-gray-mid: #696969;
  --wd210-border: rgba(176, 48, 96, 0.3);
  --wd210-shadow: rgba(0, 0, 0, 0.25);
  --wd210-radius: 8px;
  --wd210-transition: all 0.3s ease;
}

/* Reset and Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--wd210-bg-dark);
  color: var(--wd210-text-light);
  line-height: 1.5rem;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* Container */
.wd210-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.wd210-wrapper {
  width: 100%;
  overflow-x: hidden;
}

/* Header */
.wd210-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--wd210-bg-darker), var(--wd210-bg-dark));
  border-bottom: 1px solid var(--wd210-border);
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 430px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}

.wd210-header-left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.wd210-logo {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: contain;
}

.wd210-site-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--wd210-accent);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.wd210-header-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.wd210-btn-register,
.wd210-btn-login {
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--wd210-transition);
  min-height: 32px;
  min-width: 60px;
}

.wd210-btn-register {
  background: linear-gradient(135deg, var(--wd210-primary), var(--wd210-primary-dark));
  color: #fff;
}

.wd210-btn-register:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(176, 48, 96, 0.5);
}

.wd210-btn-login {
  background: transparent;
  color: var(--wd210-text-light);
  border: 1px solid var(--wd210-secondary);
}

.wd210-btn-login:hover {
  background: rgba(112, 128, 144, 0.2);
  border-color: var(--wd210-text-light);
}

.wd210-menu-toggle {
  background: none;
  border: none;
  color: var(--wd210-text-light);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu */
.wd210-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
}

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

.wd210-mobile-menu-close {
  background: none;
  border: none;
  color: var(--wd210-text-light);
  font-size: 2.2rem;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1.2rem;
}

.wd210-mobile-menu h3 {
  font-size: 1.5rem;
  color: var(--wd210-accent);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--wd210-border);
}

.wd210-mobile-menu ul {
  list-style: none;
}

.wd210-mobile-menu li {
  margin-bottom: 0.8rem;
}

.wd210-mobile-menu a {
  color: var(--wd210-text-light);
  font-size: 1.4rem;
  display: block;
  padding: 0.6rem 0;
  transition: var(--wd210-transition);
}

.wd210-mobile-menu a:hover {
  color: var(--wd210-accent);
  padding-left: 0.8rem;
}

/* Carousel */
.wd210-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--wd210-radius);
  margin-top: 1rem;
}

.wd210-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.wd210-carousel-slide {
  min-width: 100%;
  cursor: pointer;
}

.wd210-carousel-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--wd210-radius);
}

.wd210-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.wd210-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wd210-gray-mid);
  border: none;
  cursor: pointer;
  transition: var(--wd210-transition);
}

.wd210-carousel-dot-active,
.wd210-carousel-dot:hover {
  background: var(--wd210-primary);
  transform: scale(1.3);
}

/* Main Content */
main {
  padding-top: 6rem;
  padding-bottom: 2rem;
}

@media (max-width: 768px) {
  main {
    padding-bottom: 8rem;
  }
}

/* Section Headings */
.wd210-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--wd210-accent);
  margin: 2rem 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--wd210-primary);
  display: inline-block;
}

.wd210-section-subtitle {
  font-size: 1.4rem;
  color: var(--wd210-text-muted);
  margin-bottom: 1.2rem;
}

/* Game Grid */
.wd210-game-section {
  margin: 1.5rem 0;
}

.wd210-game-category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--wd210-accent);
  margin-bottom: 1rem;
  padding-left: 0.5rem;
  border-left: 3px solid var(--wd210-primary);
}

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

@media (min-width: 381px) {
  .wd210-game-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.wd210-game-card {
  background: var(--wd210-bg-card);
  border-radius: var(--wd210-radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--wd210-transition);
  border: 1px solid transparent;
}

.wd210-game-card:hover {
  transform: translateY(-2px);
  border-color: var(--wd210-primary);
  box-shadow: 0 4px 12px var(--wd210-shadow);
}

.wd210-game-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.wd210-game-card-name {
  font-size: 1.1rem;
  color: var(--wd210-text-light);
  text-align: center;
  padding: 0.4rem 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}

/* Content Sections */
.wd210-content-block {
  background: var(--wd210-bg-card);
  border-radius: var(--wd210-radius);
  padding: 1.5rem;
  margin: 1.2rem 0;
  border-left: 3px solid var(--wd210-primary);
}

.wd210-content-block h2 {
  font-size: 1.6rem;
  color: var(--wd210-accent);
  margin-bottom: 0.8rem;
}

.wd210-content-block h3 {
  font-size: 1.4rem;
  color: var(--wd210-text-light);
  margin: 1rem 0 0.5rem;
}

.wd210-content-block p {
  font-size: 1.3rem;
  color: var(--wd210-text-muted);
  line-height: 2rem;
  margin-bottom: 0.8rem;
}

.wd210-content-block ul {
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
}

.wd210-content-block li {
  font-size: 1.3rem;
  color: var(--wd210-text-muted);
  line-height: 2rem;
  margin-bottom: 0.4rem;
}

/* Promo Links in Text */
.wd210-promo-text {
  color: var(--wd210-accent);
  font-weight: 600;
  cursor: pointer;
  transition: var(--wd210-transition);
  border-bottom: 1px dashed var(--wd210-accent);
}

.wd210-promo-text:hover {
  color: var(--wd210-primary);
  border-bottom-color: var(--wd210-primary);
}

/* Promo Banner */
.wd210-promo-banner {
  background: linear-gradient(135deg, var(--wd210-primary-dark), var(--wd210-primary));
  border-radius: var(--wd210-radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
  text-align: center;
}

.wd210-promo-banner h3 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.6rem;
}

.wd210-promo-banner p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}

.wd210-promo-btn {
  display: inline-block;
  background: var(--wd210-accent-gold);
  color: var(--wd210-bg-dark);
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--wd210-transition);
}

.wd210-promo-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 3px 12px rgba(201, 168, 76, 0.4);
}

/* RTP Section */
.wd210-rtp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin: 1rem 0;
}

.wd210-rtp-item {
  background: var(--wd210-bg-darker);
  border-radius: var(--wd210-radius);
  padding: 0.8rem 0.4rem;
  text-align: center;
  border: 1px solid var(--wd210-border);
}

.wd210-rtp-item-name {
  font-size: 1rem;
  color: var(--wd210-text-muted);
  margin-bottom: 0.3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wd210-rtp-item-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #4caf50;
}

/* Winner List */
.wd210-winner-list {
  margin: 1rem 0;
}

.wd210-winner-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  background: var(--wd210-bg-darker);
  border-radius: var(--wd210-radius);
  margin-bottom: 0.6rem;
  border: 1px solid rgba(176, 48, 96, 0.15);
}

.wd210-winner-name {
  font-size: 1.2rem;
  color: var(--wd210-text-light);
  font-weight: 600;
}

.wd210-winner-amount {
  font-size: 1.3rem;
  color: var(--wd210-accent-gold);
  font-weight: 700;
}

.wd210-winner-game {
  font-size: 1.1rem;
  color: var(--wd210-text-muted);
}

/* Testimonial */
.wd210-testimonial {
  background: var(--wd210-bg-card);
  border-radius: var(--wd210-radius);
  padding: 1.2rem;
  margin-bottom: 1rem;
  border: 1px solid var(--wd210-border);
}

.wd210-testimonial-text {
  font-size: 1.2rem;
  color: var(--wd210-text-muted);
  font-style: italic;
  margin-bottom: 0.6rem;
  line-height: 1.8rem;
}

.wd210-testimonial-author {
  font-size: 1.1rem;
  color: var(--wd210-accent);
  font-weight: 600;
}

/* Payment Methods */
.wd210-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1rem 0;
}

.wd210-payment-item {
  background: var(--wd210-bg-darker);
  border-radius: var(--wd210-radius);
  padding: 0.6rem 1.2rem;
  font-size: 1.2rem;
  color: var(--wd210-text-light);
  border: 1px solid var(--wd210-border);
}

/* FAQ Section */
.wd210-faq-item {
  background: var(--wd210-bg-card);
  border-radius: var(--wd210-radius);
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.wd210-faq-question {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--wd210-accent);
  padding: 1rem 1.2rem;
  cursor: default;
}

.wd210-faq-answer {
  font-size: 1.2rem;
  color: var(--wd210-text-muted);
  padding: 0 1.2rem 1rem;
  line-height: 1.8rem;
}

/* Footer */
.wd210-footer {
  background: var(--wd210-bg-darker);
  border-top: 1px solid var(--wd210-border);
  padding: 2rem 1.2rem 1rem;
  margin-top: 2rem;
}

.wd210-footer-brand {
  text-align: center;
  margin-bottom: 1.5rem;
}

.wd210-footer-brand h3 {
  font-size: 1.5rem;
  color: var(--wd210-accent);
  margin-bottom: 0.5rem;
}

.wd210-footer-brand p {
  font-size: 1.2rem;
  color: var(--wd210-text-muted);
  line-height: 1.8rem;
}

.wd210-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin: 1.2rem 0;
}

.wd210-footer-link {
  color: var(--wd210-text-muted);
  font-size: 1.2rem;
  transition: var(--wd210-transition);
}

.wd210-footer-link:hover {
  color: var(--wd210-accent);
}

.wd210-footer-partners {
  text-align: center;
  margin: 1.2rem 0;
  padding: 1rem 0;
  border-top: 1px solid rgba(112, 128, 144, 0.2);
}

.wd210-footer-partners p {
  font-size: 1.1rem;
  color: var(--wd210-gray-mid);
  margin-bottom: 0.5rem;
}

.wd210-footer-partner-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.8rem;
}

.wd210-footer-partner-logos span {
  font-size: 1rem;
  color: var(--wd210-text-muted);
  background: var(--wd210-bg-card);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
}

.wd210-footer-copyright {
  text-align: center;
  font-size: 1.1rem;
  color: var(--wd210-gray-mid);
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(112, 128, 144, 0.2);
}

/* Bottom Navigation */
.wd210-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--wd210-bg-darker);
  border-top: 1px solid var(--wd210-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 0.4rem;
  box-shadow: 0 -2px 10px var(--wd210-shadow);
}

.wd210-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(--wd210-text-muted);
  cursor: pointer;
  transition: var(--wd210-transition);
  padding: 0.3rem;
  border-radius: 8px;
}

.wd210-bottom-nav-btn:hover,
.wd210-bottom-nav-active {
  color: var(--wd210-primary);
  background: rgba(176, 48, 96, 0.1);
}

.wd210-bottom-nav-btn i,
.wd210-bottom-nav-btn .material-icons,
.wd210-bottom-nav-btn ion-icon,
.wd210-bottom-nav-btn bi {
  font-size: 22px;
  margin-bottom: 2px;
}

.wd210-bottom-nav-label {
  font-size: 1rem;
  white-space: nowrap;
}

/* Desktop: hide bottom nav */
@media (min-width: 769px) {
  .wd210-bottom-nav {
    display: none;
  }
}

/* Desktop navigation */
.wd210-desktop-nav {
  display: none;
}

@media (min-width: 769px) {
  .wd210-desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .wd210-desktop-nav a {
    color: var(--wd210-text-muted);
    font-size: 1.3rem;
    transition: var(--wd210-transition);
  }

  .wd210-desktop-nav a:hover {
    color: var(--wd210-accent);
  }

  .wd210-header {
    max-width: 100%;
    padding: 0.8rem 2rem;
  }

  .wd210-container {
    max-width: 100%;
  }

  main {
    padding-bottom: 2rem;
  }
}

/* H1 Title */
.wd210-page-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--wd210-text-light);
  margin: 1.5rem 0 1rem;
  line-height: 2.4rem;
}

.wd210-page-title span {
  color: var(--wd210-accent);
}

/* Features Grid */
.wd210-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1rem 0;
}

.wd210-feature-card {
  background: var(--wd210-bg-card);
  border-radius: var(--wd210-radius);
  padding: 1.2rem;
  text-align: center;
  border: 1px solid var(--wd210-border);
  transition: var(--wd210-transition);
}

.wd210-feature-card:hover {
  border-color: var(--wd210-primary);
  transform: translateY(-2px);
}

.wd210-feature-card i {
  font-size: 2.4rem;
  color: var(--wd210-primary);
  margin-bottom: 0.6rem;
}

.wd210-feature-card h3 {
  font-size: 1.2rem;
  color: var(--wd210-accent);
  margin-bottom: 0.4rem;
}

.wd210-feature-card p {
  font-size: 1.1rem;
  color: var(--wd210-text-muted);
  line-height: 1.6rem;
}

/* App Download CTA */
.wd210-app-cta {
  background: linear-gradient(135deg, var(--wd210-bg-card), var(--wd210-bg-darker));
  border-radius: var(--wd210-radius);
  padding: 1.5rem;
  text-align: center;
  margin: 1.5rem 0;
  border: 1px solid var(--wd210-border);
}

.wd210-app-cta h3 {
  font-size: 1.5rem;
  color: var(--wd210-accent);
  margin-bottom: 0.5rem;
}

.wd210-app-cta p {
  font-size: 1.2rem;
  color: var(--wd210-text-muted);
  margin-bottom: 1rem;
}

.wd210-app-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.wd210-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--wd210-border);
  background: var(--wd210-bg-card);
  color: var(--wd210-text-light);
  transition: var(--wd210-transition);
}

.wd210-app-btn:hover {
  background: var(--wd210-primary);
  border-color: var(--wd210-primary);
}

/* Utility Classes */
.wd210-text-center { text-align: center; }
.wd210-mt-1 { margin-top: 1rem; }
.wd210-mt-2 { margin-top: 2rem; }
.wd210-mb-1 { margin-bottom: 1rem; }
.wd210-mb-2 { margin-bottom: 2rem; }
.wd210-hidden-mobile { display: none; }

@media (min-width: 769px) {
  .wd210-hidden-mobile { display: block; }
  .wd210-hidden-desktop { display: none; }
}

/* Breadcrumb */
.wd210-breadcrumb {
  font-size: 1.1rem;
  color: var(--wd210-text-muted);
  margin: 1rem 0;
}

.wd210-breadcrumb a {
  color: var(--wd210-secondary);
  transition: var(--wd210-transition);
}

.wd210-breadcrumb a:hover {
  color: var(--wd210-accent);
}

/* Internal Link */
.wd210-internal-link {
  color: var(--wd210-secondary);
  transition: var(--wd210-transition);
  border-bottom: 1px solid transparent;
}

.wd210-internal-link:hover {
  color: var(--wd210-accent);
  border-bottom-color: var(--wd210-accent);
}
