@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
  /* Color System */
  --bg-primary: #0d0d10;
  --bg-secondary: #1a1a1f;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  
  /* Accent Colors */
  --neon-red: #ff3864;
  --soft-magenta: #ff7af0;
  --energy-cyan: #22f0f0;
  --electric-purple: #b63eff;
  
  /* Typography */
  --text-primary: #f5f5f5;
  --text-secondary: #bfc0c5;
  
  /* Spacing */
  --space-desktop: 100px;
  --space-tablet: 70px;
  --space-mobile: 50px;
  
  /* Radii */
  --radius-btn: 14px;
  --radius-card: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Base Typography */
h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.2;
}

p {
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

/* Layout System */
.main-wrapper {
  margin-left: 140px; /* Space for sidebar */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-desktop);
  width: 100%;
}

.text-center { text-align: center; }

/* Background Particles & Effects */
.bg-effects {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 56, 100, 0.05) 0%, transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(34, 240, 240, 0.05) 0%, transparent 40%);
}

.particles {
  position: absolute;
  width: 100%; height: 100%;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--energy-cyan);
  box-shadow: 0 0 10px var(--energy-cyan);
  opacity: 0.3;
  animation: floatUp infinite linear;
}

@keyframes floatUp {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  20% { opacity: 0.6; }
  80% { opacity: 0.6; }
  100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}

/* Sidebar Watch-Dial System */
.sidebar {
  position: fixed;
  top: 0; left: 0;
  width: 140px;
  height: 100vh;
  background: rgba(26, 26, 31, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.dial-menu {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
}

.dial-logo {
  position: absolute;
  left: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-red), var(--electric-purple));
  box-shadow: 0 0 25px rgba(255, 56, 100, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  z-index: 10;
  color: #fff;
}

.dial-slot {
  position: absolute;
  left: 45px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dial-slot:nth-child(2) { transform: translate(10px, -200px); }
.dial-slot:nth-child(3) { transform: translate(40px, -120px); }
.dial-slot:nth-child(4) { transform: translate(60px, -40px); }
.dial-slot:nth-child(5) { transform: translate(60px, 40px); }
.dial-slot:nth-child(6) { transform: translate(40px, 120px); }
.dial-slot:nth-child(7) { transform: translate(10px, 200px); }

.dial-item {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.dial-item::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 60px;
  background: rgba(0,0,0,0.8);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
}

.dial-slot:hover .dial-item {
  background: var(--energy-cyan);
  color: var(--bg-primary);
  border-color: var(--energy-cyan);
  box-shadow: 0 0 20px rgba(34, 240, 240, 0.6);
  transform: scale(1.15) rotate(10deg);
}

.dial-slot:hover .dial-item::after {
  opacity: 1;
  transform: translateX(0);
}

/* Active State for Sidebar */
.dial-item.active {
  border-color: var(--soft-magenta);
  color: var(--soft-magenta);
  box-shadow: inset 0 0 10px rgba(255, 122, 240, 0.3), 0 0 15px rgba(255, 122, 240, 0.4);
}

/* Button System */
.btn-neon {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  background: linear-gradient(135deg, var(--neon-red), var(--electric-purple));
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 56, 100, 0.4);
}

.btn-neon::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--electric-purple), var(--soft-magenta));
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.btn-neon:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(255, 122, 240, 0.6);
}

.btn-neon:hover::before {
  opacity: 1;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-desktop);
  background-image: url('images/photo-1605806616949-1e87b487cb2a-hero.png');
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(13, 13, 16, 0.6), rgba(13, 13, 16, 1));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  background: var(--glass-bg);
  padding: 60px;
  border-radius: var(--radius-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  animation: fadeUp 1s ease forwards;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  background: linear-gradient(to right, #fff, var(--soft-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Game Section */
.game-section {
  padding: var(--space-desktop) 0;
  position: relative;
  z-index: 2;
  background: radial-gradient(ellipse at center, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.game-wrapper {
  width: 85%;
  margin: 0 auto;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #000;
  box-shadow: 0 0 40px rgba(255, 56, 100, 0.3), 0 0 80px rgba(182, 62, 255, 0.1);
  border: 2px solid rgba(255, 56, 100, 0.5);
  aspect-ratio: 16 / 9;
  position: relative;
  transition: all 0.5s ease;
}

.game-wrapper:hover {
  box-shadow: 0 0 60px rgba(255, 56, 100, 0.5), 0 0 100px rgba(34, 240, 240, 0.2);
  border-color: var(--soft-magenta);
  transform: scale(1.02);
}

.game-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.game-header {
  text-align: center;
  margin-bottom: 50px;
}

.game-header h2 {
  font-size: 2.5rem;
  color: var(--energy-cyan);
  text-transform: uppercase;
}

/* Feature Grid */
.features-section {
  padding: var(--space-desktop) 0;
  position: relative;
  z-index: 2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.glass-card {
  background: var(--glass-bg);
  border-radius: var(--radius-card);
  padding: 40px 30px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.glass-card:hover {
  transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
  border-color: var(--electric-purple);
  box-shadow: 0 20px 40px rgba(182, 62, 255, 0.2);
}

.glass-card:hover::before {
  left: 200%;
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  background: rgba(34, 240, 240, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(34, 240, 240, 0.3);
  box-shadow: inset 0 0 15px rgba(34, 240, 240, 0.2);
}

.card-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px var(--energy-cyan));
}

.glass-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-primary);
}

/* Page Specific & Content Sections */
.page-header {
  padding: 150px var(--space-desktop) 80px var(--space-desktop);
  text-align: center;
  background: linear-gradient(to bottom, var(--bg-secondary), var(--bg-primary));
  border-bottom: 1px solid var(--glass-border);
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: 3rem;
  color: var(--soft-magenta);
}

.content-section {
  padding: var(--space-desktop) 0;
  position: relative;
  z-index: 2;
}

.glass-panel {
  background: var(--glass-bg);
  border-radius: var(--radius-card);
  padding: 60px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  margin-bottom: 40px;
}

.glass-panel h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--neon-red);
}

.glass-panel ul {
  list-style-type: none;
  margin-bottom: 20px;
}

.glass-panel ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: var(--text-secondary);
}

.glass-panel ul li::before {
  content: '⚡';
  position: absolute;
  left: 0; top: 0;
  font-size: 0.9rem;
  color: var(--energy-cyan);
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.input-group input, .input-group textarea {
  width: 100%;
  padding: 15px 20px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  transition: all 0.3s ease;
}

.input-group input:focus, .input-group textarea:focus {
  outline: none;
  border-color: var(--energy-cyan);
  box-shadow: 0 0 15px rgba(34, 240, 240, 0.2);
}

/* Footer */
footer {
  background: #08080a;
  padding: 60px var(--space-desktop) 30px var(--space-desktop);
  border-top: 1px solid var(--glass-border);
  position: relative;
  z-index: 10;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-brand h2 {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--neon-red), var(--soft-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col h4 {
  color: var(--text-primary);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--text-secondary);
}

.footer-col ul li a:hover {
  color: var(--energy-cyan);
  text-shadow: 0 0 8px var(--energy-cyan);
}

.footer-legal {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(191, 192, 197, 0.6);
}

.footer-legal .age-badge {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  border: 2px solid var(--neon-red);
  color: var(--neon-red);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 15px;
  box-shadow: 0 0 10px rgba(255,56,100,0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container { padding: var(--space-tablet); }
  .main-wrapper { margin-left: 90px; }
  .sidebar { width: 90px; }
  .dial-slot { left: 23px; }
  .dial-slot:nth-child(n) { transform: none !important; position: static; margin: 15px 0; }
  .dial-menu { flex-direction: column; height: auto; justify-content: center; padding-top: 80px; }
  .dial-logo { top: 20px; left: 15px; width: 60px; height: 60px; position: absolute; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .game-wrapper { width: 95%; }
}

@media (max-width: 768px) {
  .container { padding: var(--space-mobile); }
  .main-wrapper { margin-left: 0; padding-bottom: 80px; }
  
  /* Sidebar becomes bottom bar */
  .sidebar {
    top: auto; bottom: 0; left: 0;
    width: 100%; height: 70px;
    border-right: none; border-top: 1px solid var(--glass-border);
    flex-direction: row;
    background: rgba(13, 13, 16, 0.95);
  }
  .dial-menu {
    flex-direction: row; justify-content: space-around;
    padding: 0; width: 100%; height: 100%; align-items: center;
  }
  .dial-logo { display: none; }
  .dial-slot { margin: 0; }
  .dial-item { width: 40px; height: 40px; font-size: 0.8rem; }
  .dial-item::after { display: none; } /* Hide tooltips on mobile */

  .hero-content { padding: 30px; }
  .hero-content h1 { font-size: 2.5rem; }
  .game-wrapper { width: 100%; border-radius: 12px; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-content { flex-direction: column; gap: 30px; }
  .footer-links { flex-direction: column; gap: 30px; width: 100%; }
}