/* ZZZBet Brasil - Grid-Masonry CSS Architecture (31st Unique Style) */
/* Theme: Night/Sleep - Deep Navy Blue + Silver */
/* Font: Raleway */
/* Domain: wap-zzzbet.com (WAP Mobile Network Theme) */

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

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #1a2332;
  --secondary: #c0c0c0;
  --accent: #4a90e2;
  --text: #e8e8e8;
  --text-dark: #1a2332;
  --bg: #0f1419;
  --bg-light: #1a2332;
  --border: #2a3442;
  --shadow: rgba(0, 0, 0, 0.5);
}

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

body {
  font-family: 'Raleway', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* ===== HEADER (NON-STICKY) ===== */
.zzz-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--bg-light) 100%);
  padding: 1.5rem 0;
  border-bottom: 2px solid var(--border);
  position: relative;
}

.zzz-header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.zzz-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.zzz-logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--secondary);
}

.zzz-brand {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: 2px;
}

.zzz-nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.zzz-nav-item {
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.zzz-nav-item:hover,
.zzz-nav-item.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.zzz-nav-cta {
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, var(--accent) 0%, #357abd 100%);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
  transition: all 0.3s ease;
}

.zzz-nav-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.6);
}

@media (max-width: 1024px) {
  .zzz-header-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .zzz-logo {
    justify-content: center;
  }
  
  .zzz-nav {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .zzz-nav-item {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
  }
}

/* ===== HERO ===== */
.zzz-hero {
  background: linear-gradient(135deg, rgba(26, 35, 50, 0.95) 0%, rgba(15, 20, 25, 0.95) 100%), 
              url('/images/hero-zzzbet.jpg') center/cover;
  padding: 6rem 2rem;
  text-align: center;
  border-bottom: 3px solid var(--accent);
}

.zzz-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px var(--shadow);
  line-height: 1.2;
}

.zzz-hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--text);
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.zzz-btn {
  display: inline-block;
  padding: 1.25rem 3rem;
  background: linear-gradient(135deg, var(--accent) 0%, #357abd 100%);
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 50px;
  box-shadow: 0 6px 25px rgba(74, 144, 226, 0.5);
  transition: all 0.3s ease;
}

.zzz-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 35px rgba(74, 144, 226, 0.7);
}

/* ===== CONTAINER ===== */
.zzz-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== SECTION ===== */
.zzz-section {
  padding: 5rem 0;
}

/* ===== TITLE ===== */
.zzz-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.zzz-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--secondary) 100%);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ===== TEXT ===== */
.zzz-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 2rem;
  text-align: justify;
}

/* ===== IMAGE ===== */
.zzz-img {
  width: 100%;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 8px 30px var(--shadow);
  border: 2px solid var(--border);
}

/* ===== GRID-MASONRY GAMES ===== */
.zzz-games {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.zzz-card {
  background: var(--bg-light);
  border: 2px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px var(--shadow);
}

.zzz-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(74, 144, 226, 0.3);
  border-color: var(--accent);
}

.zzz-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.zzz-card-content {
  padding: 2rem;
}

.zzz-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.zzz-card-text {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.zzz-card-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--accent);
  color: white;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.zzz-card-btn:hover {
  background: #357abd;
  transform: scale(1.05);
}

/* ===== INFO BOXES ===== */
.zzz-info-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.zzz-info-box {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--border);
  text-align: center;
  transition: all 0.3s ease;
}

.zzz-info-box:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.2);
}

.zzz-info-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.zzz-info-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.zzz-info-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
}

/* ===== FAQ ===== */
.zzz-faq {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--border);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.zzz-faq:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(74, 144, 226, 0.2);
}

.zzz-faq-q {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.zzz-faq-a {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
}

/* ===== REVIEWS ===== */
.zzz-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.zzz-review {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
}

.zzz-review:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.2);
}

.zzz-review-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}

.zzz-review-author {
  font-size: 0.95rem;
  color: var(--secondary);
  font-weight: 600;
}

/* ===== FOOTER ===== */
.zzz-footer {
  background: var(--primary);
  padding: 4rem 0 2rem;
  border-top: 3px solid var(--accent);
  margin-top: 5rem;
}

.zzz-footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.zzz-footer-col h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.zzz-footer-col ul {
  list-style: none;
}

.zzz-footer-col ul li {
  margin-bottom: 0.75rem;
}

.zzz-footer-col ul li a {
  color: var(--text);
  transition: all 0.3s ease;
}

.zzz-footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.zzz-footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.8;
}

.zzz-footer-bottom a {
  color: var(--accent);
  font-weight: 600;
}

.zzz-footer-bottom a:hover {
  text-decoration: underline;
}

/* ===== PAGE LAYOUT ===== */
.zzz-page {
  min-height: 60vh;
  padding: 3rem 0;
}

.zzz-article {
  max-width: 900px;
  margin: 0 auto;
}

.zzz-article-header {
  text-align: center;
  margin-bottom: 3rem;
}

.zzz-article-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.zzz-article-lead {
  font-size: 1.2rem;
  color: var(--text);
  line-height: 1.7;
}

.zzz-figure {
  margin: 3rem 0;
}

.zzz-caption {
  text-align: center;
  font-size: 0.95rem;
  color: var(--secondary);
  margin-top: 1rem;
  font-style: italic;
}

.zzz-content {
  margin: 3rem 0;
}

.zzz-h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 3rem 0 1.5rem;
}

.zzz-p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.5rem;
  text-align: justify;
}

.zzz-cta-box {
  background: linear-gradient(135deg, var(--accent) 0%, #357abd 100%);
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  margin: 4rem 0;
  box-shadow: 0 8px 30px rgba(74, 144, 226, 0.4);
}

.zzz-cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.zzz-cta-text {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 2rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .zzz-hero {
    padding: 4rem 1.5rem;
  }
  
  .zzz-section {
    padding: 3rem 0;
  }
  
  .zzz-games {
    grid-template-columns: 1fr;
  }
  
  .zzz-info-boxes {
    grid-template-columns: 1fr;
  }
  
  .zzz-reviews {
    grid-template-columns: 1fr;
  }
  
  .zzz-footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
