/**
 * ============================================================
 *  styles.css — Global / Base Stylesheet
 * ============================================================
 *
 *  Scope:
 *    Used by ALL pages across the website. Contains:
 *    - CSS custom properties (dark & light theme)
 *    - Base reset & typography
 *    - Header, sidebar navigation, hamburger menu
 *    - Buttons, hero section, home-page components
 *    - Construction notice
 *
 *  Theme:
 *    Dark mode is the default. Light mode is activated via
 *    [data-theme="light"] on <html>, toggled by init.js.
 *
 *  Other CSS files (page-specific):
 *    - esports.css  → esport/ pages
 *    - events.css   → events/ pages
 *    - social.css   → about_us/ pages
 *    - footer.css   → footer/ pages and footer partial
 * ============================================================
 */

@import url("footer.css");
@import url("Admin.css");

/* ==========================================================
   LANGUAGE TOGGLE — Colour overrides (highest specificity)
   ========================================================== */
/* Force lang-toggle color with highest specificity at the end of the file */
[data-theme="light"] .lang-toggle, .lang-toggle[data-theme="light"] {
  color: #000 !important;
}
[data-theme="dark"] .lang-toggle, .lang-toggle[data-theme="dark"],
:root:not([data-theme="light"]) .lang-toggle {
  color: #fff !important;
}
/* Language toggle button */


/* Language toggle color for light theme: black */
[data-theme="light"] .lang-toggle {
  color: #000 !important;
}

/* ==========================================================
   CSS CUSTOM PROPERTIES — Dark theme (default)
   ========================================================== */

/* Base styles */
:root {
  --bg: #07140e;            /* very dark green */
  --bg-grad-start: #06110b;
  --bg-grad-end: #0a1b13;
  --bg-grad: linear-gradient(180deg, var(--bg-grad-start) 0%, var(--bg-grad-end) 100%);
  --card: #0f231a;          /* dark green card */
  --text: #e9f6ef;          /* light text on dark green */
  --muted: #b6d0c3;         /* muted on dark */
  --primary: #34c759;       /* apple green */
  --primary-600: #28b24d;   /* darker apple green on hover */
  --accent: #000000;        /* black accent */
  --danger: #ef4444;        /* red */
  --border: #3fa36c;        /* lighter green for more visible border in dark mode */
  --shadow: 0 10px 25px rgba(0,0,0,0.35);
  --accent-soft: #b6d0c3;
  --accent-soft-2: #a2c4b5;
  --accent-soft-3: #9bc3a8;
  --accent-soft-4: #7fb896;
  --card-accent: #b6d0c3;
  --btn-bg: #b6d0c3;
}

/* ==========================================================
   CSS CUSTOM PROPERTIES — Light theme overrides
   ========================================================== */

/* Light theme overrides */
[data-theme="light"] {
  --bg: #e3f2ea;            /* very light green */
  --bg-grad-start: #edf8f2;
  --bg-grad-end: #e3f2ea;
  --bg-grad: linear-gradient(180deg, var(--bg-grad-start) 0%, var(--bg-grad-end) 100%);
  --card: #ffffff;          /* clean card on light */
  --text: #0b1b14;          /* dark text on light */
  --muted: #2e4f41;         /* muted dark green */
  --primary: #1f8f44;       /* deeper green for contrast */
  --primary-600: #177a38;   /* darker green on hover */
  --accent: #000000;        /* black accent */
  --danger: #d90429;        /* strong red */
  --border: #4e5853;        /* softer border for light mode */
  --shadow: 0 8px 18px rgba(10, 20, 17, 0.12);
  --accent-soft: #2b5f49;
  --accent-soft-2: #356e56;
  --accent-soft-3: #3f7861;
  --accent-soft-4: #4c856c;
  --card-accent: #2b5f49;
  --btn-bg: #2b5f49;
  --text-muted: #2e4f41;

}

/* ==========================================================
   ADMIN DASHBOARD LIGHT MODE — Special calm editor-inspired theme
   ========================================================== */

/* Apply only to admin dashboard in light mode */
body[data-page="admin-dashboard"][data-theme="light"] {
  --bg: #f5f5f5;            /* soft neutral grey, like VSCode light */
  --bg-grad-start: #fafafa;
  --bg-grad-end: #f5f5f5;
  --bg-grad: linear-gradient(180deg, var(--bg-grad-start) 0%, var(--bg-grad-end) 100%);
  --bg-soft: #f0f0f0;       /* slightly darker grey for sections */
  --card: #ffffff;          /* clean white panels */
  --text: #333333;          /* dark grey text - less harsh than pure black */
  --muted: #666666;         /* muted grey text */
  --primary: #0e639c;       /* VSCode-like muted blue */
  --primary-600: #094771;   /* darker blue on hover */
  --accent: #333333;        /* dark grey accent */
  --danger: #e74c3c;        /* calm red */
  --warning: #d68910;       /* calm orange */
  --border: #d3d3d3;        /* soft grey borders */
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --accent-soft: #555555;
  --accent-soft-2: #444444;
  --accent-soft-3: #666666;
  --accent-soft-4: #777777;
  --card-accent: #555555;
  --btn-bg: #555555;
  --text-muted: #666666;
}

/* ==========================================================
   ADMIN DASHBOARD WORK MODE — Independent calming theme
   ========================================================== */

/* Work Mode overrides light/dark mode completely on admin dashboard */
body[data-page="admin-dashboard"][data-work-mode="true"],
html[data-work-mode="true"] {
  --bg: #1e1e1e;            /* dark grey, VSCode-like background */
  --bg-grad-start: #252525;
  --bg-grad-end: #1e1e1e;
  --bg-grad: linear-gradient(180deg, var(--bg-grad-start) 0%, var(--bg-grad-end) 100%);
  --bg-soft: #2a2a2a;       /* slightly lighter grey sections */
  --card: #252525;          /* medium grey panels, not white */
  --text: #d4d4d4;          /* light grey text, easy on eyes */
  --muted: #8b8b8b;         /* muted medium grey */
  --primary: #007acc;       /* VSCode blue - professional, calm */
  --primary-600: #005a9e;   /* darker blue on hover */
  --accent: #d4d4d4;        /* light grey accent */
  --danger: #d97878;        /* softer red for dark bg */
  --warning: #d5a043;       /* softer orange for dark bg */
  --border: #3e3e42;        /* grey borders, not too bright */
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  --accent-soft: #b0b0b0;
  --accent-soft-2: #a0a0a0;
  --accent-soft-3: #8b8b8b;
  --accent-soft-4: #777777;
  --card-accent: #b0b0b0;
  --btn-bg: #b0b0b0;
  --text-muted: #8b8b8b;
}

/* ==========================================================
   BASE RESET & TYPOGRAPHY
   ========================================================== */

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================
   SITE HEADER — Fixed top bar with brand, hamburger, toggles
   ========================================================== */

/* Header */
.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  background: rgba(52, 199, 89, 0.08); /* much lighter green tint for light mode */
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  height: 64px;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: center;
}
.brand img { height: 32px; width: 32px; border-radius: 6px; }
.brand .brand-text { font-size: 28px; line-height: 1; }

.nav a {
  color: var(--text);
  text-decoration: none;
  margin-left: 16px;
  opacity: 0.9;
}
.nav a:hover { opacity: 1; }

/* ==========================================================
   HAMBURGER MENU BUTTON
   ========================================================== */

/* Hamburger */
.hamburger {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 10px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px; /* larger gap to resemble underscores */
  cursor: pointer;
  justify-self: start; /* left corner */
}
.hamburger span {
  display: block;
  width: 16px; /* shorter line like '_' */
  height: 1.5px; /* thinner line like '_' */
  background: var(--text);
  border-radius: 2px;
}

/* ==========================================================
   SIDEBAR NAVIGATION — Slide-in panel + overlay
   ========================================================== */

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: var(--card);
  border-right: 1px solid var(--border);
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  z-index: 130;
  padding-top: 72px;
  display: flex;
  flex-direction: column;
}
.sidebar.open { transform: translateX(0); }

.sidebar-nav {
  display: flex;
  flex-direction: column;
  padding: 0 16px;
  gap: 6px;
  flex: 1;
}
.sidebar-nav a {
  color: var(--text);
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 10px;
  position: relative;
  display: block; /* full-width clickable like buttons */
  width: 100%;
}
.sidebar-nav a:hover { background: rgba(255,255,255,0.04); text-decoration: underline; }

/* Submenus */
.nav-item { position: relative; }
.has-submenu > .submenu {
  position: relative;
  margin-left: 16px; /* oriented slightly to the right */
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 6px 0 6px 8px;
}
.has-submenu > .submenu[hidden] { display: none !important; }
.has-submenu > .submenu a {
  background: transparent;
  border: 2px dashed var(--border);
  transition: border-color 0.15s;
  border-radius: 8px;
  padding: 10px 12px;
 
}
/* Change outline color to red while pressed, with smooth transition */
.has-submenu > .submenu a {
  transition: border-color 0.2s;
}
.has-submenu > .submenu a {
  border-color: var(--border);
}
.has-submenu > .submenu a:active {
  border-color: var(--danger);
}
.has-submenu > .submenu a:hover {
  background: rgba(255,255,255,0.04);
}

/* Directional hover arrows via classes (portable across pages) */
.sidebar-nav a.dir-down:hover::after { content: '▾'; opacity: 1; }
.sidebar-nav a.dir-right:hover::after { content: '▸'; opacity: 1; }

/* Submenu caret button next to parent link */
.submenu-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.submenu-caret {
  margin-left: auto;
  height: 28px;
  min-width: 28px;
  padding: 0;
  border: 1px solid var(--border);
  background: var(--card);
  color: transparent; /* hide always-visible arrow character */
  border-radius: 8px;
  cursor: pointer;
  font-size: 0; /* ensure arrow glyph is not rendered */
}

/* Arrow indicators on hover */
.sidebar-nav a::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text);
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.15s ease;
}

/* Down arrows for Über uns, E-Sports, Events */
.sidebar-nav a[href="#about"]:hover::after,
.sidebar-nav a[href="#esports"]:hover::after,
.sidebar-nav a[href="#events"]:hover::after {
  content: '▾';
  opacity: 1;
}

/* Right arrows for Startseite and Login */
.sidebar-nav a[href="#startseite"]:hover::after,
.sidebar-nav a[href="#login"]:hover::after {
  content: '▸';
  opacity: 1;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 120;
}

.no-scroll { overflow: hidden; }

/* ==========================================================
   BUTTONS
   ========================================================== */

/* Buttons */
.btn {
  display: inline-block;
  background: var(--primary);
  color: var(--accent);
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--shadow);


  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); background: var(--primary-600); }
.btn:active { transform: translateY(0); }
.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  box-shadow: none;
}

.site-quick-links {
  padding: 0 0 48px;
}

.site-quick-links-card {
  display: grid;
  gap: 0.75rem;
}

.site-quick-links-title {
  color: var(--muted);
  font-size: 1.8rem;
  margin: 0 0 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--muted);
  text-align: center;
}

.site-quick-links-subtitle {
  display: none;
}

.site-quick-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.site-quick-links-row .btn {
  min-width: 0;
}

@media (max-width: 640px) {
  .site-quick-links {
    padding-bottom: 36px;
  }

  .site-quick-links-row {
    flex-direction: column;
  }

  .site-quick-links-row .btn {
    width: 100%;
  }
}

/* ==========================================================
   AUTH & MODAL UI
   ========================================================== */

.auth-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.auth-card-text {
  margin: 0;
  color: var(--muted);
}

.auth-modal {
  background: rgba(0, 0, 0, 0.45);
}

.auth-modal-content {
  background: var(--card);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  border-radius: 16px;
}

.auth-discord-btn {
  width: 100%;
  background: #5865f2;
  color: #fff;
  border: none;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}

.auth-discord-btn--spaced {
  margin-bottom: 8px;
}

.auth-divider {
  display: flex;
  align-items: center;
  margin: 8px 0;
  color: var(--muted);
}

.auth-divider--spaced {
  margin: 20px 0;
}

.auth-divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.auth-input {
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 1em;
}

.auth-error {
  color: var(--danger);
  font-size: 0.95em;
  display: none;
}

.auth-error-box {
  color: var(--danger);
  font-size: 0.95em;
  display: none;
  text-align: center;
  margin-top: 8px;
  padding: 8px;
  background: rgba(217, 4, 41, 0.1);
  border-radius: 6px;
}

.auth-link {
  color: var(--text);
  text-decoration: underline;
  cursor: pointer;
}

.auth-muted {
  color: var(--muted);
}

.auth-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.3em;
  cursor: pointer;
  line-height: 1;
}

/* ==========================================================
   LANGUAGE TOGGLE BUTTON (in header)
   ========================================================== */

/* Language toggle color for dark theme: white */
.lang-toggle {
  font-weight: 800;
  font-size: 1.3em;
  color: inherit;
  padding: 0 18px;
  margin-right: 16px;
  user-select: none;
  cursor: pointer;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  height: 44px;
  letter-spacing: 0.5px;
}

/* ==========================================================
   GENERIC PAGE HERO
   ========================================================== */

/* Hero */
.page { padding: 80px 0; }
.page h1 { margin: 0 0 8px; }
.page p { color: var(--muted); margin: 0; }

/* ==========================================================
   HOME PAGE — Hero, features, stats, CTA
   ========================================================== */

/* Home */
.home-hero {
  padding: 140px 0 90px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 20% 20%, rgba(52, 199, 89, 0.18), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(63, 163, 108, 0.2), transparent 55%);
}

.home-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(7, 20, 14, 0), var(--bg));
  pointer-events: none;
}

.home-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 3rem;
  align-items: center;
}

.home-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.home-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.05;
  margin: 0 0 1.2rem;
  color: var(--primary);
  text-shadow: 0 0 26px rgba(52, 199, 89, 0.4);
}

.home-subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0 0 1.8rem;
  max-width: 560px;
}

.home-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.home-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  font-size: 0.95rem;
}

.home-quick-label {
  color: var(--muted);
  font-weight: 600;
}

.home-quick a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.home-quick a:hover {
  border-color: var(--primary);
}

.home-hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.8rem;
}

.home-card-title {
  margin: 0 0 1.2rem;
  font-size: 1.4rem;
  color: var(--text);
}

.home-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  display: grid;
  gap: 1rem;
}

.home-card-list li {
  display: grid;
  gap: 0.25rem;
}

.home-highlight-link {
  display: grid;
  gap: 0.25rem;
}

.home-card-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.home-card-value {
  font-weight: 600;
  color: var(--text);
}

.home-card-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.home-section {
  padding: 80px 0;
}

.home-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.home-section-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--primary);
  margin: 0 0 0.6rem;
}

.home-section-subtitle {
  color: var(--muted);
  margin: 0;
}

.home-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.home-feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.6rem;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-feature:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
}

.home-feature h3 {
  margin: 0 0 0.5rem;
  color: var(--text);
}

.home-feature p {
  margin: 0;
  color: var(--muted);
}

.home-stats {
  background: rgba(15, 35, 26, 0.6);
}

[data-theme="light"] .home-stats {
  background: rgba(52, 199, 89, 0.08);
}

.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.home-stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
}

.home-stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
}

.home-stat-label {
  color: var(--muted);
}

.home-cta {
  padding: 90px 0 120px;
}

.home-cta-inner {
  background: linear-gradient(120deg, rgba(52, 199, 89, 0.25), rgba(15, 35, 26, 0.9));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow);
}

[data-theme="light"] .home-cta-inner {
  background: linear-gradient(120deg, rgba(52, 199, 89, 0.15), rgba(52, 199, 89, 0.08));
}

.home-cta-inner h2 {
  margin: 0 0 0.6rem;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  color: var(--text);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.home-cta-inner p {
  margin: 0 0 1.5rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .home-hero-content {
    grid-template-columns: 1fr;
  }

  .home-hero {
    padding-top: 120px;
  }

  .home-cta-inner {
    padding: 2.2rem;
  }
}

@media (max-width: 600px) {
  .home-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .home-hero-card {
    padding: 1.4rem;
  }
}

/* Light mode: main display background */
[data-theme="light"] main {
  background: rgba(52, 199, 89, 0.08);
}

/* ==========================================================
   ABOUT SECTION (minimal)
   ========================================================== */

/* removed cards/grid for placeholder pages */

/* About */
.about { padding: 32px 0; }
.about-inner { max-width: 760px; }
.about p { color: var(--muted); }

/* Contact */
.contact { padding: 40px 0 64px; text-align: center; }
.contact p { color: var(--muted); margin-top: -6px; margin-bottom: 16px; }

/* ==========================================================
   THEME TOGGLE BUTTON (in header)
   ========================================================== */

/* Theme toggle button */
.theme-toggle {
  height: 44px;
  min-width: 44px;
  padding: 0 10px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  border-radius: 10px;
	  cursor: pointer;
	  justify-self: end; /* right corner */
}

/* ==========================================================
   RESPONSIVE BREAKPOINTS (global)
   ========================================================== */

/* Responsive */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero-inner h1 { font-size: 34px; }
  .grid-3 { grid-template-columns: 1fr; }
}

/* ==========================================================
   CONSTRUCTION NOTICE BANNER
   ========================================================== */

/* Construction Notice Styling */
.construction-notice {
  background: linear-gradient(135deg, #2d5a47 0%, #1e3a2e 100%);
  border-bottom: 3px solid var(--accent-soft);
  padding: 20px 0;
  margin-bottom: 0;
  margin-top: 64px; /* Account for fixed header height */
  position: relative;
  z-index: 5;
}

.construction-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(182, 208, 195, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(182, 208, 195, 0.3);
}

.construction-icon {
  font-size: 2.5rem;
  animation: bounce 2s infinite;
  color: var(--accent-soft);
}

.construction-content {
  text-align: center;
  color: #ffffff;
}

.construction-content h2 {
  margin: 0 0 10px 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-soft);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.construction-content p {
  margin: 8px 0;
  font-size: 1rem;
  line-height: 1.4;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.construction-content strong {
  font-weight: 600;
  color: var(--accent-soft);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@media (max-width: 600px) {
  .construction-banner {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }
  
  .construction-content h2 {
    font-size: 1.5rem;
  }
  
  .construction-content p {
    font-size: 0.9rem;
  }
  
  .construction-icon {
    font-size: 2rem;
  }
}

