
/* Block 1 */
.hero-banner {
      position: relative;
      min-height: 80vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.9) 100%);
      z-index: 2;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      width: 100%;
      padding: 4rem 0;
    }

    .hero-title {
      font-size: 3.5rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 2rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      line-height: 1.2;
    }

    .hero-text {
      font-size: 1.3rem;
      color: #f8f9fa;
      margin-bottom: 3rem;
      line-height: 1.6;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    }

    .hero-button {
      display: inline-block;
      background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
      color: #333;
      padding: 18px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.4s ease;
      box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .hero-button:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
      color: #333;
      background: linear-gradient(135deg, #ffed4e 0%, #fff59d 100%);
    }

    @media (max-width: 1200px) {
      .hero-title {
        font-size: 3rem;
      }
      
      .hero-text {
        font-size: 1.2rem;
      }
    }

    @media (max-width: 768px) {
      .hero-banner {
        min-height: 70vh;
      }

      .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
      }

      .hero-text {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
      }

      .hero-button {
        padding: 15px 30px;
        font-size: 1rem;
      }

      .hero-content {
        padding: 2rem 0;
      }
    }

    @media (max-width: 480px) {
      .hero-title {
        font-size: 2rem;
      }

      .hero-text {
        font-size: 1rem;
      }

      .hero-button {
        padding: 12px 25px;
        font-size: 0.95rem;
      }
    }

/* Block 2 */
.neural-tech {
padding: 100px 0;
background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
color: white;
overflow: hidden;
}

.tech-title {
font-size: 3rem;
font-weight: 700;
margin-bottom: 2rem;
background: linear-gradient(45deg, #00ffff, #ff00ff);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.tech-description {
font-size: 1.2rem;
line-height: 1.8;
margin-bottom: 3rem;
color: #b8c6db;
}

.tech-features {
margin-bottom: 3rem;
}

.feature-item {
display: flex;
align-items: center;
margin-bottom: 2rem;
padding: 1.5rem;
background: rgba(255, 255, 255, 0.05);
border-radius: 15px;
backdrop-filter: blur(10px);
border: 1px solid rgba(0, 255, 255, 0.2);
transition: all 0.3s ease;
}

.feature-item:hover {
transform: translateX(10px);
background: rgba(0, 255, 255, 0.1);
box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.feature-icon {
font-size: 2rem;
color: #00ffff;
margin-right: 1.5rem;
min-width: 50px;
animation: iconGlow 2s ease-in-out infinite alternate;
}

@keyframes iconGlow {
0% {
filter: drop-shadow(0 0 5px #00ffff);
}
100% {
filter: drop-shadow(0 0 20px #00ffff);
}
}

.feature-text h4 {
font-size: 1.3rem;
font-weight: 600;
margin-bottom: 0.5rem;
color: white;
}

.feature-text p {
margin: 0;
color: #b8c6db;
}

.tech-button {
display: inline-flex;
align-items: center;
padding: 15px 40px;
background: linear-gradient(45deg, #ff00ff, #00ffff);
color: white;
text-decoration: none;
font-weight: 600;
border-radius: 50px;
transition: all 0.3s ease;
box-shadow: 0 5px 20px rgba(255, 0, 255, 0.3);
}

.tech-button:hover {
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(255, 0, 255, 0.5);
color: white;
}

.tech-visual {
display: flex;
justify-content: center;
align-items: center;
height: 500px;
margin: 0 auto;
max-width: 400px;
}

.tech-image {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0, 255, 255, 0.3);
border: 2px solid rgba(0, 255, 255, 0.3);
}

.pulse-effect {
width: 120%;
height: 120%;
border: 3px solid rgba(0, 255, 255, 0.4);
border-radius: 50%;
animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
0%, 100% {
transform: scale(0.8);
opacity: 0.7;
}
50% {
transform: scale(1.2);
opacity: 0.3;
}
}

.data-stream {
display: flex;
flex-direction: column;
gap: 20px;
margin-left: -50px;
}

.data-point {
width: 8px;
height: 8px;
background: #00ffff;
border-radius: 50%;
animation: dataFlow 2s linear infinite;
box-shadow: 0 0 10px #00ffff;
}

.data-point:nth-child(2) {
animation-delay: 0.4s;
background: #ff00ff;
box-shadow: 0 0 10px #ff00ff;
}

.data-point:nth-child(3) {
animation-delay: 0.8s;
}

.data-point:nth-child(4) {
animation-delay: 1.2s;
background: #ff00ff;
box-shadow: 0 0 10px #ff00ff;
}

.data-point:nth-child(5) {
animation-delay: 1.6s;
}

@keyframes dataFlow {
0% {
transform: translateY(0) scale(0.5);
opacity: 0;
}
50% {
transform: translateY(-100px) scale(1);
opacity: 1;
}
100% {
transform: translateY(-200px) scale(0.5);
opacity: 0;
}
}

@media (max-width: 768px) {
.neural-tech {
padding: 60px 0;
}

.tech-title {
font-size: 2rem;
text-align: center;
}

.tech-description {
font-size: 1rem;
text-align: center;
}

.feature-item {
flex-direction: column;
text-align: center;
}

.feature-icon {
margin-right: 0;
margin-bottom: 1rem;
}

.tech-visual {
height: 300px;
}

.data-stream {
display: none;
}

.pulse-effect {
display: none;
}
}

@media (max-width: 576px) {
.tech-title {
font-size: 1.8rem;
}

.feature-item:hover {
transform: none;
}
}

/* Block 3 */
.quantum-arena {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a23 0%, #1a1a3e 50%, #2d1b69 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.quantum-arena::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.arena-main-title {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  text-align: center;
}

.arena-subtitle {
  font-size: 1.3rem;
  color: #b8bcc8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.arena-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 400px;
}

.primary-arena {
  grid-column: 1;
  grid-row: 1 / 3;
}

.secondary-arena {
  grid-column: 2;
  grid-row: 1;
}

.arena-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.arena-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.arena-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.arena-card:hover .arena-image {
  transform: scale(1.1);
}

.arena-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 30px 25px 25px;
  color: white;
}

.arena-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.arena-description {
  font-size: 0.95rem;
  color: #cccccc;
  margin-bottom: 15px;
  line-height: 1.4;
}

.arena-stats {
  display: flex;
  gap: 20px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: #ffd700;
}

.quantum-features {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 40px 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-header {
  text-align: center;
  margin-bottom: 35px;
}

.features-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ff6b6b;
}

.features-subtitle {
  color: #b8bcc8;
  font-size: 1rem;
}

.quantum-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-quantum-icon {
  font-size: 1.5rem;
  color: white;
}

.feature-quantum-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #4ecdc4;
}

.feature-quantum-text {
  font-size: 0.9rem;
  color: #b8bcc8;
  line-height: 1.5;
}

.quantum-cta {
  display: block;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  margin-top: 30px;
  transition: transform 0.3s ease;
}

.quantum-cta:hover {
  transform: scale(1.05);
  color: white;
}

.live-matches {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
}

.live-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
  color: #45b7d1;
}

.matches-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.match-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}

.match-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.match-players {
  display: flex;
  align-items: center;
  gap: 15px;
}

.player-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #4ecdc4;
  object-fit: cover;
}

.vs-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: #ff6b6b;
}

.match-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.match-game {
  font-weight: 600;
  font-size: 0.9rem;
}

.match-time {
  font-size: 0.8rem;
  color: #ffd700;
}

.match-viewers {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #b8bcc8;
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .arena-main-title {
    font-size: 2.5rem;
  }
  
  .arena-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 250px);
    height: auto;
  }
  
  .primary-arena {
    grid-column: 1;
    grid-row: 1;
  }
  
  .secondary-arena {
    grid-column: 1;
    grid-row: 2;
  }
}

@media (max-width: 768px) {
  .arena-main-title {
    font-size: 2rem;
  }
  
  .arena-subtitle {
    font-size: 1.1rem;
  }
  
  .quantum-features {
    padding: 30px 20px;
  }
  
  .matches-container {
    grid-template-columns: 1fr;
  }
  
  .match-item {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Block 4 */
.holographic-booking {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.holographic-booking::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="cyan" opacity="0.3"><animate attributeName="opacity" values="0.3;0.8;0.3" dur="2s" repeatCount="indefinite"/></circle><circle cx="80" cy="40" r="1.5" fill="magenta" opacity="0.4"><animate attributeName="opacity" values="0.4;0.9;0.4" dur="3s" repeatCount="indefinite"/></circle><circle cx="60" cy="80" r="1" fill="yellow" opacity="0.5"><animate attributeName="opacity" values="0.5;1;0.5" dur="2.5s" repeatCount="indefinite"/></circle></svg>') repeat;
  animation: float-particles 20s linear infinite;
}

@keyframes float-particles {
  0% { transform: translateY(100vh); }
  100% { transform: translateY(-100vh); }
}

.booking-header {
  text-align: center;
  margin-bottom: 60px;
}

.booking-title {
  font-size: 3.2rem;
  font-weight: 700;
  background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.booking-subtitle {
  font-size: 1.3rem;
  color: #a0a0b8;
  margin-bottom: 0;
}

.booking-form {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 50px;
  border: 1px solid rgba(0, 255, 255, 0.2);
  box-shadow: 
    0 0 50px rgba(0, 255, 255, 0.1),
    inset 0 0 30px rgba(255, 255, 255, 0.05);
}

.form-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 50px;
}

.input-group {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.input-wrapper {
  position: relative;
  flex: 1;
}

.holographic-input {
  width: 100%;
  padding: 20px 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 15px;
  color: #ffffff;
  font-size: 1.1rem;
  outline: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.holographic-input:focus {
  border-color: #00ffff;
  box-shadow: 
    0 0 30px rgba(0, 255, 255, 0.4),
    inset 0 0 20px rgba(0, 255, 255, 0.1);
  transform: translateY(-2px);
}

.holographic-label {
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
  color: #a0a0b8;
  font-size: 1.1rem;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, #0f0f23, #1a1a2e);
  padding: 0 10px;
}

.holographic-input:focus + .holographic-label,
.holographic-input:valid + .holographic-label {
  top: 0;
  font-size: 0.9rem;
  color: #00ffff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.input-hologram {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px;
  opacity: 0;
  background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
  transition: opacity 0.4s ease;
}

.holographic-input:focus ~ .input-hologram {
  opacity: 1;
  animation: hologram-scan 2s ease infinite;
}

@keyframes hologram-scan {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.neural-indicator {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 0, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 0, 255, 0.05);
}

.neural-pulse {
  width: 20px;
  height: 20px;
  background: #ff00ff;
  border-radius: 50%;
  animation: neural-pulse 1.5s ease-in-out infinite;
}

@keyframes neural-pulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 0, 255, 0.7);
  }
  50% { 
    transform: scale(1.2);
    box-shadow: 0 0 0 15px rgba(255, 0, 255, 0);
  }
}

.experience-selector {
  margin-bottom: 50px;
}

.selector-title {
  text-align: center;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: 600;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.experience-option {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 0, 0.3);
}

.experience-option:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 255, 0, 0.2);
  border-color: #ffff00;
}

.experience-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.experience-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: 30px 20px 20px;
  color: white;
}

.experience-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.experience-duration {
  display: inline-block;
  background: rgba(0, 255, 255, 0.2);
  color: #00ffff;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.9rem;
  margin-right: 10px;
}

.experience-price {
  display: inline-block;
  background: rgba(255, 255, 0, 0.2);
  color: #ffff00;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
}

.experience-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 255, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.experience-option:hover .experience-overlay {
  opacity: 1;
}

.selection-icon {
  color: white;
  font-size: 1.2rem;
}

.quantum-submit {
  text-align: center;
  margin-bottom: 30px;
}

.submit-portal {
  position: relative;
  background: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00);
  border: none;
  border-radius: 50px;
  padding: 20px 50px;
  color: #000;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(255, 0, 255, 0.3);
}

.submit-portal:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(255, 0, 255, 0.4);
}

.portal-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: portal-expand 2s ease-in-out infinite;
}

@keyframes portal-expand {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width: 200px;
    height: 200px;
    opacity: 0;
  }
}

.portal-energy {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: energy-flow 1.5s linear infinite;
}

@keyframes energy-flow {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.submit-icon {
  margin-right: 12px;
}

.submit-text {
  position: relative;
  z-index: 2;
}

.security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #a0a0b8;
  font-size: 0.95rem;
}

.security-icon {
  color: #00ff00;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .booking-title {
    font-size: 2.2rem;
  }
  
  .booking-form {
    padding: 30px;
  }
  
  .input-group {
    flex-direction: column;
  }
  
  .neural-indicator {
    align-self: center;
  }
  
  .experience-grid {
    grid-template-columns: 1fr;
  }
  
  .submit-portal {
    padding: 18px 40px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .holographic-booking {
    padding: 80px 0;
  }
  
  .booking-form {
    padding: 25px;
  }
  
  .booking-title {
    font-size: 1.8rem;
  }
  
  .booking-subtitle {
    font-size: 1.1rem;
  }
}
