/* Modern, sleek styling for high-tech theme */
:root {
  --primary-color: #4a90e2;
  --secondary-color: #1a1a2e;
  --accent-color: #00f7ff;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--secondary-color);
  color: #fff;
  overflow: hidden;
  height: 100vh;
}

#canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
}

#starfield {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
}

.content {
  position: relative;
  z-index: 2;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(26, 26, 46, 0.8);
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
}

.hero-content {
  text-align: center;
  background: rgba(26, 26, 46, 0.5);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(74, 144, 226, 0.2);
  max-width: 800px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.2rem;
}

.subtitle {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #fff;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
}

.location-badge {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  background: rgba(26, 26, 46, 0.7);
  backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(74, 144, 226, 0.2);
}

.location-badge p {
  margin-left: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.dubai-accent {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 60px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
}
