@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --bg-main: #09090b;
  --bg-card: #121218;
  --bg-card-hover: #1b1b24;
  --bg-glass: rgba(18, 18, 24, 0.75);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-gold-glow: rgba(229, 169, 59, 0.2);
  
  --primary-gold: #e5a93b;
  --primary-gold-hover: #f5ba50;
  --gold-gradient: linear-gradient(135deg, #ffd778 0%, #e5a93b 50%, #b27a1c 100%);
  --orange-gradient: linear-gradient(135deg, #ff7b00 0%, #e04a00 100%);
  
  --text-primary: #ffffff;
  --text-secondary: #b3b3ba;
  --text-muted: #737380;
  
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  
  --shadow-glow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
  --gold-glow: 0 0 20px rgba(229, 169, 59, 0.35);
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* Common Layout Elements */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.section-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gold-gradient);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo img {
  height: 42px;
  width: auto;
}

.main-nav {
  display: none;
}

.main-nav__list {
  display: flex;
  list-style: none;
  gap: 16px;
}

.main-nav__list a {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.main-nav__list a:hover {
  color: var(--primary-gold);
}

.main-nav__list .menu-icon {
  width: 16px;
  height: 16px;
  fill: var(--primary-gold);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.main-nav__list a:hover .menu-icon {
  transform: scale(1.1);
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-color);
}

.btn--outline:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

.btn--primary {
  background: var(--gold-gradient);
  color: #000000;
  box-shadow: var(--gold-glow);
  position: relative;
  overflow: hidden;
}

.btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
}

.btn--primary:hover::before {
  left: 100%;
}

.btn--primary:hover {
  background: var(--primary-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(229, 169, 59, 0.5);
}

.btn--orange {
  background: var(--orange-gradient);
  color: var(--text-primary);
  box-shadow: 0 0 15px rgba(255, 123, 0, 0.3);
}

.btn--orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(255, 123, 0, 0.5);
}

.btn--large {
  padding: 16px 36px;
  font-size: 1.1rem;
  border-radius: var(--border-radius-md);
}

.burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.menu-toggle {
  display: none;
}

/* Hero & Promotional Banner Carousel */
.hero {
  margin-top: 72px;
  padding: 20px 0 10px 0;
  position: relative;
}

.promo-carousel {
  position: relative;
  width: 100%;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-glow);
}

.promo-carousel__wrapper {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1616 / 500;
}

@media (max-width: 1023px) {
  .promo-carousel__wrapper {
    aspect-ratio: 960 / 640;
  }
}

.promo-carousel__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.promo-carousel__slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.promo-carousel__slide picture, 
.promo-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark gradient overlay to guarantee text readability */
.promo-carousel__slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0) 75%);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 1023px) {
  .promo-carousel__slide::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
  }
}

/* Banner Text Overlay Content */
.promo-carousel__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 6%;
  padding-right: 20px;
  z-index: 2;
  text-align: left;
}

@media (max-width: 1023px) {
  .promo-carousel__content {
    width: 65%;
    height: 100%;
    justify-content: center;
    padding-left: 6%;
    padding-right: 15px;
    padding-bottom: 0;
  }
}

.promo-carousel__pretitle {
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-gold);
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.promo-carousel__title {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 8px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.promo-carousel__subtitle {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

@media (max-width: 1023px) {
  .promo-carousel__pretitle {
    font-size: 0.7rem;
    margin-bottom: 4px;
  }
  .promo-carousel__title {
    font-size: 1.3rem;
    margin-bottom: 4px;
  }
  .promo-carousel__subtitle {
    font-size: 0.75rem;
    margin-bottom: 10px;
  }
  .promo-carousel__content .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .promo-carousel__content {
    width: 48%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .promo-carousel__title {
    font-size: 0.95rem;
  }
  .promo-carousel__pretitle {
    font-size: 0.6rem;
  }
  .promo-carousel__content .btn {
    padding: 6px 12px;
    font-size: 0.72rem;
  }
}

.promo-carousel__nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.promo-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
}

.promo-carousel__dot.active {
  background: var(--primary-gold);
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(229, 169, 59, 0.6);
}

.promo-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}

.promo-carousel__arrow:hover {
  background: var(--primary-gold);
  color: #000000;
  border-color: var(--primary-gold);
}

.promo-carousel__arrow--prev {
  left: 15px;
}

.promo-carousel__arrow--next {
  right: 15px;
}

/* Registration Form Section */
.register-section {
  padding: 30px 0;
}

.register-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-glow);
  overflow: hidden;
}

.register-card__image-container {
  display: none;
  position: relative;
  background: #0f0f15;
}

.register-card__image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.register-card__form-container {
  padding: 40px 30px;
}

.register-card__title {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
  text-align: center;
  color: var(--text-primary);
  text-transform: uppercase;
}

.register-card__subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 30px;
}

.register-form__group {
  margin-bottom: 20px;
}

.register-form__label {
  display: block;
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.register-form__input-wrapper {
  position: relative;
}

.register-form__input {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1.5px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  color: var(--text-primary);
  padding: 12px 16px;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: var(--transition-fast);
}

.register-form__input:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 10px rgba(229, 169, 59, 0.15);
  background: rgba(0, 0, 0, 0.6);
}

/* Country Selector Custom Style */
.register-form__phone-group {
  display: flex;
  gap: 10px;
}
.register-form__country-code {
  width: 120px;
  background: rgba(0, 0, 0, 0.4) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat right 8px center;
  background-size: 20px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  color: var(--text-primary);
  padding: 12px 28px 12px 10px;
  font-size: 1rem;
  text-align: left;
  font-family: var(--font-body);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.register-form__phone-input {
  flex: 1;
}

.register-form__password-row {
  display: flex;
  gap: 10px;
}

.register-form__password-input {
  flex: 1;
}

.register-form__generate-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid var(--border-color);
  color: var(--primary-gold);
  padding: 0 16px;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-title);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
  text-transform: uppercase;
  font-size: 0.85rem;
}

.register-form__generate-btn:hover {
  background: rgba(229, 169, 59, 0.1);
  border-color: var(--primary-gold);
}

.register-form__checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 10px;
  margin-bottom: 25px;
}

.register-form__checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border-color);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  position: relative;
  margin-top: 3px;
  flex-shrink: 0;
}

.register-form__checkbox:checked {
  background: var(--gold-gradient);
  border-color: var(--primary-gold);
}

.register-form__checkbox:checked::after {
  content: '✓';
  position: absolute;
  color: #000;
  font-size: 12px;
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.register-form__checkbox-label {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.4;
  cursor: pointer;
}

.register-form__checkbox-label a {
  color: var(--primary-gold);
}

.register-form__checkbox-label a:hover {
  text-decoration: underline;
}

.register-form__submit {
  width: 100%;
}

.register-form__login-text {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.register-form__login-text a {
  color: var(--primary-gold);
  font-weight: 700;
}

.register-form__login-text a:hover {
  text-decoration: underline;
}

/* Games Section - Tabs & Cards Grid (Mobile Default: 3 Columns) */
.games-section {
  padding: 30px 0 20px;
}

.games-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 25px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.games-tab {
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  color: var(--text-secondary);
  padding: 10px 18px;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.games-tab:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.2);
}

.games-tab.active {
  background: var(--gold-gradient);
  color: #000000;
  border-color: var(--primary-gold);
  box-shadow: var(--gold-glow);
}

.games-content {
  position: relative;
  min-height: 400px;
}

.games-pane {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.games-pane.active {
  display: grid;
  opacity: 1;
}

.game-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  position: relative;
  transition: var(--transition-normal);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.game-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #15151d;
}

.game-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.game-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-normal);
  padding: 10px;
  z-index: 2;
}

.game-card__overlay .btn {
  padding: 6px 10px;
  font-size: 0.75rem;
  width: 90%;
  white-space: nowrap;
  transform: translateY(15px);
  transition: var(--transition-normal);
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-gold);
  box-shadow: var(--gold-glow);
}

.game-card:hover .game-card__image img {
  transform: scale(1.08);
}

.game-card:hover .game-card__overlay {
  opacity: 1;
}

.game-card:hover .game-card__overlay .btn {
  transform: translateY(0);
}

.game-card__info {
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.game-card__name {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card__provider {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Dedicated Providers (Fornecedores) Section matching official lobby style */
.providers-section {
  padding: 20px 0 30px;
}

.providers-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.providers-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  text-transform: uppercase;
}

.providers-title svg {
  flex-shrink: 0;
}

.providers-nav {
  display: flex;
  gap: 8px;
}

.providers-nav-btn {
  width: 38px;
  height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.providers-nav-btn:hover {
  background: var(--primary-gold);
  color: #000000;
  border-color: var(--primary-gold);
}

.providers-list__wrapper {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 5px;
}

.providers-list__wrapper::-webkit-scrollbar {
  display: none;
}

.providers-list {
  display: flex;
  gap: 12px;
  width: 100%;
}

.provider-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  width: calc((100% - 2 * 12px) / 3);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  cursor: pointer;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.provider-card img {
  max-width: 80%;
  max-height: 50%;
  width: auto;
  height: auto;
  opacity: 0.55;
  filter: grayscale(1) brightness(1.3);
  transition: var(--transition-fast);
}

.provider-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary-gold);
  box-shadow: 0 4px 15px rgba(229, 169, 59, 0.15);
}

.provider-card:hover img {
  opacity: 1;
  filter: grayscale(0) brightness(1);
}

/* Info Table Section */
.info-section {
  padding: 30px 0;
}

.info-table-container {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.info-table th, .info-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-color);
}

.info-table th {
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-primary);
  border-bottom: 2px solid var(--primary-gold);
}

.info-table td:first-child {
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--primary-gold);
  width: 35%;
}

.info-table tr:last-child td {
  border-bottom: none;
}

.info-table tr:hover {
  background: rgba(255, 255, 255, 0.01);
}

/* Text SEO / Article Content Section */
.content-section {
  padding: 30px 0;
}

.seo-content {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  padding: 40px 30px;
  box-shadow: var(--shadow-glow);
}

.seo-content h2 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 35px;
  margin-bottom: 15px;
  color: var(--text-primary);
  border-left: 4px solid var(--primary-gold);
  padding-left: 15px;
}

.seo-content h2:first-of-type {
  margin-top: 0;
}

.seo-content h3 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 12px;
  color: var(--text-secondary);
}

.seo-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

.seo-content ul {
  list-style: none;
  margin-bottom: 25px;
  padding-left: 10px;
}

.seo-content ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--text-secondary);
}

.seo-content ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-size: 0.9rem;
}

.seo-content ol {
  margin-bottom: 25px;
  padding-left: 28px;
}

.seo-content ol li {
  margin-bottom: 12px;
  color: var(--text-secondary);
  padding-left: 8px;
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 30px 0;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  background: rgba(255, 255, 255, 0.01);
}

.seo-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  border: none;
}

.seo-content th, .seo-content td {
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  font-size: 0.95rem;
  white-space: nowrap;
}

.seo-content td:last-child {
  white-space: normal;
  min-width: 160px;
}

.seo-content th {
  background: rgba(255, 255, 255, 0.03);
  font-family: var(--font-title);
  font-weight: 700;
}

.seo-content td {
  color: var(--text-secondary);
}

/* FAQ Accordion Section */
.faq-section {
  padding: 30px 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item__header {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: var(--transition-fast);
}

.faq-item__header:hover {
  background: var(--bg-card-hover);
}

.faq-item__question {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  padding-right: 20px;
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item__icon::before, 
.faq-item__icon::after {
  content: '';
  position: absolute;
  background-color: var(--primary-gold);
  border-radius: 1px;
}

/* Horizontal line */
.faq-item__icon::before {
  top: 11px;
  left: 4px;
  width: 16px;
  height: 2px;
}

/* Vertical line */
.faq-item__icon::after {
  top: 4px;
  left: 11px;
  width: 2px;
  height: 16px;
  transition: transform 0.3s ease;
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  background: rgba(0, 0, 0, 0.1);
}

.faq-item__content {
  padding: 0 25px 25px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  padding-top: 15px;
}

.faq-item.active {
  border-color: var(--border-gold-glow);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-item__icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item.active .faq-item__body {
  max-height: 1000px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

/* Google Reviews Section */
.reviews-section {
  padding: 60px 0;
}

.reviews-summary {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: var(--shadow-glow);
}

.reviews-summary__google {
  height: 26px;
  margin-bottom: 12px;
}

.reviews-summary__score {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.stars {
  display: flex;
  gap: 4px;
  color: var(--primary-gold);
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.reviews-summary__count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.reviews-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.review-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  padding: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.review-card__user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  background: #272733;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-gold);
  border: 1.5px solid var(--border-color);
  position: relative;
}

.review-card__badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  background: url('../SlotLair - Site Oficial SlotLair Casino em Portugal_files/google-icon.svg') no-repeat center/contain;
}

.review-meta {
  display: flex;
  flex-direction: column;
}

.review-card__name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.review-card__date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.review-card__stars {
  color: var(--primary-gold);
  font-size: 0.9rem;
  display: flex;
  gap: 2px;
}

.review-card__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  font-style: italic;
}

/* Footer Section */
.footer {
  background: #060608;
  border-top: 1px solid var(--border-color);
  padding: 40px 0 20px;
}

.footer__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__logo img {
  height: 48px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 30px;
  list-style: none;
}

.footer__nav a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
}

.footer__nav a:hover {
  color: var(--primary-gold);
}

.footer__partners {
  width: 100%;
}

.footer__partners-title {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer__logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.footer__logos-grid img {
  height: 22px;
  width: auto;
  opacity: 0.45;
  filter: grayscale(1);
  transition: var(--transition-fast);
}

.footer__logos-grid img:hover {
  opacity: 0.85;
  filter: none;
}

.footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer__warning {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
}

.footer__copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Responsiveness (Desktop/Tablet Grid Adjustments) */
@media (max-width: 1023px) {
  .header__inner {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
  }
  .logo {
    order: 1;
  }
  .header-buttons {
    order: 2;
    margin-left: auto;
  }
  .burger {
    order: 3;
    display: flex;
  }
  .main-nav {
    display: none;
  }
  .menu-toggle:checked ~ .main-nav {
    display: block;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: #0f0f14;
    border-bottom: 1px solid var(--border-color);
    padding: 20px 24px;
    z-index: 100;
  }
  .menu-toggle:checked ~ .main-nav .main-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .menu-toggle:checked ~ .main-nav .main-nav__list a {
    font-size: 1rem;
    padding: 4px 0;
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .main-nav {
    display: block;
  }
  .burger {
    display: none;
  }
}

@media (min-width: 768px) {
  
  /* Tablet View: 5 columns */
  .games-pane {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }
  
  /* Providers List: Larger cards on desktop/tablet */
  .provider-card {
    width: calc((100% - 4 * 12px) / 5);
    height: 86px;
  }
  
  .register-card {
    grid-template-columns: 1fr 1fr;
  }
  
  .register-card__image-container {
    display: block;
  }
  
  .register-card__form-container {
    padding: 50px 40px;
  }
  
  .reviews-list {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* Desktop content adjustments for carousel */
  .promo-carousel__pretitle {
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }
  
  .promo-carousel__title {
    font-size: 2.8rem;
    margin-bottom: 12px;
  }
  
  .promo-carousel__subtitle {
    font-size: 1.05rem;
    margin-bottom: 24px;
  }
}

/* Desktop View: 7 columns */
@media (min-width: 1024px) {
  .games-pane {
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
  }
  
  .provider-card {
    width: calc((100% - 6 * 12px) / 7);
  }
  
  .hero {
    padding: 25px 0 10px 0;
  }
  
  .section-title {
    font-size: 2.6rem;
  }
}

/* Custom CSS-based Logo (playing cards + text logo) */
.css-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  user-select: none;
}

.css-logo__icon {
  position: relative;
  width: 36px;
  height: 40px;
  flex-shrink: 0;
}

.css-logo__card {
  position: absolute;
  width: 22px;
  height: 32px;
  border-radius: 3px;
}

.css-logo__card--back {
  background: linear-gradient(135deg, #b37d14 0%, #734d00 100%);
  top: 5px;
  left: 2px;
  transform: rotate(-18deg);
  opacity: 0.85;
}

.css-logo__card--front {
  background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  top: 2px;
  left: 10px;
  transform: rotate(-8deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: -2px 2px 6px rgba(0, 0, 0, 0.6);
}

.css-logo__spade {
  width: 13px;
  height: 13px;
  fill: #0d0d11;
}

.css-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 0.85;
  font-family: 'Outfit', 'Montserrat', 'Inter', 'Helvetica Neue', sans-serif;
  text-align: left;
}

.css-logo__word {
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.css-logo__word--slot {
  color: #ffffff;
}

.css-logo__word--lair {
  background: linear-gradient(to bottom, #ffd700, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #ffd700; /* Fallback */
}

/* Adjust size for footer if needed */
.footer__logo .css-logo {
  justify-content: center;
}

.footer__logo .css-logo__text {
  text-align: left;
}

@media (max-width: 767px) {
  .header-buttons {
    gap: 8px;
  }
  .header-buttons .btn {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
}

