/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #0a0a0a;
  background-image: 
    linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(255, 0, 255, 0.1) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="gaming" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M10 10 L20 20 L10 30 L0 20 Z" fill="%238a2be2" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23gaming)"/></svg>');
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: linear-gradient(135deg, #8a2be2 0%, #ff00ff 100%);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  font-family: 'Orbitron', monospace;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #8a2be2 0%, #ff00ff 100%);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-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="controller" width="80" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="8" stroke="white" stroke-width="1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23controller)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

/* Content Section */
.content-section {
  padding: 80px 0;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255,255,255,0.1);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.last-updated {
  background: linear-gradient(135deg, #8a2be2 0%, #ff00ff 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  text-align: center;
}

.terms-section {
  margin-bottom: 3rem;
  color: #fff;
}

.terms-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #fff;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  padding-bottom: 0.5rem;
}

.terms-section h3 {
  font-size: 1.3rem;
  margin: 1.5rem 0 1rem 0;
  color: #fff;
}

.terms-section p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
}

.terms-section ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.terms-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}

.terms-section ol {
  margin: 1rem 0;
  padding-left: 2rem;
}

.terms-section ol li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}

.contact-info {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
  border: 1px solid rgba(255,255,255,0.2);
}

.contact-info p {
  margin-bottom: 0.5rem;
  color: rgba(255,255,255,0.9);
}

.contact-info strong {
  color: #fff;
}

/* Footer */
footer {
  background: #1a1a1a;
  color: white;
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ecf0f1;
}

.footer-section a {
  display: block;
  color: #bdc3c7;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #8a2be2;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  color: #bdc3c7;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .content-wrapper {
    padding: 2rem;
    margin: 0 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .content-section {
    padding: 60px 0;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .terms-section h2 {
    font-size: 1.5rem;
  }
  
  .terms-section h3 {
    font-size: 1.2rem;
  }
} 