:root {
  --primary-color: #39FF14;
  --secondary-color: #0080FF;
  --dark-bg: #2D2D2D;
  --darker-bg: #1A1A1A;
  --light-gray: #f5f5f5;
  --text-light: #ffffff;
  --text-dark: #333333;
  --border-color: #444444;
  --gradient-1: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-2: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
}

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

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-light);
  background-color: var(--darker-bg);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

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

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

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-main {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: 1px;
}

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

.cta-button {
  background: var(--gradient-1);
  color: var(--darker-bg);
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(57, 255, 20, 0.3);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-2);
  opacity: 0.8;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 49%, rgba(57, 255, 20, 0.1) 50%, transparent 51%),
    linear-gradient(-45deg, transparent 49%, rgba(0, 128, 255, 0.1) 50%, transparent 51%);
  background-size: 20px 20px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.highlight {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #cccccc;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-cta {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-cta:hover {
  background: var(--primary-color);
  color: var(--darker-bg);
  transform: translateY(-2px);
}

/* Common Section Styles */
section {
  padding: 6rem 0;
}

.centered-section {
  text-align: center;
}

.centered-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.centered-section .section-header,
.centered-section .about-grid,
.centered-section .services-grid,
.centered-section .pricing-grid,
.centered-section .equipment-showcase,
.centered-section .training-content,
.centered-section .tournaments-content,
.centered-section .booking-content {
  width: 100%;
  max-width: 1200px;
}

.centered-section {
  text-align: center;
}

.centered-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.centered-section .section-header,
.centered-section .about-grid,
.centered-section .services-grid,
.centered-section .pricing-grid,
.centered-section .equipment-showcase,
.centered-section .training-content,
.centered-section .tournaments-content,
.centered-section .booking-content {
  width: 100%;
  max-width: 1200px;
}

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.section-header p {
  font-size: 1.1rem;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  background: var(--dark-bg);
}

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

.about-card {
  background: var(--darker-bg);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
}

.about-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.about-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.about-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.about-card p {
  color: #cccccc;
  line-height: 1.6;
}

/* Equipment Section */
.equipment-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.equipment-image .image-placeholder {
  background: var(--dark-bg);
  border: 2px dashed var(--border-color);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  color: #cccccc;
}

.equipment-specs {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.spec-item {
  background: var(--dark-bg);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  position: relative;
}

.spec-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.spec-item p {
  color: #cccccc;
  margin-bottom: 0.5rem;
}

.spec-highlight {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-1);
  color: var(--darker-bg);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Services Section */
.services {
  background: var(--dark-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--darker-bg);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--secondary-color);
  box-shadow: 0 16px 40px rgba(0, 128, 255, 0.2);
}

.service-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.service-card p {
  color: #cccccc;
  line-height: 1.6;
}

/* Training Section */
.training-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.training-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.training-description {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.training-features {
  margin-bottom: 2rem;
}

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

.feature span {
  color: var(--text-light);
  font-weight: 500;
}

.training-cta {
  background: var(--gradient-1);
  color: var(--darker-bg);
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.training-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(57, 255, 20, 0.3);
}

.training-image .image-placeholder {
  background: var(--dark-bg);
  border: 2px dashed var(--border-color);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  color: #cccccc;
}

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

.tournaments-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tournament-image .image-placeholder {
  background: var(--darker-bg);
  border: 2px dashed var(--border-color);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  color: #cccccc;
}

.tournament-types {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tournament-type {
  background: var(--darker-bg);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--secondary-color);
}

.tournament-type h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.tournament-type p {
  color: #cccccc;
  margin-bottom: 1rem;
}

.prize {
  background: var(--gradient-1);
  color: var(--darker-bg);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: var(--dark-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, var(--dark-bg) 0%, rgba(57, 255, 20, 0.1) 100%);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-1);
  color: var(--darker-bg);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-header h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
}

.price span {
  font-size: 1rem;
  color: #cccccc;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  color: #cccccc;
  position: relative;
  padding-left: 1.5rem;
}

.pricing-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-cta {
  width: 100%;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 16px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-cta:hover, .featured .pricing-cta:hover {
  background: var(--primary-color);
  color: var(--darker-bg);
}

.featured .pricing-cta {
  background: var(--primary-color);
  color: var(--darker-bg);
}

/* Booking Section */
.booking {
  background: var(--dark-bg);
}

.booking-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.booking-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

.booking-info p {
  font-size: 1.1rem;
  color: #cccccc;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.booking-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.benefit span {
  color: var(--text-light);
  font-weight: 500;
}

.booking-form-container .image-placeholder {
  background: var(--darker-bg);
  border: 2px dashed var(--border-color);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  color: #cccccc;
}

/* Contacts Section */
.contacts-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--dark-bg);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.contact-icon {
  flex-shrink: 0;
}

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

.contact-item a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary-color);
}

.contact-item p {
  color: #cccccc;
  margin: 0;
}

.contact-map .image-placeholder {
  background: var(--dark-bg);
  border: 2px dashed var(--border-color);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  color: #cccccc;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand p {
  color: #cccccc;
  margin: 0;
  line-height: 1.6;
}

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

.footer-column h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

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

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

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

.footer-column a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #cccccc;
  font-size: 0.9rem;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: var(--dark-bg);
  margin: 5% auto;
  padding: 0;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  border: 1px solid var(--border-color);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 600;
}

.close {
  color: #cccccc;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

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

.booking-form {
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background-color: var(--darker-bg);
  color: var(--text-light);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(57, 255, 20, 0.1);
}

.submit-btn {
  width: 100%;
  background: var(--gradient-1);
  color: var(--darker-bg);
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(57, 255, 20, 0.3);
}

/* Image Placeholders */
.image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  gap: 1rem;
}

.image-placeholder p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .centered-section .equipment-showcase,
  .centered-section .training-content,
  .centered-section .tournaments-content,
  .centered-section .booking-content,
  .centered-section .contacts-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .equipment-showcase,
  .training-content,
  .tournaments-content,
  .booking-content,
  .contacts-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .pricing-grid,
  .services-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .modal-content {
    margin: 10% auto;
    width: 95%;
  }
  
  .hero-content {
    padding: 2rem 0;
  }
  
  .brand-main {
    font-size: 1.3rem;
  }
  
  .brand-sub {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero {
    padding-top: 120px;
  }
  
  .cta-button {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
}