/*
Theme Name: ExitLag Gaming Theme
Description: A professional gaming-focused WordPress theme based on ExitLag.com design. Perfect for gaming companies, esports teams, and gaming service providers.
Author: Custom Theme
Version: 1.0
License: GPL v2 or later
Tags: gaming, dark-theme, esports, responsive, custom-header
*/

/* Reset and Base Styles */
* {
  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: #100f14;
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #100f14;
}

::-webkit-scrollbar-thumb {
  background: #9e2826;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #7a1f1e;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  line-height: 1.2;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Header Styles */
.site-header {
  background-color: #100f14;
  border-bottom: 1px solid #374151;
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.site-logo img {
  height: 2rem;
  width: auto;
}

/* Navigation */
.main-nav {
  display: none;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #d1d5db;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: #9e2826;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #7a1f1e;
}

.btn-ghost {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid transparent;
}

.btn-ghost:hover {
  background-color: #374151;
}

.btn-lg {
  padding: 1.5rem 3rem;
  font-size: 1.125rem;
}

/* Hero Section */
.hero-section {
  background-color: #100f14;
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.hero-bg-red {
  position: absolute;
  top: 5rem;
  right: 5rem;
  width: 24rem;
  height: 24rem;
  background-color: #9e2826;
  border-radius: 50%;
  filter: blur(3rem);
}

.hero-bg-purple {
  position: absolute;
  bottom: 5rem;
  left: 5rem;
  width: 24rem;
  height: 24rem;
  background-color: #7c3aed;
  border-radius: 50%;
  filter: blur(3rem);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.hero-badge img {
  height: 1.25rem;
  width: 1.25rem;
}

.hero-badge span {
  color: #10b981;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
  line-height: 1.1;
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 5rem;
  }
}

.hero-subtitle {
  color: #d1d5db;
}

.hero-promo {
  margin-bottom: 2rem;
}

.hero-promo p {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.promo-highlight {
  font-weight: bold;
  color: #10b981;
}

/* Pricing Cards */
.pricing-cards {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .pricing-cards {
    flex-direction: row;
  }
}

.pricing-card {
  background-color: #9e2826;
  border-radius: 0.5rem;
  padding: 1.5rem;
  color: #ffffff;
  text-align: center;
  position: relative;
}

.pricing-card:first-child {
  transform: rotate(-5deg);
}

.pricing-card:nth-child(2) {
  transform: rotate(2deg) scale(1.1);
  z-index: 10;
}

.pricing-card:last-child {
  transform: rotate(5deg);
}

.pricing-icon {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.pricing-subtitle {
  font-size: 0.875rem;
}

/* Offer Section */
.offer-section {
  margin-bottom: 2rem;
}

.offer-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.offer-highlight {
  color: #10b981;
}

.offer-subtitle {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.offer-terms {
  font-size: 0.875rem;
  color: #9ca3af;
}

/* Stats Section */
.stats-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-section {
    flex-direction: row;
    gap: 4rem;
  }
}

.stat-item h3 {
  font-size: 1.125rem;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-size: 1.875rem;
  font-weight: bold;
  color: #ffffff;
}

.stat-text {
  font-size: 0.875rem;
  color: #9ca3af;
}

/* Features Section */
.features-section {
  background-color: #0a0a0f;
  padding: 5rem 0;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-badge {
  color: #ef4444;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.features-title {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .features-title {
    font-size: 3.75rem;
  }
}

/* Performance Comparison */
.performance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .performance-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.performance-item {
  position: relative;
}

.performance-item img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: 0.5rem;
}

.performance-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgba(34, 197, 94, 0.9);
  border: 1px solid #16a34a;
  border-radius: 0.5rem;
  padding: 1rem;
  color: #ffffff;
}

.performance-overlay.off {
  background-color: rgba(75, 85, 99, 0.9);
  border-color: #6b7280;
}

.performance-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.performance-toggle {
  width: 1.5rem;
  height: 1.5rem;
  background-color: #16a34a;
  border-radius: 50%;
  position: relative;
}

.performance-toggle.off {
  background-color: #6b7280;
}

.performance-toggle::after {
  content: '';
  position: absolute;
  inset: 0.5rem;
  background-color: #ffffff;
  border-radius: 50%;
}

.performance-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  text-align: center;
}

.performance-stat p:first-child {
  font-size: 0.75rem;
  color: #d1d5db;
}

.performance-stat p:last-child {
  font-size: 1.25rem;
  font-weight: bold;
}

.performance-stat.good p:last-child {
  color: #10b981;
}

.performance-stat.bad p:last-child {
  color: #ef4444;
}

/* Feature Cards Grid */
.feature-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .feature-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .feature-cards {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.feature-card {
  text-align: center;
}

.feature-icon {
  background-color: #9e2826;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.feature-icon svg {
  width: 2rem;
  height: 2rem;
  color: #ffffff;
}

.feature-title {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.feature-description {
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Games Section */
.games-section {
  background-color: #100f14;
  padding: 5rem 0;
}

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

@media (min-width: 768px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .games-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.game-card {
  background-color: #1f2937;
  border: 1px solid #374151;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.3s;
}

.game-card:hover {
  transform: scale(1.05);
}

.game-card img {
  width: 100%;
  height: 8rem;
  object-fit: cover;
}

.game-info {
  padding: 0.75rem;
}

.game-title {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-genre {
  color: #9ca3af;
  font-size: 0.75rem;
}

/* Games CTA */
.games-cta {
  text-align: center;
}

.games-title {
  color: #ffffff;
  font-size: 1.875rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .games-title {
    font-size: 3rem;
  }
}

/* Ambassadors Section */
.ambassadors-section {
  background-color: #0a0a0f;
  padding: 5rem 0;
}

.ambassadors-header {
  text-align: center;
  margin-bottom: 4rem;
}

.ambassadors-title {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .ambassadors-title {
    font-size: 3.75rem;
  }
}

.ambassadors-subtitle {
  color: #9ca3af;
  font-size: 1.125rem;
  max-width: 48rem;
  margin: 0 auto;
}

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

@media (min-width: 768px) {
  .ambassadors-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .ambassadors-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.ambassador-card {
  border-radius: 0.5rem;
  overflow: hidden;
}

.ambassador-card.red {
  background: linear-gradient(to bottom, #dc2626, #1f2937);
}

.ambassador-card.green {
  background: linear-gradient(to bottom, #16a34a, #1f2937);
}

.ambassador-card.blue {
  background: linear-gradient(to bottom, #2563eb, #1f2937);
}

.ambassador-image {
  position: relative;
  height: 16rem;
}

.ambassador-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ambassador-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.ambassador-content {
  padding: 1.5rem;
  background-color: #1f2937;
}

.ambassador-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.ambassador-name h3 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: bold;
}

.ambassador-name img {
  width: 1.5rem;
  height: 1.5rem;
}

.ambassador-title {
  color: #ef4444;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.ambassador-quote {
  color: #d1d5db;
  font-size: 0.875rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.ambassador-socials {
  display: flex;
  gap: 0.75rem;
}

.ambassador-socials a {
  color: #9ca3af;
  transition: color 0.3s;
}

.ambassador-socials a:hover {
  color: #ffffff;
}

.ambassador-socials svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Customization Section */
.customization-section {
  background-color: #100f14;
  padding: 5rem 0;
}

.customization-header {
  text-align: center;
  margin-bottom: 4rem;
}

.customization-badge {
  color: #ef4444;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.customization-title {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .customization-title {
    font-size: 3.75rem;
  }
}

.customization-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .customization-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.customization-image {
  position: relative;
}

.customization-image img {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.connection-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #16a34a;
  color: #ffffff;
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.customization-content {
  space-y: 2rem;
}

.customization-description {
  color: #d1d5db;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.customization-subtitle {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.feature-checkmark {
  background-color: #16a34a;
  border-radius: 50%;
  padding: 0.25rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.feature-checkmark svg {
  width: 0.75rem;
  height: 0.75rem;
  color: #ffffff;
}

.feature-text {
  color: #d1d5db;
  font-size: 1.125rem;
}

.customization-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
}

@media (min-width: 640px) {
  .customization-buttons {
    flex-direction: row;
  }
}

.btn-outline {
  border: 1px solid #6b7280;
  color: #ffffff;
  background-color: transparent;
}

.btn-outline:hover {
  background-color: #374151;
}

/* Final CTA Section */
.final-cta {
  background-color: #9e2826;
  padding: 5rem 0;
  text-align: center;
}

.final-cta-title {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.3;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .final-cta-title {
    font-size: 3.75rem;
  }
}

.btn-dark {
  background-color: #000000;
  color: #ffffff;
}

.btn-dark:hover {
  background-color: #374151;
}

/* Footer Section */
.site-footer {
  background-color: #0a0a0f;
  padding: 4rem 0;
}

.footer-support {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-support {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.support-card {
  text-align: center;
}

.support-card h3 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.support-card p {
  color: #9ca3af;
  margin-bottom: 1rem;
}

.btn-outline-red {
  border: 1px solid #ef4444;
  color: #ef4444;
  background-color: transparent;
}

.btn-outline-red:hover {
  background-color: #ef4444;
  color: #ffffff;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-logo {
  grid-column: span 2;
}

@media (min-width: 768px) {
  .footer-logo {
    grid-column: span 1;
  }
}

.footer-logo img {
  height: 3rem;
  width: auto;
  margin-bottom: 1rem;
}

.footer-column h4 {
  color: #ef4444;
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .social-icons {
    margin-bottom: 0;
  }
}

.social-icons a {
  color: #9ca3af;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ffffff;
}

.social-icons svg {
  width: 1.5rem;
  height: 1.5rem;
}

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

@media (min-width: 768px) {
  .footer-meta {
    flex-direction: row;
  }
}

.copyright {
  color: #9ca3af;
  font-size: 0.875rem;
}

.language-select {
  background-color: transparent;
  color: #9ca3af;
  border: 1px solid #6b7280;
  border-radius: 0.25rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
}

/* Header Buttons */
.header-buttons {
  display: none;
}

@media (min-width: 1024px) {
  .header-buttons {
    display: flex !important;
    align-items: center;
    gap: 1rem;
  }
}

/* Mobile Menu */
.mobile-menu-button {
  display: block;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-button {
    display: none;
  }
}

.mobile-menu {
  display: none;
  border-top: 1px solid #374151;
  padding: 1rem 0;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.mobile-nav a:hover {
  color: #d1d5db;
}

.mobile-buttons {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Utility Classes */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* WordPress specific styles */
.wp-block-group {
  margin: 0;
}

.aligncenter {
  text-align: center;
}

.alignleft {
  float: left;
  margin-right: 1rem;
}

.alignright {
  float: right;
  margin-left: 1rem;
}
