/* ===================================================
   TAM PARTİ - ULTRA HAFİF & OPTİMİZE STİL SAYFASI
   Özgün Tasarım & Yüksek Performans (Pure CSS)
   =================================================== */

:root {
  --primary: #4ab2ed;         /* Ecevit Mavisi */
  --primary-dark: #2a94d0;
  --primary-light: #e8f5fd;
  --secondary: #00001c;       /* Derin Parti Siyahı */
  --dark-bg: #212326;         /* Koyu Bölüm / Footer Arka Planı */
  --dark-surface: #191b1d;
  --text-main: #333333;
  --text-muted: #666666;
  --text-light: #9ba0a6;
  --bg-light: #f8f9fa;
  --border-light: #e6e8eb;
  --white: #ffffff;
  --font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --container-width: 1240px;
  --transition: all 0.25s ease-in-out;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ===================================================
   HEADER & NAVIGATION
   =================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo img {
  height: 62px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  font-size: 0.935rem;
  font-weight: 600;
  color: #2b2b2b;
  border-radius: 6px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-item:hover > .nav-link {
  color: var(--primary-dark);
  background-color: var(--primary-light);
}

.nav-link i.fa-chevron-down {
  font-size: 0.72rem;
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.nav-item:hover > .nav-link i.fa-chevron-down {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}

.nav-item:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 0.885rem;
  font-weight: 500;
  color: #444;
  transition: var(--transition);
}

.dropdown-menu li a i {
  font-size: 0.75rem;
  color: var(--primary);
}

.dropdown-menu li a:hover {
  background-color: var(--bg-light);
  color: var(--primary-dark);
  padding-left: 22px;
}

/* CTA Nav Button */
.nav-cta {
  background-color: var(--primary);
  color: var(--white) !important;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 10px 22px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(74, 178, 237, 0.35);
}

.nav-cta:hover {
  background-color: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(74, 178, 237, 0.45);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
  padding: 8px;
}

/* ===================================================
   HERO SLIDER
   =================================================== */
.hero-slider-section {
  position: relative;
  width: 100%;
  background: #000;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 650;
  max-height: 600px;
  min-height: 280px;
}

.slider-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slider-item.active {
  opacity: 1;
  z-index: 1;
}

.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.4);
  color: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.2rem;
}

.slider-control:hover {
  background: var(--primary);
}

.slider-control.prev { left: 20px; }
.slider-control.next { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--primary);
  transform: scale(1.25);
  box-shadow: 0 0 8px rgba(74, 178, 237, 0.8);
}

/* ===================================================
   NEWS TICKER (PARTİDEN / SON DAKİKA)
   =================================================== */
.ticker-section {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

.ticker-wrapper {
  display: flex;
  align-items: center;
  height: 46px;
  overflow: hidden;
}

.ticker-badge {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.825rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
  padding-right: 28px;
}

.ticker-content {
  flex-grow: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 20px;
}

.ticker-items {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: tickerScroll 45s linear infinite;
  gap: 30px;
}

.ticker-items:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
}

.ticker-item:hover {
  color: var(--primary-dark);
}

.ticker-item::after {
  content: "•";
  margin-left: 25px;
  color: var(--primary);
  font-size: 1.2rem;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===================================================
   ACTION CARDS (FLIP BOXES)
   =================================================== */
.action-cards-section {
  padding: 70px 0 60px;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 45px;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.flip-box {
  background-color: transparent;
  perspective: 1000px;
  height: 330px;
}

.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.flip-box:hover .flip-box-inner,
.flip-box.is-flipped .flip-box-inner {
  transform: rotateY(180deg);
}

.flip-box-front, .flip-box-back {
  position: absolute;
  inset: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 35px 25px;
  border: 1px solid var(--border-light);
}

.flip-box-front {
  background-color: var(--white);
  color: var(--text-main);
}

.flip-box-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 22px;
  transition: var(--transition);
}

.flip-box:hover .flip-box-icon {
  transform: scale(1.1);
}

.flip-box-front h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
}

.flip-box-front p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.flip-box-hint {
  margin-top: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.flip-box-back {
  background: linear-gradient(145deg, var(--secondary) 0%, #151829 100%);
  color: var(--white);
  transform: rotateY(180deg);
  border-color: transparent;
}

.flip-box-back h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}

.flip-box-back p {
  font-size: 0.92rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 24px;
}

.btn-card-action {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 12px 28px;
  border-radius: 50px;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(74, 178, 237, 0.4);
}

.btn-card-action:hover {
  background: #fff;
  color: var(--secondary);
  transform: translateY(-2px);
}

/* ===================================================
   MANIFESTO / "ŞİMDİ TAM ZAMANI" SECTION
   =================================================== */
.manifesto-section {
  padding: 80px 0;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.manifesto-card {
  background: var(--white);
  border-radius: 20px;
  padding: 50px 60px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.manifesto-header {
  text-align: center;
  margin-bottom: 35px;
}

.manifesto-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--secondary);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.manifesto-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.manifesto-lead {
  font-size: 1.18rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 35px;
}

.manifesto-text-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.manifesto-box {
  background: var(--bg-light);
  border-radius: 14px;
  padding: 26px 30px;
  border-left: 4px solid var(--primary);
}

.manifesto-box h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.manifesto-box h4 i {
  color: var(--primary);
}

.manifesto-box p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.65;
}

/* 8 İlkeler Listesi */
.principles-box {
  background: #f1f8fc;
  border: 1px dashed var(--primary);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  margin-top: 15px;
}

.principles-title {
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.principles-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.principle-tag {
  background: var(--white);
  color: var(--secondary);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid rgba(74, 178, 237, 0.4);
  box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

/* ===================================================
   LATEST NEWS SECTION (ANA SAYFA HABERLER)
   =================================================== */
.news-section {
  padding: 75px 0 85px;
  background: var(--white);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.news-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e2e8f0;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-thumb img {
  transform: scale(1.05);
}

.news-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  text-transform: uppercase;
}

.news-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-date {
  font-size: 0.82rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.news-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--secondary);
  margin-bottom: 12px;
  transition: var(--transition);
}

.news-card:hover .news-title {
  color: var(--primary-dark);
}

.news-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.news-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.news-link:hover {
  color: var(--primary-dark);
  gap: 10px;
}

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  background-color: var(--dark-bg);
  color: #d1d5db;
  padding-top: 65px;
  border-top: 3px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand img {
  height: 55px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #9ca3af;
  margin-bottom: 20px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--primary);
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu a {
  color: #9ca3af;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-menu a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #9ca3af;
}

.footer-contact i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 4px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social-btn:hover {
  background: var(--primary);
  transform: translateY(-3px);
  color: var(--white);
}

.footer-bottom {
  background: var(--dark-surface);
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: #888;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===================================================
   SABİT SAYFA & HABER DETAY ŞABLONLARI
   =================================================== */
.page-header-banner {
  background: linear-gradient(135deg, var(--secondary) 0%, #172133 100%);
  color: var(--white);
  padding: 55px 0 50px;
  position: relative;
  border-bottom: 4px solid var(--primary);
}

.page-header-banner h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #94a3b8;
}

.breadcrumb a {
  color: #e2e8f0;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.page-content-area {
  padding: 60px 0 80px;
  background: var(--white);
}

.page-layout-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 45px;
}

.page-single-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #334155;
}

.page-single-body p {
  margin-bottom: 22px;
}

.page-single-body h2, .page-single-body h3 {
  color: var(--secondary);
  margin: 32px 0 16px;
  font-weight: 800;
}

.page-single-body ul, .page-single-body ol {
  margin: 0 0 24px 24px;
}

.page-single-body li {
  margin-bottom: 8px;
  list-style-type: disc;
}

.post-featured-media {
  margin-bottom: 30px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.post-meta-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Sidebar Widgets */
.sidebar-widget {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 25px;
  margin-bottom: 30px;
}

.widget-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}

.widget-menu li {
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  padding-bottom: 8px;
}

.widget-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #4b5563;
}

.widget-menu a:hover {
  color: var(--primary);
  padding-left: 4px;
}

/* ===================================================
   MODAL (ÖN BAŞVURU FORMLARI)
   =================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--white);
  border-radius: 18px;
  width: 100%;
  max-width: 520px;
  padding: 35px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #94a3b8;
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: #0f172a;
}

.modal-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 8px;
}

.modal-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.92rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(74, 178, 237, 0.2);
}

.btn-submit {
  width: 100%;
  padding: 13px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}

.btn-submit:hover {
  background: var(--primary-dark);
}

/* ===================================================
   RESPONSIVE DESIGN (MOBİL VE TABLET)
   =================================================== */
@media (max-width: 1024px) {
  .header-inner { height: 80px; }
  .site-logo img { height: 50px; }
  .nav-list { gap: 2px; }
  .nav-link { padding: 8px 10px; font-size: 0.88rem; }
  .action-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .page-layout-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .mobile-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    padding: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  .main-nav.active { display: flex; }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    width: 100%;
  }
  .nav-link {
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 8px;
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--bg-light);
    border-radius: 8px;
    margin: 4px 0 8px 12px;
    display: none;
  }
  .nav-item.open .dropdown-menu { display: block; }
  .nav-cta { text-align: center; margin-top: 10px; }

  .action-grid { grid-template-columns: 1fr; }
  .flip-box { height: 290px; }
  .manifesto-card { padding: 30px 20px; }
  .manifesto-text-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 10px; }
  .ticker-badge { padding: 0 12px; font-size: 0.75rem; }
}
