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

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
  text-shadow: var(--glow-primary);
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-graphic {
  flex: 1;
  position: relative;
  height: 400px;
  width: 100%;
  max-width: 400px;
}

.vault-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--primary);
  opacity: 0.7;
  box-shadow: var(--glow-primary);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.ring-1 {
  width: 300px;
  height: 300px;
  left: 50px;
  top: 50px;
  animation: rotate-ring 15s linear infinite;
}

.ring-2 {
  width: 200px;
  height: 200px;
  left: 100px;
  top: 100px;
  border-color: var(--accent-red);
  box-shadow: var(--glow-red);
  animation: rotate-ring-reverse 10s linear infinite;
}

.ring-3 {
  width: 100px;
  height: 100px;
  left: 150px;
  top: 150px;
  border-color: var(--accent-yellow);
  box-shadow: var(--glow-yellow);
  animation: rotate-ring 5s linear infinite;
}

@keyframes rotate-ring {
  from { transform: rotateY(0deg) rotateX(20deg); }
  to { transform: rotateY(360deg) rotateX(20deg); }
}

@keyframes rotate-ring-reverse {
  from { transform: rotateY(360deg) rotateX(-20deg); }
  to { transform: rotateY(0deg) rotateX(-20deg); }
}

.tech-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(to right, rgba(20, 255, 236, 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20, 255, 236, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  animation: grid-pulse 5s ease infinite;
}

@keyframes grid-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.2; }
}

/* Features Section */
.features {
  padding: 6rem 0;
  position: relative;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary);
  text-shadow: var(--glow-primary);
}

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

.feature-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(20, 255, 236, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(20, 255, 236, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-primary);
  border-color: var(--primary);
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(20, 255, 236, 0.1);
  position: relative;
}

.feature-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--primary);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.3;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.7;
  }
}

.icon-quantum, .icon-currency, .icon-scifi {
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
}

.icon-quantum {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm-1-13h2v6h-2zm0 8h2v2h-2z'/%3E%3C/svg%3E");
}

.icon-currency {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M11.8 10.9c-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4z'/%3E%3C/svg%3E");
}

.icon-scifi {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm0-14C6.48 1 2 5.48 2 11s4.48 10 10 10c2.43 0 4.67-.88 6.4-2.34l4.6 4.6 1.4-1.4-4.6-4.6C21.12 15.67 22 13.43 22 11c0-5.52-4.48-10-10-10zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z'/%3E%3C/svg%3E");
}

.feature-card h3 {
  text-align: center;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card p {
  text-align: center;
  color: var(--text);
}

/* Games Section */
.games {
  padding: 6rem 0;
  position: relative;
}

.games h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary);
  text-shadow: var(--glow-primary);
}

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

.game-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(20, 255, 236, 0.2);
  position: relative;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-primary);
  border-color: var(--primary);
}

.game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(20, 255, 236, 0.2);
}

.game-card:hover img {
  transform: scale(1.05);
}

.game-info {
  padding: 1.5rem;
}

.game-info h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.game-info p {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.game-info .button {
  width: 100%;
  text-align: center;
}

/* Disclaimer Section */
.disclaimer {
  padding: 3rem 0;
}

.disclaimer-box {
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid var(--accent-red);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--glow-red);
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-box h2 {
  color: var(--accent-red);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-shadow: var(--glow-red);
}

.disclaimer-box p {
  font-size: 1.1rem;
  color: var(--accent-red);
  margin: 0.8rem 0;
  font-weight: 500;
  line-height: 1.6;
}

/* Responsive Styles for Home Page */
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-graphic {
    margin-top: 2rem;
  }
  
  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .disclaimer-box {
    padding: 1.5rem;
  }
  
  .disclaimer-box h2 {
    font-size: 1.5rem;
  }
  
  .disclaimer-box p {
    font-size: 1rem;
  }
}