/* design-a064.css - good 1111 website styles */
/* All classes use sa06- prefix for namespace isolation */
/* Mobile-first design, max-width 430px */

:root {
  --sa06-bg: #1A1A1A;
  --sa06-bg-alt: #242424;
  --sa06-bg-card: #2A2A2A;
  --sa06-text: #CED4DA;
  --sa06-text-light: #E8E8E8;
  --sa06-brown: #A0522D;
  --sa06-burlywood: #DEB887;
  --sa06-cyan: #00FFFF;
  --sa06-rosy: #BC8F8F;
  --sa06-font: 'Hind Siliguri', sans-serif;
  --sa06-radius: 8px;
  --sa06-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

body {
  margin: 0;
  padding: 0;
  font-family: var(--sa06-font);
  background: var(--sa06-bg);
  color: var(--sa06-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  -webkit-font-smoothing: antialiased;
  max-width: 430px;
  margin-left: auto;
  margin-right: auto;
  overflow-x: hidden;
}

/* === HEADER === */
.sa06-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--sa06-bg-alt);
  border-bottom: 1px solid var(--sa06-brown);
  max-width: 430px;
  margin: 0 auto;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sa06-logo-area {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

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

.sa06-logo-text {
  color: var(--sa06-burlywood);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

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

.sa06-btn-register,
.sa06-btn-login {
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: var(--sa06-radius);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--sa06-font);
}

.sa06-btn-register {
  background: var(--sa06-cyan);
  color: #000;
}

.sa06-btn-register:hover {
  background: #00CCCC;
  transform: scale(1.05);
}

.sa06-btn-login {
  background: var(--sa06-brown);
  color: var(--sa06-text-light);
}

.sa06-btn-login:hover {
  background: #8B4513;
  transform: scale(1.05);
}

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

/* === MOBILE MENU === */
.sa06-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  padding: 6rem 2rem 2rem;
}

.sa06-menu-active {
  display: block;
}

.sa06-menu-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--sa06-cyan);
  font-size: 2.4rem;
  cursor: pointer;
}

.sa06-mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sa06-mobile-menu li {
  border-bottom: 1px solid rgba(206, 212, 218, 0.1);
}

.sa06-mobile-menu a {
  display: block;
  padding: 1.2rem 0;
  color: var(--sa06-text-light);
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.2s;
}

.sa06-mobile-menu a:hover {
  color: var(--sa06-cyan);
}

/* === MAIN CONTENT === */
main {
  padding-top: 5.5rem;
}

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

/* === CAROUSEL === */
.sa06-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 var(--sa06-radius) var(--sa06-radius);
}

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

.sa06-carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.sa06-slide-active {
  display: block;
}

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

.sa06-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(206, 212, 218, 0.4);
  cursor: pointer;
  border: none;
  transition: background 0.3s;
}

.sa06-dot-active {
  background: var(--sa06-cyan);
}

/* === SECTION TITLES === */
.sa06-section-title {
  color: var(--sa06-burlywood);
  font-size: 1.8rem;
  font-weight: 700;
  padding: 1.5rem 1rem 0.8rem;
  margin: 0;
  border-bottom: 2px solid var(--sa06-brown);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sa06-section-title i,
.sa06-section-title .material-icons {
  color: var(--sa06-cyan);
  font-size: 2rem;
}

/* === GAME GRID === */
.sa06-game-section {
  padding: 0.5rem 0.8rem 1rem;
}

.sa06-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  padding: 0.5rem 0;
}

.sa06-game-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s;
  padding: 0.4rem;
  border-radius: var(--sa06-radius);
}

.sa06-game-item:hover {
  transform: scale(1.05);
  background: var(--sa06-bg-card);
}

.sa06-game-item img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--sa06-brown);
}

.sa06-game-name {
  font-size: 1.1rem;
  color: var(--sa06-text);
  margin-top: 0.3rem;
  line-height: 1.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* === CONTENT CARDS === */
.sa06-card {
  background: var(--sa06-bg-card);
  border-radius: var(--sa06-radius);
  padding: 1.5rem;
  margin: 1rem;
  border-left: 3px solid var(--sa06-burlywood);
}

.sa06-card h2 {
  color: var(--sa06-burlywood);
  font-size: 1.6rem;
  margin: 0 0 0.8rem;
}

.sa06-card h3 {
  color: var(--sa06-cyan);
  font-size: 1.4rem;
  margin: 1rem 0 0.5rem;
}

.sa06-card p {
  color: var(--sa06-text);
  line-height: 1.6rem;
  margin: 0.5rem 0;
  font-size: 1.3rem;
}

/* === PROMO LINKS === */
.sa06-promo-link {
  display: inline-block;
  color: var(--sa06-cyan);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s;
  border-bottom: 1px dashed var(--sa06-cyan);
}

.sa06-promo-link:hover {
  color: var(--sa06-burlywood);
}

.sa06-promo-btn {
  display: block;
  width: calc(100% - 2rem);
  margin: 1rem auto;
  padding: 1rem;
  background: linear-gradient(135deg, var(--sa06-brown), var(--sa06-burlywood));
  color: #000;
  border: none;
  border-radius: var(--sa06-radius);
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s;
  font-family: var(--sa06-font);
}

.sa06-promo-btn:hover {
  transform: scale(1.03);
}

/* === INTERNAL LINKS === */
.sa06-internal-link {
  color: var(--sa06-cyan);
  text-decoration: underline;
}

.sa06-internal-link:hover {
  color: var(--sa06-burlywood);
}

/* === FOOTER === */
.sa06-footer {
  background: var(--sa06-bg-alt);
  border-top: 2px solid var(--sa06-brown);
  padding: 2rem 1rem 1.5rem;
  margin-top: 2rem;
}

.sa06-footer-brand {
  color: var(--sa06-burlywood);
  font-size: 1.3rem;
  line-height: 1.6rem;
  margin-bottom: 1.2rem;
}

.sa06-footer-promos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.sa06-footer-promo-btn {
  padding: 0.5rem 1rem;
  background: var(--sa06-brown);
  color: var(--sa06-text-light);
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  cursor: pointer;
  font-family: var(--sa06-font);
  transition: background 0.2s;
}

.sa06-footer-promo-btn:hover {
  background: var(--sa06-burlywood);
  color: #000;
}

.sa06-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1rem 0;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(206, 212, 218, 0.1);
}

.sa06-footer-links a {
  color: var(--sa06-text);
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.2s;
}

.sa06-footer-links a:hover {
  color: var(--sa06-cyan);
}

.sa06-footer-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.8rem 0;
  align-items: center;
}

.sa06-footer-partners span {
  color: var(--sa06-rosy);
  font-size: 1rem;
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--sa06-rosy);
  border-radius: 3px;
}

.sa06-footer-copy {
  color: rgba(206, 212, 218, 0.5);
  font-size: 1rem;
  text-align: center;
  margin-top: 1rem;
}

/* === BOTTOM NAV === */
.sa06-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--sa06-bg-alt);
  border-top: 1px solid var(--sa06-brown);
  height: 60px;
  justify-content: space-around;
  align-items: center;
  max-width: 430px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .sa06-bottom-nav {
    display: flex;
  }
}

.sa06-bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  background: none;
  border: none;
  color: var(--sa06-text);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  gap: 2px;
}

.sa06-bottom-btn i,
.sa06-bottom-btn .material-icons,
.sa06-bottom-btn bi {
  font-size: 22px;
}

.sa06-bottom-btn span {
  font-size: 10px;
  font-family: var(--sa06-font);
}

.sa06-bottom-btn:hover,
.sa06-bottom-btn.sa06-active {
  color: var(--sa06-cyan);
}

.sa06-bottom-btn:active {
  transform: scale(0.92);
}

/* === SCROLL TO TOP === */
.sa06-scroll-top {
  position: fixed;
  bottom: 75px;
  right: 15px;
  z-index: 999;
  width: 40px;
  height: 40px;
  background: var(--sa06-brown);
  color: var(--sa06-text-light);
  border: none;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.sa06-scroll-top:hover {
  transform: scale(1.1);
  background: var(--sa06-burlywood);
}

/* === FAQ === */
.sa06-faq-item {
  margin: 0.8rem 0;
  padding: 0.8rem 1rem;
  background: var(--sa06-bg-card);
  border-radius: var(--sa06-radius);
  border-left: 3px solid var(--sa06-cyan);
}

.sa06-faq-q {
  color: var(--sa06-burlywood);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.sa06-faq-a {
  color: var(--sa06-text);
  font-size: 1.2rem;
  line-height: 1.5rem;
}

/* === FEATURES LIST === */
.sa06-feature-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
}

.sa06-feature-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--sa06-text);
  font-size: 1.3rem;
}

.sa06-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 6px;
  height: 6px;
  background: var(--sa06-cyan);
  border-radius: 50%;
}

/* === WINNER TABLE === */
.sa06-winner-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.5rem 0;
  font-size: 1.2rem;
}

.sa06-winner-table th {
  background: var(--sa06-brown);
  color: var(--sa06-text-light);
  padding: 0.5rem;
  text-align: left;
  font-weight: 600;
}

.sa06-winner-table td {
  padding: 0.4rem 0.5rem;
  border-bottom: 1px solid rgba(206, 212, 218, 0.1);
  color: var(--sa06-text);
}

.sa06-winner-table tr:nth-child(even) td {
  background: var(--sa06-bg-card);
}

/* === HELPER CLASSES === */
.sa06-text-center {
  text-align: center;
}

.sa06-text-cyan {
  color: var(--sa06-cyan);
}

.sa06-text-burlywood {
  color: var(--sa06-burlywood);
}

.sa06-mt-1 {
  margin-top: 1rem;
}

.sa06-mb-1 {
  margin-bottom: 1rem;
}

.sa06-p-1 {
  padding: 1rem;
}

/* === DESKTOP HIDDEN === */
@media (min-width: 769px) {
  .sa06-desktop-hide {
    display: none;
  }
}

/* === RESPONSIVE HELPERS === */
@media (max-width: 360px) {
  .sa06-game-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .sa06-game-item img {
    width: 50px;
    height: 50px;
  }
}
