/* BingoPlus App - Universal CSS File */
/* Prefix: g3ab- for all classes */
/* Color Palette: #141414, #FF8A80, #FA8072, #F4A460 */

:root {
  --g3ab-primary: #FF8A80;
  --g3ab-secondary: #FA8072;
  --g3ab-accent: #F4A460;
  --g3ab-dark: #141414;
  --g3ab-bg: #1a1a1a;
  --g3ab-text: #F4A460;
  --g3ab-text-light: #ffffff;
  --g3ab-border: rgba(255, 138, 128, 0.2);
  --g3ab-shadow: rgba(0, 0, 0, 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;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--g3ab-text);
  background-color: var(--g3ab-dark);
  overflow-x: hidden;
}

/* Header Styles */
.g3ab-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: linear-gradient(135deg, #141414 0%, #1f1f1f 100%);
  border-bottom: 2px solid var(--g3ab-border);
  z-index: 1000;
  transition: all 0.3s ease;
}

.g3ab-header-scrolled {
  box-shadow: 0 4px 12px var(--g3ab-shadow);
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(10px);
}

.g3ab-header-hidden {
  transform: translateY(-100%);
}

.g3ab-header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.g3ab-logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

.g3ab-logo-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.g3ab-logo-text {
  font-size: 2rem;
  font-weight: 700;
  color: var(--g3ab-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.g3ab-nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.g3ab-btn-register,
.g3ab-btn-login {
  padding: 1rem 2.4rem;
  border-radius: 25px;
  font-size: 1.4rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.g3ab-btn-register {
  background: linear-gradient(135deg, var(--g3ab-primary) 0%, var(--g3ab-secondary) 100%);
  color: var(--g3ab-dark);
}

.g3ab-btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 138, 128, 0.4);
}

.g3ab-btn-login {
  background: transparent;
  color: var(--g3ab-text);
  border: 2px solid var(--g3ab-primary);
}

.g3ab-btn-login:hover {
  background: var(--g3ab-primary);
  color: var(--g3ab-dark);
}

.g3ab-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--g3ab-primary);
  font-size: 2.8rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Mobile Menu */
.g3ab-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #1a1a1a 0%, #141414 100%);
  z-index: 9999;
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: 8rem 2rem 2rem;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
}

.app243-menu-open {
  right: 0;
}

.g3ab-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.app243-overlay-active {
  opacity: 1;
  visibility: visible;
}

.g3ab-mobile-menu-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--g3ab-primary);
  font-size: 3rem;
  cursor: pointer;
}

.g3ab-mobile-nav-list {
  list-style: none;
}

.g3ab-mobile-nav-item {
  border-bottom: 1px solid var(--g3ab-border);
}

.g3ab-mobile-nav-link {
  display: block;
  padding: 1.5rem 1rem;
  color: var(--g3ab-text);
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.g3ab-mobile-nav-link:hover,
.g3ab-mobile-nav-link.app243-active {
  color: var(--g3ab-primary);
  padding-left: 2rem;
}

/* Main Content */
.g3ab-main {
  margin-top: 70px;
  min-height: calc(100vh - 70px);
  padding-bottom: 80px;
}

@media (min-width: 769px) {
  .g3ab-main {
    padding-bottom: 2rem;
  }
}

.g3ab-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

/* Carousel Styles */
.app243-carousel {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 24px var(--g3ab-shadow);
}

.app243-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.app243-carousel-slide {
  min-width: 100%;
  cursor: pointer;
}

.app243-carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.app243-carousel-prev,
.app243-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 138, 128, 0.8);
  color: var(--g3ab-dark);
  border: none;
  padding: 1.5rem;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10;
}

.app243-carousel-prev:hover,
.app243-carousel-next:hover {
  background: var(--g3ab-primary);
  transform: translateY(-50%) scale(1.1);
}

.app243-carousel-prev {
  left: 1.5rem;
}

.app243-carousel-next {
  right: 1.5rem;
}

.app243-carousel-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.app243-carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.app243-carousel-indicator.app243-active {
  background: var(--g3ab-primary);
  width: 30px;
  border-radius: 6px;
}

/* Game Grid */
.g3ab-game-section {
  margin: 4rem 0;
}

.g3ab-section-title {
  font-size: 2.8rem;
  color: var(--g3ab-primary);
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.g3ab-game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 480px) {
  .g3ab-game-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
}

.g3ab-game-card {
  background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.g3ab-game-card:hover {
  transform: translateY(-5px);
  border-color: var(--g3ab-primary);
  box-shadow: 0 8px 20px rgba(255, 138, 128, 0.3);
}

.g3ab-game-icon {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 0.8rem;
}

.g3ab-game-name {
  font-size: 1.2rem;
  color: var(--g3ab-text);
  font-weight: 500;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Bottom Navigation */
.g3ab-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(135deg, #1a1a1a 0%, #141414 100%);
  border-top: 2px solid var(--g3ab-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -4px 12px var(--g3ab-shadow);
}

@media (min-width: 769px) {
  .g3ab-bottom-nav {
    display: none;
  }
}

.g3ab-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  color: var(--g3ab-text);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  background: none;
  border: none;
}

.g3ab-bottom-nav-btn i {
  font-size: 2.4rem;
  margin-bottom: 0.3rem;
}

.g3ab-bottom-nav-btn span {
  font-size: 1.1rem;
  font-weight: 500;
}

.g3ab-bottom-nav-btn:hover,
.g3ab-bottom-nav-btn.g3ab-bottom-nav-active {
  color: var(--g3ab-primary);
  transform: translateY(-3px);
}

/* Footer */
.g3ab-footer {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  padding: 4rem 2rem 2rem;
  border-top: 3px solid var(--g3ab-border);
  margin-top: 6rem;
}

.g3ab-footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.g3ab-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.g3ab-footer-link {
  color: var(--g3ab-text);
  text-decoration: none;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.g3ab-footer-link:hover {
  color: var(--g3ab-primary);
}

.g3ab-partners {
  margin: 3rem 0;
  text-align: center;
}

.g3ab-partners-title {
  font-size: 2rem;
  color: var(--g3ab-primary);
  margin-bottom: 2rem;
  font-weight: 600;
}

.g3ab-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.g3ab-partner-logo {
  width: 100%;
  height: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  filter: grayscale(30%);
}

.g3ab-partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.g3ab-copyright {
  text-align: center;
  color: rgba(244, 164, 96, 0.6);
  font-size: 1.3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--g3ab-border);
}

/* Content Sections */
.g3ab-content-section {
  margin: 4rem 0;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
  border-radius: 15px;
  border: 1px solid var(--g3ab-border);
}

.g3ab-content-title {
  font-size: 2.4rem;
  color: var(--g3ab-primary);
  margin-bottom: 2rem;
  font-weight: 700;
}

.g3ab-content-text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--g3ab-text);
  margin-bottom: 1.5rem;
}

.g3ab-content-list {
  list-style: none;
  padding-left: 0;
}

.g3ab-content-list li {
  padding: 1rem 0 1rem 3rem;
  position: relative;
  line-height: 1.8;
}

.g3ab-content-list li::before {
  content: '▸';
  position: absolute;
  left: 1rem;
  color: var(--g3ab-primary);
  font-size: 1.8rem;
}

/* Buttons */
.g3ab-btn-primary {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, var(--g3ab-primary) 0%, var(--g3ab-secondary) 100%);
  color: var(--g3ab-dark);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.6rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.g3ab-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 138, 128, 0.4);
}

/* FAQ Styles */
.app243-faq-item {
  margin-bottom: 1.5rem;
  background: #1f1f1f;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--g3ab-border);
}

.app243-faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--g3ab-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.app243-faq-question:hover {
  background: #2a2a2a;
}

.app243-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.app243-faq-open .app243-faq-answer {
  max-height: 500px;
}

.app243-faq-answer-content {
  padding: 1.5rem 2rem;
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--g3ab-text);
}

/* Responsive Design */
@media (max-width: 768px) {
  .g3ab-nav-actions {
    gap: 1rem;
  }

  .g3ab-btn-register,
  .g3ab-btn-login {
    padding: 0.8rem 1.6rem;
    font-size: 1.3rem;
  }

  .g3ab-menu-toggle {
    display: block;
  }

  .g3ab-logo-text {
    font-size: 1.6rem;
  }

  .g3ab-main {
    padding-bottom: 80px;
  }
}

@media (max-width: 480px) {
  .g3ab-header-container {
    padding: 0 1rem;
  }

  .g3ab-container {
    padding: 1.5rem;
  }

  .app243-carousel-prev,
  .app243-carousel-next {
    padding: 1rem;
    font-size: 1.6rem;
  }

  .g3ab-section-title {
    font-size: 2.2rem;
  }
}
