/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg-dark: #09090b; /* Very dark zinc */
  --bg-card: #18181b; /* Dark zinc */
  --bg-card-hover: #27272a;
  
  --primary: #3b82f6; /* Premium Blue */
  --primary-hover: #60a5fa;
  --accent: #8b5cf6; /* Violet */
  --gold: #f59e0b; /* Amber */
  
  --text-main: #f8fafc;
  --text-muted: #a1a1aa;
  
  --border-light: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(59, 130, 246, 0.3);
}

body.light-theme {
  --bg-dark: #f8fafc; /* Very light slate */
  --bg-card: #ffffff; /* White */
  --bg-card-hover: #f1f5f9;
  
  --primary: #2563eb; /* Slightly darker blue for contrast */
  --primary-hover: #1d4ed8;
  --accent: #7c3aed;
  --gold: #d97706;
  
  --text-main: #0f172a;
  --text-muted: #64748b;
  
  --border-light: rgba(0, 0, 0, 0.1);
  --border-glow: rgba(37, 99, 235, 0.2);
}

body {
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(59, 130, 246, 0.08), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(139, 92, 246, 0.08), transparent 25%),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  background-attachment: fixed;
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .logo {
  font-family: 'Outfit', sans-serif;
}

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

/* Glassmorphism Navbar */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 9, 11, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  font-family: 'Outfit', sans-serif;
}
.logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #fff, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Outfit', sans-serif;
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.95rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.3s ease;
  border-radius: 2px;
}
.nav-links a:hover {
  color: var(--text-main);
}
.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.hero-badge {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--primary);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 2rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-typewriter-container {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.typewriter-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
}
.cursor {
  font-weight: 700;
  color: var(--primary);
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  50% { opacity: 0; }
}
.hero-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  font-weight: 300;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.btn {
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.39);
}
.btn-auth-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

/* Global Search Bar */
.nav-search {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 160px;
  margin-right: 1rem;
  position: relative;
}
.nav-search:focus-within {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.06);
  width: 220px;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.nav-search i {
  color: var(--text-muted);
  margin-right: 6px;
  font-size: 0.8rem;
}
.nav-search input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  width: 100%;
}
.nav-search input::placeholder {
  color: var(--text-muted);
}
.search-shortcut {
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--text-muted);
  font-family: monospace;
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: none;
  flex-direction: column;
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
}
.search-results.active {
  display: flex;
}
.search-result-item {
  padding: 0.75rem 1rem;
  color: var(--text-main);
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.2s;
}
.search-result-item:last-child {
  border-bottom: none;
}
.search-result-item:hover {
  background: var(--bg-card-hover);
}
.search-result-category {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.23);
  color: #fff;
}
.btn-outline {
  background: rgba(255,255,255,0.03);
  color: var(--text-main);
  border: 1px solid var(--border-light);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  color: var(--text-main);
}

/* Shared Sections */
section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 3rem;
  letter-spacing: -0.5px;
}
.divider {
  width: 100%;
  height: 1px;
  background: var(--border-light);
  margin: 0;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.overview-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .overview-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
}
.service-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--border-light);
}
.service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-image-wrapper img {
  transform: scale(1.05);
}
.service-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 1.5rem;
}

/* Mixed Grids (Gaming, Streaming, Forex) */
.mixed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.mixed-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s;
}
.mixed-card:hover {
  border-color: rgba(255,255,255,0.2);
}
.mixed-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mixed-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.btn-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  transition: all 0.2s;
  width: 100%;
}
.btn-sm:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}
.dot-live {
  width: 6px;
  height: 6px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.5;transform:scale(1.5);} }

/* AI Assistant */
.ai-section {
  max-width: 800px;
  margin: 0 auto;
}
.ai-chat-wrapper {
  background: rgba(24, 24, 27, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.ai-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}
.ai-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
.ai-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}
.ai-status {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.ai-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
}
.chat-box {
  background: transparent;
  min-height: 250px;
  max-height: 400px;
  overflow-y: auto;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-right: 10px;
}
.chat-box::-webkit-scrollbar {
  width: 6px;
}
.chat-box::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
}
.msg {
  display: flex;
  flex-direction: column;
  max-width: 85%;
}
.msg.ai { align-self: flex-start; }
.msg.user { align-self: flex-end; }
.msg-bubble {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.msg.ai .msg-bubble {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-bottom-left-radius: 4px;
}
.msg.user .msg-bubble {
  background: var(--primary);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.chat-input-row {
  display: flex;
  gap: 12px;
  padding: 1rem;
  border-top: 1px solid var(--border-light);
  background: var(--bg-main);
  align-items: center;
}
.chat-input-row input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  color: var(--text-main);
  outline: none;
  font-family: 'Inter', sans-serif;
}
.chat-input-row input:focus {
  border-color: var(--primary);
}
.mic-btn {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}
.mic-btn:hover {
  color: var(--text-main);
  border-color: var(--text-muted);
}
.mic-btn.recording {
  color: #ff4757;
  border-color: #ff4757;
  animation: pulse-recording 1.5s infinite;
}
@keyframes pulse-recording {
  0% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(255, 71, 87, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0); }
}
.chat-input-row button.send-btn {
  padding: 12px 24px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
.send-btn:hover {
  background: var(--primary-hover);
}
.thinking {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
  padding-left: 4px;
}

/* Floating Genius Widget */
.floating-chat-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.chat-widget-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-widget-toggle:hover {
  transform: scale(1.1);
}
.chat-widget-tooltip {
  background: var(--bg-card);
  color: var(--text-main);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  border: 1px solid var(--border-light);
  animation: floatTooltip 3s ease-in-out infinite;
  white-space: nowrap;
  position: relative;
}
.chat-widget-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 20px;
  width: 12px;
  height: 12px;
  background: var(--bg-card);
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  transform: rotate(45deg);
}
@keyframes floatTooltip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.chat-widget-window {
  display: none;
  width: 350px;
  max-width: calc(100vw - 2rem);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  overflow: hidden;
  flex-direction: column;
}
.chat-widget-window.open {
  display: flex;
  animation: slideUpWidget 0.3s ease forwards;
}
@keyframes slideUpWidget {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-widget-window .chat-box {
  height: 300px;
}
.close-widget {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  margin-left: auto;
}
.close-widget:hover {
  color: white;
}

/* Contact/Founder */
.founder-card {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 3rem;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}
.founder-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-card-hover), var(--bg-dark));
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-muted);
}
.founder-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.founder-title {
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1.5rem;
}
.contact-list a {
  color: var(--text-muted);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-list a:hover {
  color: var(--text-main);
}
.socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: all 0.2s;
}
.social-badge:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Contact Grid & Form */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.5rem;
}
.contact-form-wrapper h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s;
}
.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--text-muted);
}
footer .footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

@media(max-width:768px){
  .nav-links, .nav-auth {display:none;}
  .founder-card{flex-direction:column;text-align:center;}
  .founder-info{display:flex;flex-direction:column;align-items:center;}
}

/* Nav Auth */
.nav-auth {
  display: flex;
  gap: 12px;
  align-items: center;
}
.btn-auth-text {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-auth-text:hover {
  color: var(--primary);
}
.btn-auth-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none;
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-auth-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal-content {
  background: rgba(15, 15, 18, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  width: 90%;
  max-width: 420px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.8);
}
.modal-overlay.active .modal-content {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.2s;
}
.modal-close:hover {
  color: var(--text-main);
}
.modal-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.modal-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.modal-footer {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}
/* Page Header for specific service pages */
.page-header {
  padding: 8rem 2rem 4rem;
  text-align: center;
  background: linear-gradient(to bottom, rgba(59, 130, 246, 0.1), transparent);
  border-bottom: 1px solid var(--border-light);
}
.page-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}
.page-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.content-section {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.content-section p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: var(--text-muted);
}
.content-section ul {
  list-style: none;
  margin-bottom: 2rem;
}
.content-section ul li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-main);
}
.content-section ul li i {
  color: var(--primary);
  margin-top: 4px;
}

/* Origin Carousel */
.origin-carousel-container .carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}
.origin-carousel-container .carousel-slide.active {
  opacity: 1;
  z-index: 2;
}
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.carousel-indicators .dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.carousel-indicators .dot.active {
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
  transform: scale(1.2);
}

/* Premium Auth UI */
.social-login-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  padding: 10px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.social-login-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}
.input-with-icon {
  position: relative;
}
.input-with-icon i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
  transition: color 0.2s ease;
}
.input-with-icon:focus-within i {
  color: var(--primary);
}

/* User Profile Dropdown Styles */
.user-profile-container {
  position: relative;
}

.user-profile-trigger {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  font-family: 'Outfit', sans-serif;
}
.user-profile-trigger:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.profile-dropdown {
  position: absolute;
  top: 120%;
  right: 0;
  width: 280px;
  background: #111113; /* Very dark UI background */
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
}
.profile-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pd-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
}
.pd-avatar {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 18px;
  font-family: 'Outfit', sans-serif;
}
.pd-info {
  display: flex;
  flex-direction: column;
}
.pd-name {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
}
.pd-username {
  color: #888;
  font-size: 0.8rem;
  margin-top: 2px;
}

.pd-action {
  padding: 8px 16px 12px 16px;
}
.pd-btn-glow {
  width: 100%;
  background: #f43f5e; /* Rose / Pinkish tone matching the image */
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 0;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.pd-btn-glow:hover {
  background: #fb7185;
  box-shadow: 0 4px 15px rgba(244, 63, 94, 0.4);
}

.pd-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin: 4px 0;
}

.pd-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  color: #b0b0b5;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  cursor: pointer;
}
.pd-item:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}
.pd-item i {
  width: 16px;
  text-align: center;
  font-size: 0.9rem;
  color: #888;
}
.pd-item:hover i {
  color: #fff;
}

.pd-theme-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  color: #b0b0b5;
  font-size: 0.85rem;
}
.theme-controls {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.theme-controls i {
  padding: 4px 8px;
  font-size: 0.8rem;
  cursor: pointer;
  border-radius: 20px;
  color: #888;
}
.theme-controls i.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
