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

body {
  font-family: 'Rajdhani', 'Orbitron', sans-serif;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1419 100%);
  color: #e0f7ff;
  line-height: 1.6;
}

/* Split Screen Layout */
.split-container {
  display: flex;
  min-height: 100vh;
}

.left-panel {
  flex: 1;
  background: linear-gradient(180deg, #0d1117 0%, #161b22 100%);
  padding: 40px;
  border-right: 2px solid #00ffff;
  position: relative;
  overflow-y: auto;
}

.right-panel {
  flex: 1;
  background: linear-gradient(180deg, #1a1f3a 0%, #0a0e27 100%);
  padding: 40px;
  overflow-y: auto;
}

/* Header */
.tech-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 3px solid #00ffff;
}

.tech-logo {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 0 20px #00ffff);
  margin-bottom: 20px;
}

.tech-title {
  font-size: 3em;
  font-weight: 900;
  background: linear-gradient(90deg, #00ffff 0%, #bf00ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
  letter-spacing: 3px;
}

.tech-subtitle {
  font-size: 1.2em;
  color: #bf00ff;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Breadcrumb */
.neon-breadcrumb {
  background: rgba(0, 255, 255, 0.1);
  padding: 15px 25px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid #00ffff;
}

.neon-breadcrumb a {
  color: #00ffff;
  text-decoration: none;
  transition: all 0.3s;
}

.neon-breadcrumb a:hover {
  color: #bf00ff;
  text-shadow: 0 0 10px #bf00ff;
}

/* Navigation */
.circuit-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.circuit-nav a {
  display: block;
  padding: 15px 25px;
  background: linear-gradient(90deg, rgba(0, 255, 255, 0.1) 0%, rgba(191, 0, 255, 0.1) 100%);
  border: 2px solid #00ffff;
  border-radius: 8px;
  color: #e0f7ff;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.circuit-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.circuit-nav a:hover::before {
  left: 100%;
}

.circuit-nav a:hover {
  border-color: #bf00ff;
  box-shadow: 0 0 20px rgba(191, 0, 255, 0.5);
  transform: translateX(10px);
}

/* CTA Button */
.neon-cta {
  display: inline-block;
  padding: 18px 40px;
  background: linear-gradient(135deg, #00ffff 0%, #bf00ff 100%);
  color: #0a0e27;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  letter-spacing: 2px;
}

.neon-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(191, 0, 255, 0.8);
}

/* Content Sections */
.digital-section {
  margin-bottom: 50px;
  padding: 30px;
  background: rgba(0, 255, 255, 0.05);
  border-left: 4px solid #00ffff;
  border-radius: 10px;
}

.digital-section h2 {
  font-size: 2.2em;
  color: #00ffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.digital-section h3 {
  font-size: 1.6em;
  color: #bf00ff;
  margin: 25px 0 15px 0;
  text-transform: uppercase;
}

.digital-section p {
  font-size: 1.1em;
  line-height: 1.8;
  color: #c9d1d9;
  margin-bottom: 15px;
}

.digital-section ul {
  list-style: none;
  padding-left: 0;
}

.digital-section li {
  padding: 10px 0 10px 30px;
  position: relative;
  font-size: 1.05em;
  color: #c9d1d9;
}

.digital-section li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #00ffff;
  font-size: 1.3em;
}

/* Game Grid */
.cyber-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.cyber-card {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(191, 0, 255, 0.1) 100%);
  border: 2px solid #00ffff;
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.cyber-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s;
}

.cyber-card:hover::after {
  top: -100%;
  right: -100%;
}

.cyber-card:hover {
  border-color: #bf00ff;
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(191, 0, 255, 0.4);
}

.cyber-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
  border: 2px solid #00ffff;
}

.cyber-card h3 {
  font-size: 1.4em;
  color: #00ffff;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.cyber-card p {
  font-size: 1em;
  color: #c9d1d9;
  line-height: 1.6;
}

/* FAQ */
.quantum-faq {
  margin: 40px 0;
}

.quantum-item {
  background: rgba(191, 0, 255, 0.1);
  border: 2px solid #bf00ff;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  transition: all 0.3s;
}

.quantum-item:hover {
  border-color: #00ffff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.quantum-item h3 {
  font-size: 1.3em;
  color: #bf00ff;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.quantum-item p {
  font-size: 1.05em;
  color: #c9d1d9;
  line-height: 1.7;
}

/* Reviews */
.hologram-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.hologram-card {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.08) 0%, rgba(191, 0, 255, 0.08) 100%);
  border: 2px solid #00ffff;
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s;
}

.hologram-card:hover {
  border-color: #bf00ff;
  transform: scale(1.03);
  box-shadow: 0 0 30px rgba(191, 0, 255, 0.4);
}

.hologram-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.hologram-name {
  font-size: 1.2em;
  font-weight: 700;
  color: #00ffff;
}

.hologram-rating {
  color: #ffd700;
  font-size: 1.1em;
}

.hologram-location {
  font-size: 0.95em;
  color: #bf00ff;
  margin-bottom: 12px;
}

.hologram-text {
  font-size: 1.05em;
  color: #c9d1d9;
  line-height: 1.6;
  margin-bottom: 12px;
}

.hologram-date {
  font-size: 0.9em;
  color: #8b949e;
  text-align: right;
}

/* Footer */
.matrix-footer {
  background: linear-gradient(180deg, #0a0e27 0%, #000000 100%);
  border-top: 3px solid #00ffff;
  padding: 50px 40px 30px 40px;
  margin-top: 60px;
}

.matrix-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.matrix-footer h4 {
  font-size: 1.4em;
  color: #00ffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.matrix-footer li {
  margin-bottom: 12px;
}

.matrix-footer a {
  color: #c9d1d9;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1.05em;
}

.matrix-footer a:hover {
  color: #bf00ff;
  text-shadow: 0 0 10px #bf00ff;
  padding-left: 5px;
}

.matrix-footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid #00ffff;
  color: #8b949e;
  font-size: 0.95em;
}

/* Responsive */
@media (max-width: 1024px) {
  .split-container {
    flex-direction: column;
  }
  
  .left-panel {
    border-right: none;
    border-bottom: 2px solid #00ffff;
  }
  
  .tech-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .cyber-grid {
    grid-template-columns: 1fr;
  }
  
  .hologram-reviews {
    grid-template-columns: 1fr;
  }
  
  .tech-title {
    font-size: 1.8em;
  }
  
  .left-panel, .right-panel {
    padding: 20px;
  }
}
