@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Audiowide&family=Exo+2:wght@300..900&family=Roboto+Mono:wght@300..700&display=swap');

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

body {
  font-family: 'Orbitron', 'Exo 2', sans-serif;
  background-color: #0a0a0a;
  color: #e8d4f2;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(177, 89, 232, 0.3);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
}

.logo-icon {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 8px #b159e8);
}

.logo-text {
  background: linear-gradient(135deg, #b159e8, #2dd4bf, #06b6d4, #d946ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px #b159e8);
}

.btn-primary {
  padding: 12px 24px;
  background: #b159e8;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(177, 89, 232, 0.5), inset 0 0 10px rgba(177, 89, 232, 0.3);
  font-family: 'Orbitron', sans-serif;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(177, 89, 232, 0.8), inset 0 0 15px rgba(177, 89, 232, 0.5);
}

/* Main Content */
main {
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: 100vh;
}

.hero {
  text-align: center;
  margin-bottom: 80px;
  margin-top: 100px;
}

.hero h1 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #b159e8, #2dd4bf, #06b6d4, #d946ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px #b159e8);
}

.hero p {
  font-size: 1.5rem;
  color: rgba(232, 212, 242, 0.8);
  text-shadow: 0 0 10px #06b6d4;
  max-width: 800px;
  margin: 0 auto;
}

/* Game Grid */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.game-card {
  background: rgba(30, 30, 35, 0.8);
  border: 2px solid rgba(177, 89, 232, 0.3);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(177, 89, 232, 0.3);
}

.game-card:hover {
  transform: scale(1.05);
  border-color: #06b6d4;
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.6);
}

.game-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.game-card:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.game-card-content {
  padding: 20px;
}

.game-card h3 {
  font-size: 1.25rem;
  color: #b159e8;
  text-shadow: 0 0 10px currentColor;
  margin-bottom: 10px;
}

.game-card p {
  font-size: 0.9rem;
  color: rgba(232, 212, 242, 0.7);
  margin-bottom: 15px;
}

.btn-secondary {
  display: block;
  width: 100%;
  padding: 10px;
  background: #2dd4bf;
  color: #0a0a0a;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(45, 212, 191, 0.3);
}

.btn-secondary:hover {
  box-shadow: 0 0 25px rgba(45, 212, 191, 0.6);
}

/* Footer */
footer {
  margin-top: 80px;
  border-top: 1px solid rgba(177, 89, 232, 0.3);
  background: rgba(30, 30, 35, 0.5);
  backdrop-filter: blur(10px);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 20px;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-brand h3 {
  color: #b159e8;
  filter: drop-shadow(0 0 8px currentColor);
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(232, 212, 242, 0.6);
}

.footer-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-link {
  color: rgba(232, 212, 242, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  text-shadow: 0 0 5px currentColor;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #06b6d4;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(177, 89, 232, 0.2);
  font-size: 0.9rem;
  color: rgba(232, 212, 242, 0.6);
}

/* Review Page Specific */
.review-hero {
  text-align: center;
  margin-bottom: 50px;
  margin-top: 100px;
}

.review-hero h1 {
  font-size: 3rem;
  background: linear-gradient(135deg, #b159e8, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px #b159e8);
  margin-bottom: 30px;
}

.game-banner {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(177, 89, 232, 0.4);
  box-shadow: 0 0 40px rgba(177, 89, 232, 0.4);
  margin-bottom: 40px;
}

.info-card {
  background: rgba(30, 30, 35, 0.8);
  border: 2px solid rgba(6, 182, 212, 0.4);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.3);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-icon {
  filter: drop-shadow(0 0 6px currentColor);
}

.info-label {
  font-size: 0.9rem;
  color: rgba(232, 212, 242, 0.6);
}

.info-value {
  font-weight: 600;
  color: #e8d4f2;
}

.category-section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(177, 89, 232, 0.2);
}

.category-value {
  color: #b159e8;
  font-weight: 600;
  text-shadow: 0 0 8px currentColor;
}

.review-section {
  margin-bottom: 40px;
}

.review-section h2 {
  font-size: 1.75rem;
  color: #b159e8;
  text-shadow: 0 0 12px currentColor;
  margin-bottom: 20px;
}

.review-text {
  color: rgba(232, 212, 242, 0.9);
  line-height: 1.8;
  font-size: 1rem;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.pros-card, .cons-card {
  background: rgba(30, 30, 35, 0.8);
  border-radius: 12px;
  padding: 30px;
}

.pros-card {
  border: 2px solid rgba(45, 212, 191, 0.4);
  box-shadow: 0 0 20px rgba(45, 212, 191, 0.3);
}

.cons-card {
  border: 2px solid rgba(217, 70, 239, 0.4);
  box-shadow: 0 0 20px rgba(217, 70, 239, 0.3);
}

.pros-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2dd4bf;
  text-shadow: 0 0 10px currentColor;
  margin-bottom: 20px;
}

.cons-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d946ef;
  text-shadow: 0 0 10px currentColor;
  margin-bottom: 20px;
}

.pros-cons-grid ul {
  list-style: none;
}

.pros-cons-grid li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: rgba(232, 212, 242, 0.8);
}

.cta-section {
  text-align: center;
  margin-top: 60px;
}

.btn-large {
  padding: 18px 48px;
  font-size: 1.1rem;
  box-shadow: 0 0 30px rgba(177, 89, 232, 0.6), inset 0 0 15px rgba(177, 89, 232, 0.3);
}

/* Policy Page */
.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

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

.policy-header h1 {
  font-size: 3rem;
  background: linear-gradient(135deg, #b159e8, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px #b159e8);
}

.policy-card {
  background: rgba(30, 30, 35, 0.8);
  border: 2px solid rgba(177, 89, 232, 0.4);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 0 25px rgba(177, 89, 232, 0.3);
}

.policy-card h2 {
  font-size: 1.5rem;
  color: #b159e8;
  text-shadow: 0 0 10px currentColor;
  margin-bottom: 20px;
}

.policy-card p {
  color: rgba(232, 212, 242, 0.8);
  margin-bottom: 15px;
}

.policy-card strong {
  color: #e8d4f2;
}

.policy-card a {
  color: #06b6d4;
  text-shadow: 0 0 8px currentColor;
  text-decoration: none;
  transition: color 0.3s ease;
}

.policy-card a:hover {
  color: #2dd4bf;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: rgba(20, 20, 25, 0.95);
  border: 2px solid rgba(177, 89, 232, 0.4);
  border-radius: 12px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 0 50px rgba(177, 89, 232, 0.5);
}

.modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.modal-header h2 {
  font-size: 1.75rem;
  color: #b159e8;
  text-shadow: 0 0 15px currentColor;
  margin-bottom: 10px;
}

.modal-header p {
  color: rgba(232, 212, 242, 0.6);
  font-size: 0.9rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #e8d4f2;
  font-size: 0.9rem;
}

.form-group input {
  width: 100%;
  padding: 12px;
  background: rgba(10, 10, 10, 0.5);
  border: 1px solid rgba(177, 89, 232, 0.3);
  border-radius: 6px;
  color: #e8d4f2;
  font-family: 'Orbitron', sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #b159e8;
  box-shadow: 0 0 15px rgba(177, 89, 232, 0.3);
}

.modal-footer {
  text-align: center;
  margin-top: 15px;
}

.modal-footer p {
  font-size: 0.75rem;
  color: rgba(232, 212, 242, 0.6);
}

.modal-footer a {
  color: #06b6d4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.modal-footer a:hover {
  color: #2dd4bf;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: rgba(232, 212, 242, 0.6);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: #d946ef;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1, .review-hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  .game-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .logo-text {
    font-size: 14px;
  }
  .btn-primary {
    max-width: 80%;
    font-size: 12px;
  }
}
