.tabs { margin: 8px 0 12px; }
.tab-list { display: flex; gap: 6px; flex-wrap: wrap; }
.tab-button { padding: 6px 10px; border: 2px solid #000; background: #fff; font-weight: 700; cursor: pointer; box-shadow: 3px 3px 0 #000; border-radius: 8px; }
.tab-button.is-active { background: var(--brand); color: #fff; }
.tab-panel { margin-top: 8px; }
:root {
  --bg: #ffffff;
  --panel: #ffffff;
  --panel-alt: rgba(255,247,247,.92);
  --text: #111111;
  --muted: #5a5f69;
  --brand: #d32f2f; /* strong red similar to Comicworld */
  --brand-dark: #b71c1c; /* darker red for hover and accents */
  --accent: #ffebee; /* very light red */
  --border: #000000;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg) url('./assets/ComicBackground30.jpg') center/cover no-repeat;
  color: var(--text);
  font-family: Raleway, Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }

.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  border: 3px solid #000;
  background: #ffffff;
  color: #111111;
  box-shadow: 3px 3px 0px #000;
  font-weight: 800;
  letter-spacing: .02em;
  transition: transform 0.1s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0px #000; background: var(--accent); }
.btn.primary { background: var(--brand); color: #ffffff; }
.btn.primary:hover { background: var(--brand-dark); }
.btn.ghost { background: transparent; color: #111111; border-color: #000; }
.btn.ghost:hover { background: #fff0f0; }

.eyebrow {
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
  margin: 0 0 8px 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  position: relative;
}

.brand {
  font-weight: 700;
  color: var(--text);
  font-size: 18px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-logo { height: 24px; width: auto; display: inline-block; filter: drop-shadow(0 0 0 rgba(0,0,0,0)); }
.brand-logo.main { height: 28px; }
.brand-logo.cgc { height: 22px; opacity: .9; }
.brand { gap: 12px; }
.brand-text { color: #ffffff; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.site-nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  gap: 16px;
}
.site-nav a { color: var(--text); }
.site-nav a:hover { color: var(--brand-dark); }
.nav-cta { display: flex; align-items: center; gap: 12px; margin-left: 10px; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); }
.cart { color: var(--muted); }

/* Language switch */
.lang-switch { display: inline-flex; gap: 6px; margin-left: 8px; }
.lang-switch { display: inline-flex; }
.flag-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: #111111;
  cursor: pointer;
}
.flag-btn[aria-pressed="true"] { outline: 2px solid var(--brand); border-color: var(--brand); }

/* Language visibility: default Greek */
body.lang-el .lang-en { display: none !important; }
body.lang-en .lang-el { display: none !important; }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  align-items: center;
  justify-content: center;
}
.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 3px 0;
}

/* Hero */
.hero {
  background: #f2f2f2;
  border-bottom: none;
}
.hero-inner {
  padding: 48px 0 28px;
}
.hero:after {
  content: "";
  display: block;
  height: 0;
}
.hero-copy {
  position: relative;
  background: var(--panel-alt);
  border: 3px solid #000;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 6px 6px 0 #000;
}
.hero-copy:after {
  content: "";
  position: absolute;
  left: 24px;
  bottom: -20px;
  width: 24px;
  height: 24px;
  background: var(--panel-alt);
  border-left: 3px solid #000;
  border-bottom: 3px solid #000;
  transform: rotate(45deg);
}
.hero-copy h1 {
  font-family: Bangers, Raleway, sans-serif;
  font-size: 48px;
  line-height: 1.05;
  margin: 0 0 12px;
  letter-spacing: .02em;
  color: var(--brand-dark);
  text-shadow: 3px 3px 0 #000;
}
.hero-copy .lead { color: var(--muted); max-width: 700px; margin: 0 0 20px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Logo-only hero */
.logo-hero { display: flex; align-items: center; justify-content: center; gap: 16px; }
.logo-hero-main { height: 72px; width: auto; animation: floatY 6s ease-in-out infinite; }
.logo-hero-main.only { height: 90px; }
.logo-hero-cgc { height: 56px; width: auto; opacity: .95; }
.logo-hero-move { display:inline-block; transition: transform .15s ease; will-change: transform; }

@keyframes floatY {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* Sections */
.section { padding: 24px 0; }
.section + .section { padding-top: 16px; }
.section.alt { background: transparent; border-top: none; border-bottom: none; }
.section.note { padding-top: 0; }
.section-header { margin-bottom: 10px; }
.section-header h2 { margin: 0 0 6px; font-size: 22px; }
.section-header h3 { margin: 0 0 6px; font-size: 18px; }
.section-header p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.4; }
/* Extra spacing when a section header follows a two-column block */
.section .two-col + .section-header { margin-top: 12px; }

/* Cards grid */
.card-grid.six {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.card {
  background: var(--panel-alt);
  border: 3px solid #000;
  border-radius: 12px;
  padding: 4px 4px 4px 14px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 6px 6px 0 #000;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card h3 { margin: 0; }
.card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 #000; }

/* Two column */
.two-col { display: grid; grid-template-columns: 1.2fr .8fr; gap: 16px; align-items: start; }
.well { background: var(--panel-alt); border: 3px solid #000; border-radius: 12px; padding: 4px 4px 4px 14px; box-shadow: 6px 6px 0 #000; }
.well p { margin: 2px 0; }
.well h3 { margin: 0 0 6px; }
.well .list li { margin: 4px 0; }
.muted { color: var(--muted); }

/* Generic white panel for block layout */
.panel {
  background: rgba(255,255,255,.9);
  border: 3px solid #000;
  border-radius: 12px;
  padding: 4px 4px 4px 14px;
  box-shadow: 6px 6px 0 #000;
}
.section .panel { margin-bottom: 6px; }

/* Red panel variant */
.panel-red {
  background: var(--brand);
  color: #ffffff;
  border-color: #000;
}
.panel-red h2, .panel-red h3, .panel-red h4, .panel-red p, .panel-red li { color: #ffffff; }

/* (reverted) Greek title block layout removed */

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.price-card {
  background: var(--panel-alt);
  border: 3px solid #000;
  border-radius: 14px;
  padding: 4px 4px 4px 14px;
  box-shadow: 6px 6px 0 #000;
  transition: transform .2s ease, box-shadow .2s ease;
}
.price-card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 #000; }
.price { font-size: 24px; margin: 8px 0 16px; }
.price span { color: var(--muted); font-size: 14px; font-weight: 500; }
.features { padding-left: 14px; margin: 0 0 10px; color: var(--muted); }

/* Footer */
.site-footer {
  background:
    radial-gradient(1600px 700px at 20% 100%, rgba(255,255,255,0) 40%, rgba(255,255,255,.85) 100%),
    radial-gradient(1400px 700px at 80% 100%, rgba(255,255,255,0) 40%, rgba(255,255,255,.85) 100%);
  border-top: none;
}
.footer-grid { display: grid; grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 8px; padding: 16px 0; }
.footer-bottom { border-top: none; padding: 8px 0 16px; color: var(--muted); text-align: center; font-size: 13px; }

/* Pricing tables (comic style) */
.table-wrap { width: 100%; overflow-x: auto; }
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(255,255,255,.92);
  border: 3px solid #000;
  border-radius: 12px;
  box-shadow: 6px 6px 0 #000;
}
.pricing-table thead th {
  background: var(--brand);
  color: #ffffff;
  text-align: left;
  padding: 6px 6px 6px 14px;
  border-bottom: 3px solid #000;
}
.pricing-table tbody td {
  padding: 6px 6px 6px 14px;
  border-top: 1px solid #000;
}
.pricing-table tbody tr:nth-child(even) td { background: #fff7f7; }
.pricing-table th:first-child, .pricing-table td:first-child { border-left: 0; }
.pricing-table th:last-child, .pricing-table td:last-child { border-right: 0; }
.btn:active { transform: translate(0, 0); box-shadow: 3px 3px 0px #000; }

/* Emphasize the plus sign in 45+ durations */
.pricing-table .plus {
  font-size: 125%;
  font-weight: 800;
  line-height: 1;
  display: inline-block;
  transform: translateY(-1px);
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Moveable image block */
.moveable-wrap { display: flex; justify-content: center; margin: 12px 0 20px; }
.moveable-img { display:inline-block; overflow: visible; transition: transform .15s ease; will-change: transform; background: transparent; }
.moveable-img-el { display:block; width: auto; max-width: 100%; height: auto; max-height: 360px; object-fit: contain; animation: kenburns 18s ease-in-out infinite alternate; }

@keyframes kenburns {
  0% { transform: scale(1); }
  100% { transform: scale(1.03); }
}
.list { list-style: none; padding: 0; margin: 0; }
.list li { margin: 6px 0; }

/* Responsive */
@media (max-width: 1000px) {
  .card-grid.six { grid-template-columns: repeat(3, 1fr); }
  .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .header-inner { height: 56px; }
  .site-nav { position: absolute; top: 56px; right: 0; left: 0; background: var(--panel); border-bottom: 1px solid var(--border); display: none; padding: 12px 16px; }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; gap: 10px; margin-bottom: 10px; }
  .nav-cta { margin: 10px 0 0; }
  .nav-toggle { display: inline-flex; }

  .hero-inner { padding: 32px 0 20px; }
  .hero-copy h1 { font-size: 32px; }
  .card-grid.six { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .card-grid.six { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}


