<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Game Page CSS for Gamnexo */

/* Game Header */
#game-header {
  padding-top: 120px;
  padding-bottom: var(--space-lg);
  background-color: var(--dark-medium);
  text-align: center;
}

#game-header h1 {
  margin-bottom: var(--space-sm);
  font-size: 2.5rem;
}

#game-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--light-medium);
}

/* Game Content */
#game-content {
  padding: var(--space-lg) 0 var(--space-xxl);
}

.game-wrapper {
  width: 100%;
  background-color: #000;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  margin-bottom: var(--space-xl);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(230, 57, 70, 0.3);
}

.game-wrapper::before {
  content: '';
  display: block;
  padding-top: 56.25%; /* 16:9 aspect ratio */
}

.game-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.game-description {
  max-width: 900px;
  margin: 0 auto;
}

.game-description h2 {
  margin-bottom: var(--space-lg);
  text-align: center;
}

.game-description p {
  margin-bottom: var(--space-lg);
  font-size: 1.1rem;
  line-height: 1.7;
}

.game-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .game-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature {
  background-color: var(--dark-medium);
  padding: var(--space-lg);
  border-radius: 8px;
  border-left: 3px solid var(--primary);
}

.feature h3 {
  margin-bottom: var(--space-md);
  color: var(--primary);
}

.feature ul {
  padding-left: var(--space-md);
}

.feature li {
  margin-bottom: var(--space-xs);
}

.back-to-games {
  text-align: center;
  margin-top: var(--space-xl);
}

/* Loading Animation */
.game-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  transition: opacity 0.5s ease;
}

.game-loading.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-animation {
  width: 80px;
  height: 80px;
  position: relative;
}

.loading-animation div {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--primary);
  animation: loading 1.2s infinite ease-in-out;
}

.loading-animation div:nth-child(1) {
  top: 0;
  left: 32px;
  animation-delay: 0s;
}

.loading-animation div:nth-child(2) {
  top: 16px;
  left: 48px;
  animation-delay: -0.1s;
}

.loading-animation div:nth-child(3) {
  top: 32px;
  left: 32px;
  animation-delay: -0.2s;
}

.loading-animation div:nth-child(4) {
  top: 16px;
  left: 16px;
  animation-delay: -0.3s;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
  #game-header h1 {
    font-size: 2rem;
  }
  
  .game-wrapper::before {
    padding-top: 75%; /* Adjust aspect ratio for tablets */
  }
}

@media (max-width: 768px) {
  #game-header {
    padding-top: 100px;
  }
  
  .game-wrapper::before {
    padding-top: 100%; /* Square aspect ratio for mobile */
  }
  
  .game-description p {
    font-size: 1rem;
  }
  
  .feature {
    padding: var(--space-md);
  }
}

@media (max-width: 480px) {
  #game-header h1 {
    font-size: 1.8rem;
  }
  
  #game-content {
    padding: var(--space-md) 0 var(--space-xl);
  }
}</pre></body></html>