/* Variáveis */
:root {
  --primary: #7e22ce;
  --secondary: #10b981;
  --accent: #3b82f6;
  --dark: #0a0a14;
  --darker: #050508;
  --card: #141428;
  --text: #ffffff;
  --text-secondary: #c9c9d5;
  --spacing-section: 120px;
  --border-radius: 16px;
}

/* Reset e Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background: radial-gradient(circle at center, #13051d 0%, #050508 100%);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 15% 15%, rgba(126, 34, 206, 0.15) 0%, transparent 35%),
    radial-gradient(circle at 85% 85%, rgba(59, 130, 246, 0.1) 0%, transparent 35%);
  z-index: -1;
  pointer-events: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5em;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--text);
}

/* Layout */
.sb-container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.sb-section {
  padding: var(--spacing-section) 0;
  position: relative;
  background: transparent;
}

.sb-section-divider {
  height: 150px;
  overflow: hidden;
  position: relative;
}

.sb-section-divider svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* Utilitários */
.sb-text-center { text-align: center; }
.sb-text-gradient {
  background: linear-gradient(135deg, #9333ea, #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.sb-mb-1 { margin-bottom: 1rem; }
.sb-mb-2 { margin-bottom: 2rem; }
.sb-mb-3 { margin-bottom: 3rem; }
.sb-mb-4 { margin-bottom: 4rem; }
.sb-mb-5 { margin-bottom: 5rem; }

.sb-mt-1 { margin-top: 1rem; }
.sb-mt-2 { margin-top: 2rem; }
.sb-mt-3 { margin-top: 3rem; }

.sb-py-1 { padding-top: 1rem; padding-bottom: 1rem; }
.sb-py-2 { padding-top: 2rem; padding-bottom: 2rem; }

/* Botões */
.sb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  gap: 8px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.sb-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
  z-index: -1;
}

.sb-btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.sb-btn-primary {
  background: linear-gradient(45deg, var(--primary), var(--accent));
  color: var(--text);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.sb-btn-secondary {
  background: rgba(61, 61, 100, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(126, 34, 206, 0.3);
  color: var(--text);
}

.sb-btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Header/Navbar */
.sb-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.sb-navbar.scrolled {
  background: rgba(5, 5, 8, 0.9);
  backdrop-filter: blur(20px);
  padding: 15px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sb-navbar .sb-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sb-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sb-brand-logo {
  height: 40px;
  width: auto;
}

.sb-brand-name {
  font-weight: 700;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #9333ea, #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sb-nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.sb-nav-link {
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: all 0.3s ease;
  opacity: 0.9;
  color: var(--text);
}

.sb-nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.sb-nav-link:hover {
  opacity: 1;
}

.sb-nav-link:hover::after {
  width: 100%;
}

.sb-nav-button {
  background: linear-gradient(45deg, var(--primary), var(--accent));
  color: var(--text);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.sb-nav-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(126, 34, 206, 0.5);
}

.sb-menu-button {
  display: none;
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
}

.sb-menu-button span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}

.sb-menu-button span:nth-child(1) { top: 12px; }
.sb-menu-button span:nth-child(2) { top: 19px; }
.sb-menu-button span:nth-child(3) { top: 26px; }

.sb-menu-button.active span:nth-child(1) {
  transform: translateX(-50%) rotate(45deg);
  top: 19px;
}

.sb-menu-button.active span:nth-child(2) {
  opacity: 0;
}

.sb-menu-button.active span:nth-child(3) {
  transform: translateX(-50%) rotate(-45deg);
  top: 19px;
}

.sb-mobile-nav {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: rgba(5, 5, 8, 0.95);
  padding: 20px 0;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.sb-mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.sb-mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sb-mobile-link {
  font-size: 1.2rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.sb-mobile-button {
  background: linear-gradient(45deg, var(--primary), var(--accent));
  color: var(--text);
  padding: 15px 0;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  margin-top: 10px;
}

/* Hero Section */
.sb-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.sb-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sb-hero-content {
  max-width: 600px;
}

.sb-hero-title {
  margin-bottom: 24px;
}

.sb-hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 500px;
}

.sb-hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.sb-promo-card {
  background: rgba(30, 30, 60, 0.4);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 24px;
  border: 1px solid rgba(126, 34, 206, 0.2);
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.sb-promo-card p {
  color: var(--text);
  margin-bottom: 0.5rem;
}

.sb-promo-card p:last-child {
  margin-bottom: 0;
  font-weight: 700;
}

.sb-countdown {
  color: #5eead4;
  font-weight: 700;
}

.sb-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sb-stat-item h3 {
  font-size: 2rem;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #9333ea, #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sb-stat-item p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.sb-hero-image {
  position: relative;
}

.sb-game-preview {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(126, 34, 206, 0.3);
  max-width: 500px;
  margin: 0 auto;
  background: rgba(15, 15, 30, 0.7);
}

.sb-game-preview img {
  transition: transform 0.5s ease;
  opacity: 0.95;
}

.sb-game-preview:hover img {
  transform: scale(1.03);
  opacity: 1;
}

.sb-game-status {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.sb-status-badge {
  background: linear-gradient(45deg, var(--primary), var(--accent));
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.sb-player-count {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
}

/* Features Section */
.sb-features {
  background: rgba(10, 10, 20, 0.3);
  position: relative;
}

.sb-section-header {
  max-width: 700px;
  margin: 0 auto 60px;
}

.sb-section-header p {
  color: var(--text-secondary);
}

.sb-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.sb-feature-card {
  background: rgba(30, 30, 60, 0.3);
  border-radius: var(--border-radius);
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(126, 34, 206, 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sb-feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(126, 34, 206, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.sb-feature-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(126, 34, 206, 0.2);
  border-radius: 50%;
  margin-bottom: 24px;
  font-size: 2rem;
}

.sb-feature-card h3 {
  margin-bottom: 16px;
  color: var(--text);
}

.sb-feature-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 1rem;
}

/* Game Info Section */
.sb-game-info {
  background: transparent;
  position: relative;
}

.sb-game-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sb-game-info-content h2 {
  margin-bottom: 16px;
  color: var(--text);
}

.sb-game-info-content p:first-of-type {
  color: #5eead4;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.sb-game-info-content p {
  color: var(--text);
}

.sb-features-list {
  margin: 40px 0;
}

.sb-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.sb-feature-item span:last-child {
  color: var(--text-secondary);
}

.sb-feature-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(126, 34, 206, 0.5);
}

.sb-feature-dot::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
}

/* FAQ Section */
.sb-faq {
  background: rgba(10, 10, 20, 0.3);
}

.sb-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.sb-faq-item {
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  overflow: hidden;
  background: rgba(30, 30, 60, 0.3);
  border: 1px solid rgba(126, 34, 206, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.sb-faq-item:hover {
  border-color: rgba(126, 34, 206, 0.4);
}

.sb-faq-header {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(20, 20, 40, 0.5);
}

.sb-faq-header h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
  color: var(--text);
}

.sb-faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(126, 34, 206, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--text);
}

.sb-faq-item.active .sb-faq-icon {
  transform: rotate(45deg);
  background: var(--primary);
}

.sb-faq-content {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.sb-faq-content p, 
.sb-faq-content li {
  color: var(--text-secondary);
}

.sb-faq-item.active .sb-faq-content {
  padding: 0 24px 24px;
  max-height: 1000px;
}

.sb-faq-content ol {
  margin-left: 20px;
  margin-top: 16px;
}

.sb-faq-content li {
  margin-bottom: 8px;
}

/* CTA Section */
.sb-cta {
  text-align: center;
  position: relative;
  background: transparent;
}

.sb-cta-card {
  background: rgba(30, 30, 60, 0.4);
  border-radius: var(--border-radius);
  padding: 60px;
  border: 1px solid rgba(126, 34, 206, 0.3);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.sb-cta-card h2,
.sb-cta-card p {
  color: var(--text);
}

.sb-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(126, 34, 206, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 40%);
  z-index: -1;
}

.sb-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 40px 0;
}

.sb-user-avatars {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.sb-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--darker);
  margin-left: -10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

.sb-avatar:nth-child(2) {
  background: var(--secondary);
}

.sb-avatar:nth-child(3) {
  background: var(--accent);
}

/* Footer */
.sb-footer {
  background: rgba(5, 5, 8, 0.8);
  padding: 60px 0 30px;
  text-align: center;
}

.sb-footer-logo {
  margin-bottom: 24px;
}

.sb-footer-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.sb-footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.sb-footer-link {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.sb-footer-link:hover {
  color: var(--text);
}

.sb-copyright {
  color: var(--text-secondary);
  font-size: 0.8rem;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animações */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* Media Queries */
@media (max-width: 992px) {
  :root {
    --spacing-section: 80px;
  }
  
  .sb-hero-grid, .sb-game-info-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .sb-hero-content, .sb-game-info-content {
    text-align: center;
    margin: 0 auto;
  }
  
  .sb-hero-buttons, .sb-features-list {
    justify-content: center;
  }
  
  .sb-feature-item {
    justify-content: center;
  }
  
  .sb-stats-grid {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .sb-nav-menu {
    display: none;
  }
  
  .sb-menu-button {
    display: block;
  }
  
  .sb-cta-card {
    padding: 40px 20px;
  }
}

@media (max-width: 768px) {
  .sb-features-grid {
    grid-template-columns: 1fr;
  }
  
  .sb-cta-buttons {
    flex-direction: column;
  }
  
  .sb-hero {
    padding-top: 100px;
  }
  
  .sb-game-preview {
    max-width: 100%;
  }
  
  .sb-game-preview img {
    max-height: 300px;
    object-fit: cover;
    width: 100%;
  }
  
  .sb-feature-card {
    padding: 30px;
  }
  
  .sb-faq-header h3 {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  :root {
    --spacing-section: 60px;
  }
  
  .sb-stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .sb-hero-subtitle {
    font-size: 1rem;
  }
  
  .sb-section-header h2 {
    font-size: 1.8rem;
  }
  
  .sb-cta-card {
    padding: 30px 15px;
  }
} 