:root {
  /* Base Colors */
  --bg: #0a0a0a;
  --text: #e0e0e0;
  --text-muted: #999999;
  --border: #1f1f1f;

  /* Primary & Accent */
  --primary: #4ddbff;
  --primary-glow: 0 0 6px #4ddbff;
  --accent: #7c3aed;
  --accent-glow: 0 0 6px #7c3aed;
  --highlight: #00f0ff;
  --highlight-glow: 0 0 4px #00f0ff;
  --white: white;
  --white-glow: 0 0 6px white;

  /* Status */
  --success: #00cc88;
  --failure: #ff4d4d;
  --warning: #ffcc00;
  --info: #66d9ff;

  /* Utility */
  --tile-bg: #121212;
  --tile-border: #2a2a2a;
  --input-bg: #1a1a1a;
  --input-border: #333333;
}

/* --- Global Reset & Body --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--accent);
}

/* --- Navigation --- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background-color: var(--bg);
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--white);
  text-shadow: var(--white-glow);
}

.navbar nav a {
  margin: 0 15px;
  color: var(--text-muted);
}

.navbar .actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* --- Buttons --- */
.btn {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 4px;
  transition: all 0.3s;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg);
  box-shadow: var(--primary-glow);
}

.btn-request {
  background: none;
  border: 1px solid var(--text-muted);
  color: var(--text-muted);
}

.btn-cta {
  background: none;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 15px 40px;
  font-size: 1.1rem;
  box-shadow: var(--primary-glow);
}

/* --- Hero Section --- */
.hero-section {
  text-align: center;
  padding: 100px 5%;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title span {
  font-size: 5rem;
}

.hero-title .human {
  color: var(--accent);
  text-shadow: var(--accent-glow);
}

.hero-title .ai {
  color: var(--primary);
  text-shadow: var(--primary-glow);
}

.human-icon, .ai-icon {
  font-size: 0.8em;
  margin-right: 5px;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* --- Adventure Section --- */
.adventure-section {
  padding: 80px 5%;
  text-align: center;
}

.section-title {
  font-size: 4rem;
  margin-bottom: 50px;
}

.section-title .accent {
  color: var(--accent);
}

.cards-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  background-color: var(--tile-bg);
  padding: 40px 30px;
  border-radius: 8px;
  max-width: 400px;
  text-align: left;
  flex: 1;
  border: 1px solid var(--tile-border);
}

.card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.card ul {
  list-style: none;
  margin-bottom: 30px;
}

.card li {
  padding: 10px 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.btn-card-cta {
  background-color: var(--primary);
  color: var(--bg);
  width: 100%;
  margin-top: 20px;
  box-shadow: var(--primary-glow);
}

.business-card .genai-tag {
  background-color: var(--highlight);
  color: var(--bg);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
  display: inline-block;
  margin-left: 10px;
}

/* --- AI Feature Section --- */
.ai-feature-section {
  padding: 80px 5%;
  text-align: center;
}

/* --- Status Classes --- */
.status-success {
  color: var(--success);
}

.status-failure {
  color: var(--failure);
}

.status-warning {
  color: var(--warning);
}

.status-info {
  color: var(--info);
}

/* --- Inputs --- */
input, textarea {
  background-color: var(--input-bg);
  border: 1px solid var(--input-border);
  color: var(--text);
  padding: 10px;
  border-radius: 4px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
  }
  .navbar nav {
    display: none;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-title span {
    font-size: 3rem;
  }
  .cards-container {
    flex-direction: column;
  }
  .card {
    max-width: 100%;
  }
}
.wander{
  text-align: center;
  font-size: large;
}
.wander2{
  text-align: center;
  font-size: 100px;
  background-image: linear-gradient(to right, #FFD700, #FF6A00, #C00000);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
