/* TEMA DEĞİŞKENLERİ */
:root {
  --primary: #3b82f6;
  --accent: #f43f5e;
  --success: #10b981;
  --glow: 0 0 20px rgba(59, 130, 246, 0.5);
}

/* KARANLIK TEMA (Varsayılan Tasarımın Aynısı) */
[data-theme="dark"] {
  --bg-body: #0f172a;
  --bg-card: #1e293b;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --glass-bg: rgba(30, 41, 59, 0.7);
  --border-color: rgba(255, 255, 255, 0.1);
  --nav-bg: rgba(15, 23, 42, 0.8);
  --shadow-color: rgba(0, 0, 0, 0.5);
  --input-bg: rgba(255, 255, 255, 0.05);
  --toggle-bg: rgba(255, 255, 255, 0.1);
}

/* AYDINLIK TEMA (Light Mode) */
[data-theme="light"] {
  --bg-body: #f8fafc;
  --bg-card: #ffffff;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --border-color: rgba(0, 0, 0, 0.1);
  --nav-bg: rgba(255, 255, 255, 0.9);
  --shadow-color: rgba(0, 0, 0, 0.1);
  --input-bg: #f1f5f9;
  --toggle-bg: rgba(0, 0, 0, 0.05);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background-color: var(--bg-body);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

/* --- Animations --- */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes random-float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(10px, -15px) rotate(5deg);
  }

  50% {
    transform: translate(-5px, -25px) rotate(-5deg);
  }

  75% {
    transform: translate(-15px, -10px) rotate(5deg);
  }

  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

@keyframes gradient-move {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* --- Utilities --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gradient-text {
  background: linear-gradient(135deg, #60a5fa, #a78bfa, #f43f5e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradient-move 5s ease infinite;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1.1rem;
  position: relative;
  z-index: 20;
}

.btn-primary {
  background: linear-gradient(90deg, var(--primary), #2563eb);
  color: white;
  box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.5);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 30px -10px rgba(59, 130, 246, 0.7);
}

.btn-accent {
  background: linear-gradient(90deg, var(--accent), #f43f5e);
  color: white;
  box-shadow: 0 10px 25px -5px rgba(244, 63, 94, 0.5);
}

.btn-accent:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 30px -10px rgba(244, 63, 94, 0.7);
}

/* --- Navbar --- */
nav {
  padding: 20px 0;
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border-color);
  transition: background 0.3s;
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

#nav-download-btn,
#nav-panel-btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Tema Butonu */
.theme-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--toggle-bg);
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.theme-btn:hover {
  transform: rotate(15deg);
  background: var(--border-color);
}

/* Hero Search */
.hero-search-wrapper {
  margin-bottom: 30px;
  width: 100%;
  max-width: 600px;
}

.hero-search-box {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  padding: 8px 8px 8px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.hero-search-box:focus-within {
  border-color: var(--primary);
  box-shadow: 0 15px 40px -10px rgba(59, 130, 246, 0.2);
  transform: translateY(-2px);
}

.hero-search-box .search-icon {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-right: 15px;
}

.hero-search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1rem;
  color: var(--text-main);
  outline: none;
  font-family: inherit;
  min-width: 0;
  /* Prevent flex overflow */
}

.hero-search-input::placeholder {
  color: var(--text-muted);
  opacity: 0.8;
}

.hero-search-btn {
  background: linear-gradient(90deg, var(--primary), #2563eb);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  font-size: 1rem;
  white-space: nowrap;
}

.hero-search-btn:hover {
  filter: brightness(1.1);
  transform: scale(1.02);
}

.hero-search-btn:active {
  transform: scale(0.98);
}

.search-helper-text {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 10px;
  opacity: 0.8;
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

#nav-download-btn,
#nav-panel-btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Tema Butonu */
.theme-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--toggle-bg);
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.theme-btn:hover {
  transform: rotate(15deg);
  background: var(--border-color);
}

/* Hero Search */
.hero-search-wrapper {
  margin-bottom: 30px;
  width: 100%;
  max-width: 600px;
}

.hero-search-box {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  padding: 8px 8px 8px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.hero-search-box:focus-within {
  border-color: var(--primary);
  box-shadow: 0 15px 40px -10px rgba(59, 130, 246, 0.2);
  transform: translateY(-2px);
}

.hero-search-box .search-icon {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-right: 15px;
}

.hero-search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 1rem;
  color: var(--text-main);
  outline: none;
  font-family: inherit;
  min-width: 0;
  /* Prevent flex overflow */
}

.hero-search-input::placeholder {
  color: var(--text-muted);
  opacity: 0.8;
}

.hero-search-btn {
  background: linear-gradient(90deg, var(--primary), #2563eb);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  font-size: 1rem;
  white-space: nowrap;
}

.hero-search-btn:hover {
  filter: brightness(1.1);
  transform: scale(1.02);
}

.hero-search-btn:active {
  transform: scale(0.98);
}

.search-helper-text {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 10px;
  opacity: 0.8;
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}

/* Background Glows */
.glow-bg {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
      rgba(59, 130, 246, 0.15) 0%,
      rgba(0, 0, 0, 0) 70%);
  top: -100px;
  right: -100px;
  z-index: -1;
}

.glow-bg-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle,
      rgba(244, 63, 94, 0.1) 0%,
      rgba(0, 0, 0, 0) 70%);
  bottom: 0;
  left: -100px;
  z-index: -1;
}

/* Floating Icons Container */
.floating-icons-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.floating-icon {
  position: absolute;
  font-size: 24px;
  transition: all 0.5s ease-in-out;
  animation: random-float 6s ease-in-out infinite;
}

.icon-type-ghost {
  color: var(--accent);
  opacity: 0.3;
  font-size: 28px;
}

.icon-type-job {
  color: #64748b;
  opacity: 0.1;
  font-size: 20px;
}

.floating-icons-container.success-mode .icon-type-ghost {
  opacity: 0;
  transform: scale(0) rotate(180deg);
  filter: blur(10px);
}

.floating-icons-container.success-mode .icon-type-job {
  color: var(--success);
  opacity: 0.8;
  transform: scale(1.2);
  filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.6));
  z-index: 2;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 5;
}

.hero-text h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 25px;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text-main);
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 500px;
}

/* 3D Mockup */
.hero-visual {
  position: relative;
  perspective: 1000px;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 25px 50px -12px var(--shadow-color);
  transform: rotateY(-10deg) rotateX(5deg);
  transition:
    transform 0.3s ease,
    background 0.3s;
  animation: float 6s ease-in-out infinite;
}

.glass-card:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

.mock-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
}

.mock-logo {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.mock-title div:first-child {
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--text-main);
}

.mock-title div:last-child {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.mock-alert {
  background: rgba(244, 63, 94, 0.1);
  border: 1px solid rgba(244, 63, 94, 0.3);
  color: #fda4af;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

/* Light modda alert yazısı okunması için */
[data-theme="light"] .mock-alert {
  color: #be123c;
  background: rgba(244, 63, 94, 0.1);
  border-color: rgba(244, 63, 94, 0.2);
}

.mock-comment {
  background: var(--input-bg);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text-main);
}

.mock-stars {
  color: #fbbf24;
  margin-bottom: 5px;
  font-size: 0.8rem;
}

/* --- Stats Section --- */
.stats-bar {
  background: var(--input-bg);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 40px 0;
  margin-top: -50px;
  position: relative;
  z-index: 10;
  backdrop-filter: blur(5px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-main);
  font-family: "Space Grotesk", sans-serif;
}

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

/* --- Features Section --- */
.features {
  padding: 120px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 80px;
}

.section-title h2 {
  font-size: 3rem;
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 15px;
  color: var(--text-main);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-box {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow-color);
}

.feature-box:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 25px;
  background: linear-gradient(135deg, var(--primary), #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-box h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-main);
}

.feature-box p {
  color: var(--text-muted);
}

/* --- Reviews Section (NEW) --- */
.reviews-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, var(--bg-body), var(--bg-card));
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.review-card {
  background: var(--input-bg);
  border: 1px solid var(--border-color);
  padding: 25px;
  border-radius: 15px;
  backdrop-filter: blur(5px);
}

.review-text {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
}

/* --- FAQ Section (NEW) --- */
.faq-section {
  padding: 80px 0;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

details.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.3s;
}

details.faq-item:hover {
  border-color: rgba(59, 130, 246, 0.3);
}

summary {
  font-weight: 600;
  font-size: 1.1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-main);
}

summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.3s;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  margin-top: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
}

/* --- CTA Section --- */
.cta-section {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-body) 0%, var(--bg-card) 100%);
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--border-color);
  padding: 60px;
  border-radius: 30px;
  background: var(--input-bg);
  position: relative;
  overflow: hidden;
}

.cta-box::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--primary);
  filter: blur(100px);
  opacity: 0.2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/* Footer */
footer {
  border-top: 1px solid var(--border-color);
  padding: 40px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

#main-download-btn-mobile {
  display: none;
}

#main-download-btn-desktop {
  display: block;
}

/* Mobile */
@media (max-width: 768px) {

  /* Navbar Fixes */
  nav {
    padding: 15px 0;
  }

  .logo {
    font-size: 1.2rem;
  }

  .nav-actions {
    gap: 10px;
  }

  .btn-primary#nav-download-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .btn-accent#nav-panel-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .theme-btn {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  /* Hero Fixes */
  .hero {
    padding-top: 100px;
    /* More space for navbar */
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .hero-text h1 {
    font-size: 2.2rem;
    /* Slightly smaller to prevent overflow */
  }

  .hero-text p {
    margin: 0 auto 30px;
    font-size: 1.1rem;
  }

  /* Hero Search Fixes */
  .hero-search-wrapper {
    margin: 0 auto 30px;
    width: 100%;
  }

  .hero-search-box {
    padding: 5px;
    flex-direction: column;
    /* Stack input and button on very small screens? No, maybe just condensed */
    align-items: stretch;
  }

  /* Better mobile search: Top input, bottom button if needed. 
     But let's try keeping row but optimized first.
     Actually, column might be better for very narrow screens (width < 350px).
     Let's use a nested media query or just simple flex row with adjustments.
  */
  .hero-search-box {
    padding: 6px 6px 6px 15px;
    /* On mobile, let's keep it row but snug */
  }

  .hero-search-input {
    font-size: 0.9rem;
    padding: 5px 0;
    /* Vertical center help */
  }

  .hero-search-box .search-icon {
    margin-right: 10px;
    font-size: 1rem;
  }

  .hero-search-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  /* Grid Fixes */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-grid,
  .review-grid {
    grid-template-columns: 1fr;
    /* Force single column */
  }

  .glass-card {
    transform: none;
    margin-top: 30px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .cta-box {
    padding: 40px 20px;
  }

  .cta-box h2 {
    font-size: 1.8rem !important;
  }
}

/* Extra Small Screens (Phones) */
@media (max-width: 480px) {
  .hero-search-box {
    flex-direction: column;
    padding: 10px;
    gap: 10px;
  }

  .hero-search-box .search-icon {
    display: none;
    /* Hide icon to save space in column mode */
  }

  .hero-search-input {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
  }

  .hero-search-btn {
    width: 100%;
    justify-content: center;
    padding: 12px;
  }

  #main-download-btn-desktop {
    display: none;
  }

  #main-download-btn-mobile {
    display: block;
  }

  /* Navbar compaction */
  .logo span {
    /* If we had text in span, we could hide it. But it's direct text. */
    /* Let's shrink it more */
    font-size: 1.1rem;
  }

  #nav-download-btn span {
    /* Hide text if needed, but 'İndir' is short. */
  }

  #nav-download-btn {
    padding: 8px 12px;
    display: none;
  }
}

/* Utility for animation on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- CONSTRUCTION BANNER (Temporary) --- */
#construction-banner {
  background: linear-gradient(90deg, #1e293b, #0f172a);
  color: white;
  padding: 10px 0;
  position: relative;
  z-index: 2000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

#construction-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.banner-icon {
  width: 35px;
  height: 35px;
  background: rgba(244, 63, 94, 0.2);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.banner-text {
  line-height: 1.4;
}

.banner-text strong {
  color: #fbbf24;
}

.banner-form {
  display: flex;
  gap: 10px;
}

.banner-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 6px 12px;
  color: white;
  font-size: 0.85rem;
  outline: none;
  transition: all 0.2s;
}

.banner-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.banner-input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.banner-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 6px 15px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.banner-btn:hover {
  filter: brightness(1.1);
}

.banner-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 5px;
  transition: color 0.2s;
}

.banner-close:hover {
  color: white;
}

@media (max-width: 768px) {
  #construction-banner .container {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    text-align: center;
  }

  .banner-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  /* Banner text adjustments */
  .banner-text {
    font-size: 0.9rem;
  }
  
  .banner-form {
    width: 100%;
    flex-direction: column; /* Stack inputs on mobile */
    gap: 10px;
  }

  .banner-input {
    width: 100%;
    padding: 10px; /* Larger touch area */
  }

  .banner-btn {
    width: 100%;
    padding: 10px;
    justify-content: center;
  }

  /* Close button absolute positioning fix for mobile */
  .banner-close {
    position: absolute;
    top: 5px;
    right: 10px;
  }
}

/* END */