:root {
  --bg-main: #0b0f1a;
  --bg-card: #131a2a;
  --primary: #00f0ff;
  --secondary: #7c7cff;
  --accent: #ff2ec4;
  --text-main: #ffffff;
  --text-muted: #a0aec0;
  --border-glass: rgba(255,255,255,0.08);
}
/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
      font-family: "Inter", sans-serif;
}

/* Page Background */
body {
  background: radial-gradient(circle at top, #0f172a, #020617);
  color: var(--text-main);
  min-height: 100vh;
}
.glass-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  border: 1px solid var(--border-glass);
  box-shadow: 0 0 40px rgba(0,240,255,0.08);
  padding: 30px;
  margin: 30px auto;
  max-width: 1100px;
  transition: 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 60px rgba(124,124,255,0.2);
}


/* Main Container */
.container {
    max-width: 900px;
    margin-top: 40px;
   background: var(--bg-main);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

/* Headings */
h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: var(--primary);
}

h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-main);
}

/* Text */
p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color:var(--text-muted);
    line-height: 1.7;
}

/* Buttons */
button, .nav-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  color: black;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 0 20px rgba(0,240,255,0.4);
}

button:hover, .nav-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(124,124,255,0.8);
}

/* Inputs */
input, select, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border-glass);
  background: rgba(255,255,255,0.04);
  color: var(--text-main);
  margin-top: 5px;
  margin-bottom: 20px;
  font-size: 15px;
  outline: none;
}
/* Form Labels */

    label {
  color: var(--text-main);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Idea Output Cards */
.idea-card {
    background: var(--bg-main);
    border-left: 5px solid var(--primary);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* Dashboard Section */
.section {
    margin-top: 30px;
}

/* Footer Note */
.footer-note {
    margin-top: 40px;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
}
.ai-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 25px;
    font-size: 16px;
    color: var(--text-muted);
}

.ai-toggle input {
    transform: scale(1.3);
    cursor: pointer;
    accent-color: var(--primary);
}

.ai-toggle label {
    cursor: pointer;
}
.ai-toggle input:checked {
    accent-color: var(--primary);
}
/* Action Row Layout */
.action-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 25px;
    margin-bottom: 30px;
}

/* Header / Navbar */

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 60px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
  margin-bottom: 60px;
}

.logo {
  height: 60px;
  filter: drop-shadow(0 0 10px rgba(0,240,255,0.4));
  transition: transform 0.25s ease;
}

.logo:hover {
  transform: scale(1.08);
}







.nav-btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: black;
  box-shadow: 0 0 25px rgba(0,240,255,0.6);
  font-weight: 700;
}
.tagline {
  text-align: center;
  font-size: 18px;
  margin-bottom: 50px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
.tagline span {
  color: var(--primary);
}


/* SOCIAL CONNECT SECTION */

.social-connect-card {
  margin-top: 40px;
  padding: 25px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 15px;
  margin-top: 6px;
}


.social-input-row {
  display: grid;
  grid-template-columns: 160px 1fr 120px;
  gap: 15px;
  align-items: center;
  margin-bottom: 15px;
}

.social-input-row label {
  color: var(--text-main);
  font-weight: 500;
}




.connected-title {
  margin-top: 30px;
  margin-bottom: 12px;
  color: var(--text-main);
  font-size: 18px;
  font-weight: 600;
}

/* Connected Account Card */
.connected-account {
  background: rgba(255,255,255,0.04);
  padding: 12px 18px;
  border-radius: 12px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--border-glass);
  transition: 0.3s ease;
}

.connected-account:hover {
  box-shadow: 0 0 25px rgba(0,240,255,0.15);
  transform: translateY(-2px);
}

.connected-account span {
  color: var(--text-muted);
  font-size: 14px;
}

/* Remove Button */
.connected-account button {
  background: linear-gradient(135deg, var(--accent), #ff5fa2);
  border: none;
  padding: 6px 14px;
  border-radius: 8px;
  color: black;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  transition: 0.3s ease;
  box-shadow: 0 0 15px rgba(255,46,196,0.5);
}

.connected-account button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(255,46,196,0.9);
}

/* Analytics Card */
.analytics-card {
  margin-top: 40px;
  padding: 30px;
  text-align: center;
}

/* Fetch Analytics Button */
.analytics-btn {
  margin-top: 20px;
  padding: 14px 30px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: black;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 0 25px rgba(0,240,255,0.5);
}

.analytics-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(124,124,255,0.9);
}

/* Analytics Result */
.analytics-result {
  margin-top: 25px;
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.6;
}

/* Charts */
canvas {
  margin-top: 30px;
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 20px;
  border: 1px solid var(--border-glass);
  box-shadow: 0 0 40px rgba(0,240,255,0.08);
}
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 120px 80px;
}

.hero-text h1 {
  font-size: 58px;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  margin-top: 20px;
  font-size: 20px;
  color: var(--text-muted);
}

.hero-image img {
  width: 500px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
  100% { transform: translateY(0); }
}
.hero-video {
  position: relative;
  height: 80vh;
  overflow: hidden;
  border-radius: 24px;
  margin: 40px 60px;
  box-shadow: 0 0 80px rgba(0,240,255,0.2);
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.8)
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
}

.hero-overlay h1 {
  font-size: 60px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.hero-overlay p {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.analytics-video {
  position: relative;
  height: 50vh;
  overflow: hidden;
  border-radius: 20px;
  margin: 40px auto;
  max-width: 1100px;
  box-shadow: 0 0 60px rgba(124,124,255,0.2);
}

.analytics-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.analytics-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.8)
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.analytics-video-overlay h2 {
  font-size: 42px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.analytics-video-overlay p {
  color: var(--text-muted);
  font-size: 18px;
}
/* Analytics GIF Floating Preview */

.analytics-gif-popup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 260px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.35);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  z-index: 999;
  transition: 0.4s ease;
}

.analytics-gif-popup img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

.analytics-gif-popup:hover {
  transform: scale(1.06);
  box-shadow: 0 0 60px rgba(0,240,255,0.6);
}


/* Generate Ideas Two Column Layout */

.ideas-page {
  max-width: 1300px;
  margin: auto;
  padding: 40px;
}

.ideas-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* Left side */
.ideas-left {
  flex: 2;
  background: var(--bg-main);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

/* Right side images */
.ideas-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: sticky;
  top: 120px;
}

/* Images */
.ideas-image {
  width: 100%;
  border-radius: 20px;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 40px rgba(0,240,255,0.15);
  transition: 0.3s ease;
}

.ideas-image:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 0 60px rgba(124,124,255,0.35);
}

/* Mobile */
@media (max-width: 900px) {
  .ideas-layout {
    flex-direction: column;
  }

  .ideas-right {
    position: static;
    align-items: center;
  }
}
/* How It Works Two Column Layout */

.how-page {
  max-width: 1300px;
  margin: auto;
  padding: 40px;
}

.how-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* Left content */
.how-left {
  flex: 2;
  background: var(--bg-main);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

/* Right image */
.how-right {
  flex: 1;
  position: sticky;
  top: 120px;
}

/* Image styling */
.how-image {
  width: 100%;
  border-radius: 22px;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 40px rgba(0,240,255,0.15);
  transition: 0.4s ease;
}

.how-image:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 0 60px rgba(124,124,255,0.35);
}

/* Mobile */
@media (max-width: 900px) {
  .how-layout {
    flex-direction: column;
  }

  .how-right {
    position: static;
    display: flex;
    justify-content: center;
  }

  .how-image {
    max-width: 400px;
  }
}

/* Features Two Column Layout */

.features-page {
  max-width: 1300px;
  margin: auto;
  padding: 40px;
}

.features-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* Left content */
.features-left {
  flex: 2;
  background: var(--bg-main);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

/* Right image */
.features-right {
  flex: 1;
  position: sticky;
  top: 120px;
}

/* Image styling */
.features-image {
  width: 100%;
  border-radius: 22px;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 40px rgba(0,240,255,0.15);
  transition: 0.4s ease;
}

.features-image:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 0 60px rgba(124,124,255,0.35);
}

/* Mobile */
@media (max-width: 900px) {
  .features-layout {
    flex-direction: column;
  }

  .features-right {
    position: static;
    display: flex;
    justify-content: center;
  }

  .features-image {
    max-width: 400px;
  }
}
.ideas-layout {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* Left content */
.ideas-left {
  flex: 2;
}

/* Right images */
.ideas-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: sticky;
  top: 120px;
}

/* SVG image styling */
.ideas-image {
  width: 100%;
  max-width: 360px;
  border-radius: 18px;
  padding: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 40px rgba(0,240,255,0.12);
  transition: 0.3s ease;
}

.ideas-image:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 0 60px rgba(124,124,255,0.3);
}

/* About Page Two-Column Layout */

.about-page {
  max-width: 1300px;
  margin: auto;
  padding: 40px;
}

.about-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT CONTENT */
.about-left {
  flex: 2;
  background: var(--bg-main);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
  color: var(--text-main);
}

.about-left h1,
.about-left h2 {
  margin-bottom: 12px;
  color: var(--primary);
}

.about-left p,
.about-left li {
  margin-bottom: 18px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

.about-left ul {
  list-style: disc;
  padding-left: 20px;
}

/* RIGHT IMAGE */
.about-right {
  flex: 1;
  position: sticky;
  top: 120px;
}

.about-image {
  width: 100%;
  border-radius: 20px;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 40px rgba(0,240,255,0.15);
  transition: 0.3s ease;
}

.about-image:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 0 60px rgba(124,124,255,0.35);
}

/* MOBILE LAYOUT */
@media (max-width: 900px) {
  .about-layout {
    flex-direction: column;
  }

  .about-right {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }

  .about-image {
    max-width: 400px;
  }
}

/* Contact Page Two Column Layout */

.contact-page {
  max-width: 1300px;
  margin: auto;
  padding: 40px;
}

.contact-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT FORM */
.contact-left {
  flex: 2;
  background: var(--bg-main);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

.contact-left h1 {
  margin-bottom: 12px;
  color: var(--primary);
}

.contact-left p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 16px;
}

.contact-left label {
  display: block;
  margin-top: 15px;
  color: var(--text-main);
  font-weight: 500;
}

.contact-left input,
.contact-left textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border-glass);
  background: rgba(255,255,255,0.04);
  color: var(--text-main);
  outline: none;
  font-size: 15px;
}

.contact-left button {
  margin-top: 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: black;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 0 25px rgba(0,240,255,0.4);
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-left button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(124,124,255,0.8);
}

/* RIGHT IMAGE */
.contact-right {
  flex: 1;
  position: sticky;
  top: 120px;
}

.contact-image {
  width: 100%;
  border-radius: 22px;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 40px rgba(0,240,255,0.15);
  transition: 0.3s ease;
}

.contact-image:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 0 60px rgba(124,124,255,0.35);
}

/* RESPONSIVE (MOBILE) */
@media (max-width: 900px) {
  .contact-layout {
    flex-direction: column;
  }

  .contact-right {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }

  .contact-image {
    max-width: 430px;
  }
}


/* AUTH (LOGIN / SIGNUP) PAGE LAYOUT */

.auth-page {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

.auth-layout {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

/* Left (form) */
.auth-left {
  flex: 1;
  background: var(--bg-main);
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

/* Right (image) */
.auth-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* Illustration */
.auth-image {
  width: 100%;
  max-width: 380px;
  border-radius: 18px;
  box-shadow: 0 0 40px rgba(0,240,255,0.15);
  transition: 0.3s ease;
}

.auth-image:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 0 60px rgba(124,124,255,0.35);
}

/* Adjust on smaller screens */
@media (max-width: 900px) {
  .auth-layout {
    flex-direction: column;
  }

  .auth-image {
    max-width: 320px;
    margin-top: 30px;
  }
}

/* DASHBOARD LAYOUT (MATCHES GENERATE IDEAS) */

.dashboard-page {
  max-width: 1300px;
  margin: auto;
  padding: 40px;
}

.dashboard-layout {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* Left content */
.dashboard-left {
  flex: 2;
    background: var(--bg-main);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
   color: var(--text-main);
}

/* Right images */
.dashboard-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: sticky;
  top: 120px;
}

/* Image styling */
.dashboard-image {
  width: 100%;
  border-radius: 20px;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 40px rgba(0,240,255,0.15);
  transition: 0.3s ease;
}

.dashboard-image:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 0 60px rgba(124,124,255,0.3);
}

/* =========================
   HOME PAGE LAYOUT
   ========================= */

.home-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 40px;
}

/* Left side */
.home-left {
  flex: 2;
}

/* Right images */
.home-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: sticky;
  top: 120px;
}

/* Images */
.home-image {
  width: 100%;
  max-width: 360px;
  border-radius: 18px;
  padding: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 40px rgba(0,240,255,0.12);
  transition: 0.3s ease;
}

.home-image:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 0 60px rgba(124,124,255,0.3);
}

.nav-center a.active {
  color: var(--primary-color);
  font-weight: 600;
}
.logo img {
  height: 70px;        /* or 32px / 40px — your choice */
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
/* ======================
   HEADER STRUCTURE
   ====================== */

/* Top utility bar */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 32px;
}

.top-bar .logo img {
  height: 50px;
}

/* Auth buttons */
.top-bar-right {
  display: flex;
  gap: 12px;
}

/* Main navigation bar */
.main-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 12px 24px;
  white-space: nowrap;
}

/* Active nav link */
.main-nav a.active {
  color: var(--primary-color);
  font-weight: 600;
}

/* ======================
   MOBILE BEHAVIOR
   ====================== */
@media (max-width: 768px) {
  .top-bar {
    padding: 10px 16px;
  }

  .top-bar .logo img {
    height: 30px;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 16px;
    padding: 10px 16px;
  }
}

.main-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}
.main-nav a:hover {
  color: var(--primary);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
}
.main-nav a.active {
  color: var(--primary);
  font-weight: 600;
  text-shadow: 0 0 12px rgba(0, 240, 255, 0.9);
}
.btn-login {
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--secondary)
  );
  color: #000;
  font-weight: 600;
}
.btn-signup {
  background: linear-gradient(
    135deg,
    var(--accent),
    var(--secondary)
  );
  color: #fff;
  font-weight: 600;
}
.site-header {
  padding: 16px 32px;
}
.header-nav {
  margin: 0 auto;
  display: flex;
  gap: 80px;
}

.header-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}
.header-nav-top {
  display: flex;
  align-items: center;
  gap: 80px;
}
.header-bottom {
  display: flex;
 
  margin-top: 10px;
}

.header-nav-bottom {
  margin: 0 auto ;
  display: flex;
  gap: 100px;
}
.header-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.header-nav a:hover {
  color: var(--primary);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
}

.header-nav a.active {
  color: var(--primary);
  font-weight: 600;
  text-shadow: 0 0 12px rgba(0, 240, 255, 0.9);
}
.header-nav-bottom a {
  font-size: 20px;
}
.logo img {
  height: 70px;
  width: auto;
}
.btn-login {
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--secondary)
  );
  color: #000;
}

.btn-signup {
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  background: linear-gradient(
    135deg,
    var(--accent),
    var(--secondary)
  );
  color: #fff;
}
@media (max-width: 768px) {
  .header-top {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .header-right {
    display: flex;
    justify-content: center;
    gap: 12px;
  }
}
.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--secondary)
  );
  color: #000;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.username {
  color: var(--text-main);
  font-weight: 500;
}

.btn-logout {
  padding: 8px 16px;
  border-radius: 10px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: linear-gradient(
    135deg,
    var(--accent),
    var(--secondary)
  );
  color: #fff;
}
.user-menu {
  position: relative;
}

.user-dropdown {
  position: absolute;
  top: 120%;
  right: 0;
  background: rgba(20, 20, 30, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 10px;
  display: none;
  min-width: 160px;
}

.user-dropdown a,
.user-dropdown button {
  display: block;
  width: 100%;
  padding: 8px 12px;
  background: none;
  color: white;
  text-align: left;
}

.user-menu.open .user-dropdown {
  display: block;
}
button {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.glass-card {
  transition: transform 0.2s ease, border 0.2s ease;
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
}


/* ===== HEADER AUTH AREA ===== */
#authArea {
  display: flex;
  align-items: center;
  gap: 12px;
   margin-left: 48px;
}
.user-menu {
  position: relative;
}

.user-trigger {
  display: flex;
  align-items: center;
  gap: 10px;

    padding: 8px 14px;
  border-radius: 999px;

  background: rgba(0, 255, 255, 0.08);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(0, 255, 255, 0.25);

  cursor: pointer;
  transition: all 0.25s ease;
}
.user-trigger:hover {
  box-shadow:
    0 0 10px rgba(0, 255, 255, 0.6),
    0 0 20px rgba(0, 255, 255, 0.35);
}

.avatar-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  font-size: 14px;

  color: #00151a;
  background: linear-gradient(135deg, #00f0ff, #8b5cf6);

  box-shadow:
    0 0 10px rgba(0, 240, 255, 0.7);
}

.user-trigger .username {
  font-size: 14px;
  font-weight: 600;
  color: #e6fdff;
  letter-spacing: 0.3px;
}

.user-trigger {
  box-shadow: 0 0 6px rgba(0, 240, 255, 0.35);
}






