:root {
  --bg: #0c0c0f;
  --bg-soft: #121217;
  --background: #0c0c0f;
  --text: #f3f4f6;
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --muted: #c9cbd1;
  --primary: #e11d2e;
  --primary-600: #c8102e;
  --outline: #ffffff22;
  --container: 1200px;
}

/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-600);
  transform: translateY(-2px);
}

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

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

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.btn:active {
  transform: translateY(0);
}

/* Mobile Header */
.mobile-header {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(12, 12, 15, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-container {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.25rem;
}



.logo {
  width: 48px;
  height: 48px;
}

/* Burger Menu */
.burger-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger-line {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: var(--background);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu {
  transform: translateX(0);
}

.mobile-menu-header {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.close-menu {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  flex: 1;
  padding: 2rem 0;
}

.mobile-nav-link {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus,
.mobile-nav-link.active {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
  border-left-color: var(--primary);
}

.mobile-nav-link:focus {
  outline: none;
}

.mobile-nav-actions {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Desktop Sidebar */
.desktop-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: var(--background);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  display: none;
  flex-direction: column;
}

.sidebar-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-nav {
  flex: 1;
  padding: 2rem 0;
}

.sidebar-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.sidebar-nav-link:hover,
.sidebar-nav-link:focus,
.sidebar-nav-link.active {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
  border-left-color: var(--primary);
}

.sidebar-nav-link:focus {
  outline: none;
}

.nav-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(69%) sepia(25%) saturate(1000%) hue-rotate(315deg) brightness(95%) contrast(85%);
}

.nav-actions {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}

.sidebar-nav-link.active .nav-icon,
.sidebar-nav-link:hover .nav-icon {
  filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
}

.sidebar-actions {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Main Content */
.main-content {
  transition: margin-left 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
}

/* Mobile Hero */
.hero-mobile {
  width: 100%;
  max-width: 1639px;
  margin: 0 auto;
  padding-top: 80px; /* Account for fixed header */
}

.hero-mobile-link {
  display: block;
  width: 100%;
  transition: transform 0.3s ease;
}

.hero-mobile-link:hover {
  transform: scale(1.02);
}

.hero-mobile-link:focus {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  border-radius: 12px;
}

.hero-mobile-banner {
  width: 100%;
  height: auto;
  max-height: 546px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Desktop Hero */
.hero-desktop {
  display: none;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 2rem;
}

.hero-banner-link {
  display: block;
  width: 100%;
  transition: transform 0.3s ease;
}

.hero-banner-link:hover {
  transform: scale(1.02);
}

.hero-banner-link:focus {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  border-radius: 12px;
}

.hero-banner {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* SEO Content Section */
.seo-content {
    padding: 4rem 0;
    background-color: var(--bg-soft);
}

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

.seo-header h1,
.seo-header .hero-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
    padding: 0 1rem;
}

.seo-header h1 i {
    margin-right: 0.5rem;
    color: var(--primary);
}

.seo-subtitle {
    font-size: 1rem;
    color: var(--muted);
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
    line-height: 1.4;
}

.seo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.seo-card {
    background-color: var(--bg);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--outline);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.seo-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.seo-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.seo-card-header i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 1rem;
    min-width: 30px;
}

.seo-card-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
    line-height: 1.3;
}

.seo-card p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.seo-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seo-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    color: var(--muted);
    line-height: 1.5;
}

.seo-list li i {
    color: var(--primary);
    margin-right: 0.75rem;
    margin-top: 2px;
    min-width: 16px;
}

.game-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.category-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background-color: var(--bg-soft);
    border-radius: 8px;
    border: 1px solid var(--outline);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.category-item:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
}

.category-item i {
    font-size: 1.25rem;
    color: var(--primary);
    margin-right: 0.75rem;
    min-width: 24px;
}

.category-item span {
    color: var(--text);
    font-weight: 500;
}

.seo-cta {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg);
    border-radius: 12px;
    border: 1px solid var(--outline);
}

.seo-cta h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.seo-cta h2 i {
    margin-right: 0.5rem;
    color: var(--primary);
}

.seo-cta p {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    background-color: var(--primary-600);
}

.cta-button i {
    margin-right: 0.5rem;
}

/* Bonuses Section */
.bonuses {
  padding: 4rem 0;
  background: var(--bg-soft);
}

.bonuses-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.bonus-banner {
  text-align: center;
}

.bonus-banner a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.bonus-banner a:hover {
  transform: scale(1.02);
}

.bonus-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.bonus-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.bonus-item {
  background-color: var(--bg);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--outline);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.bonus-item:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
}

.bonus-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.bonus-item p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Slots Section */
.slots {
  padding: 4rem 0;
  background: var(--background);
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.slot-link {
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

.slot-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.slot-link:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.slot-image {
  width: 100%;
  height: auto;
  max-width: 380px;
  max-height: 380px;
  object-fit: cover;
  display: block;
}

/* Games Section */
.games {
  padding: 4rem 0;
  background-color: var(--bg-soft);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text);
}

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

.section-header .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.4;
  text-align: center;
  padding: 0 1rem;
}

.games-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.game-category {
  background-color: var(--bg);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--outline);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.game-category:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.category-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  filter: brightness(0) saturate(100%) invert(11%) sepia(100%) saturate(7471%) hue-rotate(356deg) brightness(91%) contrast(86%);
}

.game-category h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.game-category p {
  color: var(--muted);
  font-size: 0.875rem;
}

/* Footer */
.footer {
  background-color: var(--bg);
  padding: 2rem 0;
  border-top: 1px solid var(--outline);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-info p {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.age-restriction {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.age-icon {
  width: 20px;
  height: 20px;
}

.age-restriction span {
  color: var(--muted);
  font-size: 0.75rem;
}

/* Footer Navigation */
.footer-nav {
  margin: 1rem 0;
}

.footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-nav-link:hover {
  color: var(--primary);
  background-color: rgba(220, 38, 127, 0.1);
  transform: translateY(-2px);
}

.footer-nav-link:active {
    transform: translateY(0);
  }

/* SEO Analysis Section Styles */
.seo-analysis {
    padding: 4rem 0;
    background-color: var(--bg-soft);
}

.seo-analysis-header {
    text-align: center;
    margin-bottom: 3rem;
}

.seo-analysis-header .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.seo-analysis-header .section-subtitle {
    font-size: 1rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
}

.seo-analysis-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.analysis-text {
    background-color: var(--bg);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--outline);
}

.analysis-text p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: justify;
}

.analysis-text strong {
    color: var(--primary);
    font-weight: 600;
}

.analysis-highlights {
    position: sticky;
    top: 100px;
}

.highlight-box {
    background-color: var(--bg);
    border: 1px solid var(--outline);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.highlight-box:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.highlight-box i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.highlight-box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.highlight-box ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.highlight-box li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    color: var(--muted);
    line-height: 1.5;
}

.highlight-box li:last-child {
    margin-bottom: 0;
}

.highlight-box li i {
    color: var(--primary);
    margin-right: 0.75rem;
    margin-top: 2px;
    min-width: 16px;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .seo-analysis {
        padding: 3rem 0;
    }
    
    .seo-analysis-header .section-title {
        font-size: 1.5rem;
        padding: 0 1rem;
    }
    
    .seo-analysis-header .section-subtitle {
        padding: 0 1rem;
    }
    
    .seo-analysis-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .analysis-highlights {
        position: static;
    }
    
    .analysis-text {
        padding: 1.5rem;
    }
    
    .highlight-box {
        padding: 1.5rem;
    }
    
    .section-header .section-title {
        font-size: 1.5rem;
        padding: 0 1rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
}

/* FAQ Section Styles */
.faq-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--bg) 0%, rgba(220, 38, 127, 0.02) 100%);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(220, 38, 127, 0.1);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question[aria-expanded="true"] {
  color: var(--primary);
  border-bottom: 1px solid var(--outline);
}

.faq-icon {
  font-size: 1rem;
  transition: transform 0.3s ease;
  color: var(--muted);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.active {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Desktop Styles */
@media (min-width: 768px) {
  /* Hide mobile header, show desktop sidebar */
  .mobile-header {
    display: none;
  }
  
  .desktop-sidebar {
    display: flex;
  }
  
  .main-content {
    margin-left: 280px;
    padding-top: 2rem;
  }
  
  /* Switch to desktop hero */
  .hero-mobile {
    display: none;
  }
  
  .hero-desktop {
    display: block;
  }
  
  .slots-grid {
    grid-template-columns: repeat(7, 1fr);
    gap: 1.5rem;
  }
  
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bonuses-content {
    flex-direction: row;
    align-items: flex-start;
  }
  
  .bonus-banner {
    flex: 1;
  }
  
  .bonus-list {
    flex: 1;
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    align-items: flex-start;
  }
  
  .footer-nav {
    margin: 0;
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  .footer-nav-list {
    gap: 2rem;
  }
  
  .footer-nav-link {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
  
  /* SEO Content responsive styles */
  .seo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .game-categories {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Hero title and subtitle tablet styles */
  .seo-header .hero-title {
    font-size: 2rem;
    padding: 0 2rem;
  }
  
  .seo-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    padding: 0 2rem;
  }
}

/* Large Desktop Styles */
@media (min-width: 1024px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .bonus-list {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* SEO Content large desktop styles */
  .seo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* Hero title and subtitle desktop styles */
  .seo-header .hero-title {
    font-size: 2.5rem;
    padding: 0 3rem;
  }
  
  .seo-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    padding: 0 3rem;
  }
}