:root {
  /* Neon Color System */
  --neon-cyan: #00ffff;
  --neon-blue: #0080ff;
  --neon-purple: #8000ff;
  --neon-pink: #ff00ff;
  --neon-green: #00ff80;
  --neon-orange: #ff8000;
  
  /* Background Colors */
  --bg-primary: #0a0a0a;
  --bg-secondary: #1a1a1a;
  --bg-tertiary: #2a2a2a;
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-accent: var(--neon-cyan);
  
  /* Spacing System */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-xxl: 64px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-weight: 400;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

h2 {
  font-size: 2rem;
  margin-bottom: var(--space-lg);
  text-align: center;
  color: var(--neon-cyan);
  text-shadow: 0 0 20px var(--neon-cyan);
}

h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, var(--neon-blue)20 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, var(--neon-purple)20 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

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

.brand-name {
  color: var(--neon-cyan);
  text-shadow: 0 0 30px var(--neon-cyan);
  font-weight: 700;
}

.tagline {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid var(--neon-blue)40;
}

.feature-icon {
  width: 32px;
  height: 32px;
  filter: brightness(0) saturate(100%) invert(1);
}

.cta-button {
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
  color: var(--bg-primary);
  border: none;
  padding: var(--space-sm) var(--space-lg);
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 20px var(--neon-cyan)60;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--neon-cyan)80;
}

/* Section Spacing */
section {
  padding: var(--space-xxl) 0;
}

.about {
  background: var(--bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.about-item {
  text-align: center;
  padding: var(--space-lg);
  background: var(--bg-tertiary);
  border-radius: 12px;
  border: 1px solid var(--neon-purple)40;
}

.about-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-md);
  filter: brightness(0) saturate(100%) invert(1);
}

/* Gaming PCs Section */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.spec-card {
  background: var(--bg-secondary);
  padding: var(--space-lg);
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--neon-green)40;
}

.spec-icon {
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-sm);
  filter: brightness(0) saturate(100%) invert(1);
}

/* Bootcamp Rooms */
.bootcamp-rooms {
  background: var(--bg-secondary);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-lg);
}

.room-card {
  background: var(--bg-tertiary);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--neon-orange)40;
}

.room-card h3,
.room-card p {
  padding: 0 var(--space-md);
}

.room-card ul {
  padding: var(--space-sm) var(--space-md) var(--space-md);
  list-style: none;
}

.room-card li {
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
}

.room-card li:before {
  content: '✓';
  color: var(--neon-green);
  font-weight: bold;
  margin-right: var(--space-xs);
}

/* Lounge Section */
.lounge-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.lounge-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.lounge-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: var(--bg-secondary);
  border-radius: 8px;
  border: 1px solid var(--neon-pink)40;
}

/* Pricing Section */
.pricing {
  background: var(--bg-secondary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.price-card {
  background: var(--bg-tertiary);
  padding: var(--space-lg);
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--neon-blue)40;
}

.price-card.featured {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 30px var(--neon-cyan)30;
  transform: scale(1.05);
}

.price-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-md);
  filter: brightness(0) saturate(100%) invert(1);
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--neon-cyan);
  margin-bottom: var(--space-md);
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.price-card ul {
  list-style: none;
  text-align: left;
}

.price-card li {
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
  padding-left: var(--space-md);
  position: relative;
}

.price-card li:before {
  content: '✓';
  color: var(--neon-green);
  position: absolute;
  left: 0;
}

/* Products Section */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.product-card {
  background: var(--bg-secondary);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--neon-purple)40;
}

.product-card h3,
.product-card p {
  padding: 0 var(--space-md);
  margin-bottom: var(--space-sm);
}

.product-button {
  width: 100%;
  background: var(--neon-purple);
  color: var(--bg-primary);
  border: none;
  padding: var(--space-sm);
  font-weight: 600;
  cursor: pointer;
  margin-top: var(--space-md);
}

.product-button:hover {
  background: var(--neon-pink);
  box-shadow: 0 0 20px var(--neon-pink)60;
}

/* Tournaments Section */
.tournaments {
  background: var(--bg-secondary);
}

.tournament-calendar {
  max-width: 800px;
  margin: 0 auto;
}

.tournament-event {
  display: flex;
  gap: var(--space-md);
  background: var(--bg-tertiary);
  padding: var(--space-md);
  border-radius: 12px;
  margin-bottom: var(--space-md);
  border: 1px solid var(--neon-orange)40;
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--neon-orange);
  color: var(--bg-primary);
  padding: var(--space-sm);
  border-radius: 8px;
  min-width: 80px;
}

.day {
  font-size: 1.5rem;
  font-weight: 700;
}

.month {
  font-size: 0.8rem;
  font-weight: 500;
}

.event-info h3 {
  color: var(--neon-cyan);
}

.event-time {
  color: var(--neon-orange);
  font-weight: 500;
}

/* Booking Section */
.booking-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.seat-map {
  background: var(--bg-secondary);
  padding: var(--space-lg);
  border-radius: 12px;
  border: 1px solid var(--neon-green)40;
}

.seats-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
  justify-items: center;
}

.seat {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
}

.seat.available {
  background: var(--neon-green);
}

.seat.occupied {
  background: #666;
  cursor: not-allowed;
}

.seat.selected {
  background: var(--neon-cyan);
  box-shadow: 0 0 15px var(--neon-cyan);
}

.legend {
  display: flex;
  justify-content: space-around;
  margin-top: var(--space-md);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.9rem;
}

.legend .seat {
  width: 20px;
  height: 20px;
}

.booking-form {
  background: var(--bg-secondary);
  padding: var(--space-lg);
  border-radius: 12px;
  border: 1px solid var(--neon-blue)40;
}

.quick-book-button {
  width: 100%;
  background: var(--neon-green);
  color: var(--bg-primary);
  border: none;
  padding: var(--space-md);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.quick-book-button:hover {
  background: var(--neon-cyan);
  box-shadow: 0 0 25px var(--neon-cyan)60;
}

.button-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(1);
}

/* Contacts Section */
.contacts {
  background: var(--bg-secondary);
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

.contact-item {
  text-align: center;
  padding: var(--space-lg);
  background: var(--bg-tertiary);
  border-radius: 12px;
  border: 1px solid var(--neon-pink)40;
}

.contact-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-md);
  filter: brightness(0) saturate(100%) invert(1);
}

.contact-link {
  color: var(--neon-cyan);
  text-decoration: none;
  font-weight: 500;
}

.contact-link:hover {
  text-shadow: 0 0 10px var(--neon-cyan);
}

.contact-address {
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Footer */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--bg-tertiary);
  padding: var(--space-lg) 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-logo-img {
  width: 40px;
  height: 40px;
}

.footer-brand {
  font-weight: 600;
  color: var(--neon-cyan);
}

.footer-links {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: var(--space-xs);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--neon-cyan);
  background: var(--bg-secondary);
}

.footer-info {
  text-align: right;
}

.footer-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Photo Placeholders */
.showcase-image,
.room-image,
.lounge-image,
.product-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--neon-cyan)40;
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.showcase-image {
  height: 300px;
  margin-top: var(--space-lg);
}

.room-image {
  height: 200px;
  margin-bottom: var(--space-md);
}

.lounge-image {
  height: 300px;
  border-radius: 12px;
}

.product-image {
  height: 180px;
  margin-bottom: var(--space-md);
}

.showcase-image:hover,
.room-image:hover,
.lounge-image:hover,
.product-image:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.2);
  transform: translateY(-2px);
}

.gaming-showcase {
  margin-top: var(--space-lg);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-sm);
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .logo-container {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }
  
  .lounge-content {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .booking-content {
    grid-template-columns: 1fr;
  }
  
  .seats-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-info {
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .seats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .hero-features {
    gap: var(--space-sm);
  }
  
  .feature {
    width: 100%;
    max-width: 200px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: var(--space-sm);
  }
}