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

body {
  font-family: 'Orbitron', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #e0e0e0;
  background: linear-gradient(135deg, #0a0a0f 0%, #1a0a2e 30%, #0f1a3e 60%, #0a1a2a 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(120, 0, 255, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(255, 0, 150, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(0, 200, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Cyber grid background */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

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

.container, header, section, footer {
  position: relative;
  z-index: 1;
}

/* Header */
header {
  background: rgba(10, 10, 20, 0.8);
  backdrop-filter: blur(15px);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

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

.logo {
  font-size: 24px;
  font-weight: bold;
  background: linear-gradient(90deg, #00f5ff, #ff00aa, #00f5ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 30px;
  transition: color 0.3s;
}

nav a:hover {
  color: #e94560;
}

/* Hero Section */
.hero {
  padding: 150px 0 80px;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #00f5ff, #ff00aa, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(0, 245, 255, 0.3);
  letter-spacing: 3px;
}

.hero p {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 40px;
  color: #b0b0b0;
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #ff00aa 0%, #a855f7 50%, #00f5ff 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s;
  margin: 10px;
  border: none;
  position: relative;
  overflow: hidden;
}

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

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(168, 85, 247, 0.5), 0 0 20px rgba(0, 245, 255, 0.3);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #00f5ff;
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.2);
}

/* Features */
.features {
  padding: 80px 0;
  background: rgba(10, 10, 20, 0.5);
}

.features h2 {
  text-align: center;
  color: #fff;
  font-size: 36px;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 5px;
}

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

.feature-card {
  background: linear-gradient(135deg, rgba(20, 20, 40, 0.8), rgba(40, 20, 60, 0.6));
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  color: #fff;
  transition: all 0.3s;
  border: 1px solid rgba(0, 245, 255, 0.1);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 0, 170, 0.5);
  box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
}

.feature-card .icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 15px;
  color: #00f5ff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Gallery Section */
.gallery {
  padding: 80px 0;
}

.gallery h2 {
  text-align: center;
  color: #fff;
  font-size: 36px;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 5px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: all 0.4s;
  border: 2px solid rgba(0, 245, 255, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 30, 0.95) 100%);
  z-index: 1;
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(168, 85, 247, 0.3);
  backdrop-filter: blur(8px);
  z-index: 2;
  opacity: 1;
  transition: opacity 0.4s;
}

.gallery-item:hover::after {
  opacity: 0.6;
}

.gallery-item:hover {
  transform: scale(1.05);
  border-color: #ff00aa;
  box-shadow: 0 0 30px rgba(255, 0, 170, 0.4);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .label {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  z-index: 3;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Footer */
footer {
  background: rgba(5, 5, 15, 0.9);
  color: #fff;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(0, 245, 255, 0.1);
}

footer a {
  color: #00f5ff;
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: #ff00aa;
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  margin: 0 15px;
}

/* Policy Pages */
.policy-page {
  padding: 100px 0 50px;
  color: #fff;
}

.policy-page h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #00f5ff;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.policy-page .updated {
  opacity: 0.7;
  margin-bottom: 40px;
  color: #888;
}

.policy-content {
  background: linear-gradient(135deg, rgba(20, 20, 40, 0.8), rgba(40, 20, 60, 0.6));
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 15px;
  line-height: 1.8;
  border: 1px solid rgba(0, 245, 255, 0.1);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.policy-content h2 {
  color: #ff00aa;
  margin: 30px 0 15px;
  font-size: 24px;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p, .policy-content ul {
  margin-bottom: 15px;
}

.policy-content ul {
  padding-left: 25px;
}

.policy-content a {
  color: #00f5ff;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 32px; letter-spacing: 1px; }
  .hero p { font-size: 16px; }
  nav a { margin-left: 15px; font-size: 14px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
}

