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

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(102, 126, 234, 0.3) 100%);
  z-index: 2;
  width: 100%;
  height: 100%;
}

.hero-content {
  z-index: 3;
  color: white;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  font-weight: 400;
  line-height: 1.6;
}

.hero-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.5);
  color: white;
}

.hero-cta-btn:active {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .hero-banner {
    height: 80vh;
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .hero-cta-btn {
    padding: 12px 28px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
    padding: 0 15px;
  }
  
  .hero-cta-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}

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

.experience-content {
    padding: 40px 0;
}

.experience-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00d4ff, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.experience-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.experience-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.feature-icon {
    font-size: 2rem;
    color: #00d4ff;
    min-width: 50px;
}

.feature-text h4 {
    margin: 0 0 5px 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.experience-visual {
    position: relative;
    padding: 20px;
}

.experience-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.visual-overlay {
    position: absolute;
    bottom: 40px;
    right: 40px;
}

.stats-card {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
    min-width: 80px;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gaming-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 212, 255, 0.2);
}

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.service-content {
    padding: 30px;
    position: relative;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.service-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: absolute;
    top: -10px;
    right: 20px;
}

@media (max-width: 992px) {
    .experience-title {
        font-size: 2.2rem;
    }
    
    .gaming-services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stats-card {
        position: static;
        margin-top: 20px;
        justify-content: center;
    }
    
    .visual-overlay {
        position: static;
    }
}

@media (max-width: 768px) {
    .gaming-experience-showcase {
        padding: 60px 0;
    }
    
    .experience-title {
        font-size: 2rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .stats-card {
        flex-direction: column;
        gap: 15px;
    }
}

/* Block 3 */
.community-innovation-hub {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

.community-innovation-hub::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(79, 172, 254, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.section-main-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.3rem;
  color: #b8b8b8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.innovation-showcase {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 20px;
}

.innovation-title {
  font-size: 2.5rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 15px;
}

.innovation-desc {
  font-size: 1.2rem;
  color: #d0d0d0;
  line-height: 1.7;
  margin-bottom: 30px;
}

.ai-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.ai-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.ai-feature:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(10px);
}

.ai-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  flex-shrink: 0;
}

.ai-content h4 {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.ai-content p {
  color: #b8b8b8;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.ai-visual-demo {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.ai-demo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.demo-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  padding: 20px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.ai-status-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4facfe;
  font-weight: 600;
  margin-bottom: 15px;
}

.pulse-dot {
  width: 12px;
  height: 12px;
  background: #4facfe;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
  100% { opacity: 1; transform: scale(1); }
}

.performance-metrics {
  display: flex;
  gap: 20px;
}

.metric {
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #00f2fe;
}

.metric-label {
  font-size: 0.9rem;
  color: #b8b8b8;
}

.ecosystem-title {
  font-size: 2.8rem;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.ecosystem-subtitle {
  font-size: 1.2rem;
  color: #b8b8b8;
  text-align: center;
  margin-bottom: 50px;
}

.ecosystem-features {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 30px;
  align-items: start;
}

.feature-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1;
  transition: all 0.4s ease;
}

.large-card {
  aspect-ratio: 1.2;
}

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

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

.feature-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
  display: flex;
  align-items: flex-end;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover .feature-overlay {
  opacity: 1;
}

.feature-info h4 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-info p {
  color: #d0d0d0;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.feature-stats {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.feature-stats span {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.vr-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 1200px) {
  .ecosystem-features {
    grid-template-columns: 1fr;
  }
  
  .feature-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .section-main-title {
    font-size: 2.5rem;
  }
  
  .innovation-title {
    font-size: 2rem;
  }
  
  .innovation-showcase {
    padding: 25px;
  }
  
  .ai-feature {
    flex-direction: column;
    text-align: center;
  }
  
  .ai-icon {
    margin: 0 auto;
  }
  
  .ecosystem-title {
    font-size: 2rem;
  }
  
  .feature-card {
    aspect-ratio: 1.3;
  }
  
  .feature-overlay {
    opacity: 1;
  }
}

/* Block 4 */
.order-form-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.order-form-section::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"><defs><pattern id="gaming-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23gaming-pattern)"/></svg>');
    opacity: 0.3;
}

.form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.header-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.6;
}

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

.form-group {
    position: relative;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.form-label i {
    color: #667eea;
    width: 20px;
}

.form-input {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: white;
    position: relative;
    z-index: 1;
}

.form-input:focus {
    outline: none;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

.input-underline {
    height: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 3px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    margin-top: -3px;
    position: relative;
    z-index: 2;
}

.form-input:focus + .input-underline {
    transform: scaleX(1);
}

.gaming-preferences {
    margin-bottom: 30px;
}

.preferences-title {
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.preference-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.chip {
    position: relative;
}

.chip input {
    display: none;
}

.chip-label {
    display: inline-block;
    padding: 12px 24px;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #4a5568;
}

.chip input:checked + .chip-label {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.submit-area {
    text-align: center;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 20px 60px;
    border-radius: 50px;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 auto 20px;
    min-width: 280px;
    justify-content: center;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover .btn-glow {
    left: 100%;
}

.form-note {
    color: #718096;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.booking-highlights {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.highlight-content {
    padding: 25px;
}

.highlight-content h3 {
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.highlight-content p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .booking-highlights {
        position: static;
        margin-top: 40px;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .highlight-card {
        min-width: 280px;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .form-wrapper {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .submit-btn {
        width: 100%;
        padding: 18px;
    }
    
    .booking-highlights {
        flex-direction: column;
    }
    
    .highlight-card {
        min-width: auto;
    }
    
    .preference-chips {
        justify-content: center;
    }
}
