@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap');
/*
Theme Name: konstyle
Description: EuroLeague Hub Theme
Version: 1.1
Author: kaltsa
*/

:root {
  --orange: #E8610A;
  --orange-dark: #B84D08;
  --black: #1A0F3A;
  --dark: #21144A;
  --dark2: #2A1A55;
  --dark3: #311D72;
  --white: #F0EAFF;
  --gray: #9080C0;
  --gray-light: #C8B8F0;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: #1A0F3A;
  color: var(--white);
  font-family: var(--font-main);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

/* ─── TOP BAR & NAV ─── */
.topbar {
  background: var(--orange);
  padding: 6px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.topbar-right { 
  display: flex; 
  gap: 20px; 
  margin-left: auto;
}

.topbar-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  text-decoration: none;
}
.topbar-social-link svg {
  width: 15px; 
  height: 15px;
  fill: var(--black); 
  transition: fill 0.2s ease;
}
.topbar-social-link:hover { transform: scale(1.15); }
.topbar-social-link:hover svg { fill: #ffffff; }

nav {
  background: var(--black);
  border-bottom: 1px solid #1f1f1f;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 70px;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
  width: 44px; height: 44px; background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-main); font-weight: 800; font-size: 20px; color: var(--black);
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text strong { 
  font-family: var(--font-main); 
  font-weight: 800; 
  font-size: 22px; 
  color: var(--white); 
  text-transform: uppercase; 
  letter-spacing: -0.02em;
}
.logo-text span { 
  font-family: var(--font-main);
  font-size: 10px; 
  color: var(--orange); 
  letter-spacing: 2px; 
  text-transform: uppercase; 
  font-weight: 500; 
}

.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links a {
  display: block; 
  padding: 0 20px; 
  height: 70px; 
  line-height: 70px;
  color: var(--white); 
  text-decoration: none; 
  font-family: var(--font-main);
  font-weight: 500; 
  font-size: 14px; 
  letter-spacing: 0.02em;
  transition: 0.2s; 
  position: relative;
}
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--orange); transition: width 0.3s; }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--orange); 
  color: var(--black) !important; 
  padding: 10px 22px !important;
  height: auto !important; 
  line-height: normal !important; 
  border-radius: 3px; 
  margin-top: 16px !important; 
  margin-left: 15px;
  font-weight: 600 !important;
}

/* ─── SCORES TICKER ─── */
.scores-bar { background: var(--dark2); border-bottom: 1px solid #222; overflow: hidden; }
.scores-inner { display: flex; align-items: center; position: relative; }
.scores-label { 
  background: var(--orange); 
  color: var(--black); 
  font-family: var(--font-main); 
  font-weight: 700; 
  font-size: 11px; 
  padding: 12px 20px; 
  white-space: nowrap; 
  letter-spacing: 0.05em;
}
.scores-scroll { display: flex; overflow-x: auto; scrollbar-width: none; }
.score-item { 
  display: flex; 
  align-items: center; 
  gap: 14px; 
  padding: 10px 24px; 
  border-right: 1px solid #2a2a2a; 
  white-space: nowrap; 
  color: white;
  font-weight: 400;
  font-size: 13px;
}
.score-result { 
  font-family: var(--font-main); 
  font-weight: 700; 
  font-size: 16px; 
  color: var(--orange); 
}

/* ─── ΛΕΠΤΟΜΕΡΕΙΕΣ ΔΙΑΤΑΞΗΣ ─── */
.bg-black { background: var(--black); }
.section { max-width: 1300px; margin: 0 auto; padding: 50px 20px; }
.empty-msg { color: var(--gray); font-size: 13px; font-style: italic; }

/* ─── PORTAL HERO ─── */
.portal-hero-wrapper {
  display: flex;
  flex-direction: row;
  gap: 2px;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #222;
  height: 500px;
}
.portal-hero-main { flex: 0 0 60%; position: relative; }
.hero-big-post {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  cursor: pointer;
  position: relative;
}
.hero-big-post::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.0) 100%);
}
.hero-content-box { max-width: 600px; z-index: 2; position: relative; }
.hero-cat {
  font-family: var(--font-main); 
  font-weight: 600; 
  font-size: 12px; 
  color: var(--orange);
  border-bottom: 2px solid var(--orange); 
  padding-bottom: 3px; 
  margin-bottom: 12px; 
  display: inline-block;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-title {
  font-family: var(--font-main); 
  font-weight: 300; 
  font-size: 38px;        /* ← από 44px σε 32px */
  line-height: 1.2; 
  color: var(--white); 
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.hero-excerpt { 
  font-size: 14px; 
  color: #ffffff !important; 
  line-height: 1.6;
  font-weight: 400;
}

/* 2x2 grid δεξιά */
.portal-hero-strip {
  flex: 0 0 40%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  background: #000;
}
.hero-small-post {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background: var(--dark3);
}
.hero-small-img {
  width: 100%; height: 100%; 
  background-size: cover; 
  background-position: center; 
  transition: transform 0.4s;
}
.hero-small-post:hover .hero-small-img { transform: scale(1.08); }
.hero-small-overlay {
  position: absolute; 
  inset: 0; 
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.1) 100%); 
  display: flex; 
  align-items: flex-end; 
  padding: 14px;
}
.hero-small-title {
  font-family: var(--font-main); 
  font-weight: 500; 
  font-size: 14px; 
  color: var(--white); 
  line-height: 1.3;
  letter-spacing: -0.01em;
}
@media (max-width: 600px) {
  .hero-small-title {
    font-size: 11px !important;
    line-height: 1.2 !important;
  }
}
/* ─── SIDEBAR WIDGETS ─── */
.sidebar-widget { background: var(--dark2); border: 1px solid #1f1f1f; overflow: hidden; border-radius: 6px; }
.sidebar-widget-title { 
  background: var(--dark3); 
  font-family: var(--font-main); 
  font-weight: 600; 
  font-size: 13px; 
  padding: 12px 16px; 
  color: var(--orange); 
  border-bottom: 1px solid #222;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.sidebar-widget-body { padding: 16px; }
.sidebar-news-item { 
  display: flex; 
  gap: 12px; 
  padding: 12px 0; 
  border-bottom: 1px solid #1a1a1a; 
  cursor: pointer; 
  transition: 0.2s; 
}
.sidebar-news-item:hover { transform: translateX(5px); }
.sidebar-news-item:last-child { border-bottom: none; }
.sidebar-news-img { 
  width: 65px; 
  height: 50px; 
  background: var(--dark3); 
  border-radius: 4px; 
  overflow: hidden; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
}
.sidebar-news-img img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-news-title { 
  font-family: var(--font-main); 
  font-weight: 500; 
  font-size: 14px; 
  color: var(--white); 
  margin-bottom: 4px; 
  line-height: 1.3; 
}

/* ─── ALL ARTICLES GRID ─── */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.view-all-btn {
  display: inline-block;
  background: var(--dark2);
  color: var(--white);
  border: 1px solid #333;
  padding: 14px 35px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.view-all-btn:hover {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
  transform: translateY(-3px);
}
.article-grid-card {
  background: var(--dark2); 
  border: 1px solid #1f1f1f; 
  border-radius: 6px; 
  overflow: hidden; 
  cursor: pointer; 
  transition: transform 0.2s, border-color 0.2s; 
  display: flex; 
  flex-direction: column;
}
.article-grid-card:hover { transform: translateY(-4px); border-color: var(--orange); }
.article-grid-img {
  width: 100%; 
  aspect-ratio: 16/9; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  position: relative; 
  background: var(--dark3);
}
.article-grid-cat {
  position: absolute; 
  bottom: 10px; 
  left: 10px; 
  background: var(--orange); 
  color: var(--black); 
  font-family: var(--font-main); 
  font-weight: 600; 
  font-size: 10px; 
  padding: 3px 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.img-label { 
  font-family: var(--font-main); 
  font-weight: 700; 
  font-size: 11px; 
  letter-spacing: 0.15em; 
  color: var(--gray);
  text-transform: uppercase;
}
.article-grid-body { padding: 15px; display: flex; flex-direction: column; flex: 1; }
.article-grid-title { 
  font-family: var(--font-main); 
  font-weight: 500; 
  font-size: 15px; 
  color: var(--white); 
  margin-bottom: 10px; 
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.article-grid-date { 
  margin-top: auto; 
  font-size: 11px; 
  color: var(--gray);
  font-weight: 400;
}

/* ─── STANDINGS ─── */
.table-wrapper { overflow-x: auto; background: var(--dark3); border-radius: 8px; border: 1px solid #2a2a2a; }
.standings-table { 
  width: 100%; 
  border-collapse: collapse; 
  font-size: 14px; 
  white-space: nowrap;
  font-family: var(--font-main);
}
.standings-table th { 
  background: #111; 
  font-family: var(--font-main); 
  font-weight: 600; 
  font-size: 12px; 
  color: var(--gray); 
  padding: 16px 20px; 
  text-align: left;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.standings-table td { 
  padding: 14px 20px; 
  border-bottom: 1px solid #222; 
  color: var(--gray-light); 
  transition: background 0.2s;
  font-weight: 400;
}
.standings-table tr:hover td { background: #1a1a1a; }
.standings-table .rank { 
  font-family: var(--font-main); 
  font-weight: 700; 
  font-size: 16px; 
  color: var(--gray); 
}
.standings-table .team-name { 
  font-family: var(--font-main); 
  font-weight: 600; 
  font-size: 15px; 
  color: var(--white);
  letter-spacing: -0.01em;
}
.standings-table tr.row-playoffs td { background: rgba(244, 123, 32, 0.05); }
.standings-table tr.row-playoffs td:first-child { border-left: 3px solid var(--orange); color: var(--orange); }
.standings-table tr.row-playin td { background: rgba(212, 255, 0, 0.03); }
.standings-table tr.row-playin td:first-child { border-left: 3px solid #D4FF00; color: #D4FF00; }
.form-text { display: flex !important; gap: 4px; align-items: center; justify-content: flex-start; }
.form-box { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  width: 22px; 
  height: 22px; 
  border-radius: 3px; 
  font-family: var(--font-main); 
  font-weight: 700; 
  font-size: 11px; 
  color: #fff; 
}
.form-box.w { background-color: #4CAF50; }
.form-box.l { background-color: #F44336; }

/* ─── BRACKET (ROAD TO F4) ─── */
.bracket-container { 
  background: linear-gradient(135deg, #3A0D45 0%, #1a0521 100%); 
  padding: 40px; 
  border-radius: 12px; 
  border: 1px solid rgba(212, 255, 0, 0.2); 
}
.bracket-label { 
  font-family: var(--font-main); 
  font-weight: 700; 
  font-size: 13px; 
  color: #D4FF00; 
  text-align: center; 
  margin-bottom: 30px; 
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.bracket-match { display: flex; align-items: center; margin-bottom: 25px; }
.match-tag { 
  background: #D4FF00; 
  color: #000; 
  font-family: var(--font-main); 
  font-weight: 700; 
  font-size: 10px; 
  padding: 10px 4px; 
  writing-mode: vertical-rl; 
  border-radius: 2px; 
  line-height: 1;
  letter-spacing: 0.05em;
}
.match-tag.right { margin-left: 10px; }
.teams { flex: 1; background: rgba(0, 0, 0, 0.6); border-radius: 4px; overflow: hidden; }
.bracket-team { 
  padding: 12px 15px; 
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
  font-family: var(--font-main); 
  font-weight: 500; 
  font-size: 14px; 
  color: #fff;
  letter-spacing: -0.01em;
}
.bracket-column { display: flex; flex-direction: column; justify-content: space-around; }

/* ─── NEWSLETTER & FOOTER ─── */
.newsletter { background: var(--orange); padding: 60px 40px; text-align: center; color: black; }
.newsletter h2 { 
  font-family: var(--font-main); 
  font-weight: 300; 
  font-size: 42px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
footer { background: #060606; padding: 60px 40px 30px; border-top: 1px solid #1f1f1f;}
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-col h4 { 
  font-family: var(--font-main); 
  font-weight: 600; 
  color: var(--orange); 
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 13px;
}
.footer-col ul { list-style: none; }
.footer-col a { 
  color: #ffffff; 
  text-decoration: none; 
  font-size: 13px; 
  font-weight: 400;
  transition: 0.2s; 
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom { 
  max-width: 1200px; 
  margin: 0 auto; 
  border-top: 1px solid #1a1a1a; 
  padding-top: 24px; 
  display: flex; 
  justify-content: space-between; 
  font-size: 12px; 
  color: #ffffff;
  font-weight: 400;
}

/* ─── SOCIAL ICONS ─── */
.footer-socials { display: flex; gap: 12px; align-items: center; }
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--dark2);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.social-btn svg { width: 18px; height: 18px; fill: var(--gray-light); transition: all 0.3s ease; }
.social-btn:hover { background: var(--orange); transform: translateY(-3px); }
.social-btn:hover svg { fill: var(--black); }

/* ─── ΣΕΛΙΔΑ ΟΜΑΔΩΝ ─── */
.teams-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}
.team-card-link {
  background: var(--dark2);
  border: 1px solid #1f1f1f;
  border-radius: 8px;
  padding: 25px 15px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.team-card-link:hover { border-color: var(--orange); transform: translateY(-5px); background: var(--dark3); }
.team-card-link img { width: 90px; height: 90px; object-fit: contain; margin-bottom: 15px; }
.team-card-link h3 {
  color: var(--white);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 17px;
  margin: 0;
  letter-spacing: -0.01em;
}

/* ─── ARTICLE PAGE (ΤΙΤΛΟΣ ΑΡΘΡΟΥ) ─── */
.article-page-title {
  font-family: var(--font-main) !important;
  font-size: 38px !important;
  font-weight: 300 !important;
  line-height: 1.25 !important;
  margin-bottom: 16px !important;
  color: var(--white) !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .bracket-container { flex-direction: column; align-items: stretch !important; }
  .bracket-column { margin-top: 20px !important; margin-left: 0 !important; }
  .match-tag { writing-mode: horizontal-tb; padding: 4px 10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .articles-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .all-articles-wrapper > div { grid-template-columns: 1fr !important; }
  .trending-sidebar-col { width: 100%; }
  .sidebar-widget { margin-top: 0 !important; }
}

@media (max-width: 900px) {
  .portal-hero-wrapper { flex-direction: column; height: auto; }
  .portal-hero-main { flex: none; height: 350px; }
  .portal-hero-strip { flex: none; grid-template-columns: 1fr 1fr; height: 200px; }
  .hero-big-post { padding: 30px 20px; }
  .hero-title { font-size: 32px; }
  .bottom-widgets { grid-template-columns: 1fr !important; }
  .article-page-title { font-size: 30px !important; }
}

@media (max-width: 640px) {
  .articles-grid { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .all-articles-wrapper > div { grid-template-columns: 1fr !important; }
  .article-page-title { font-size: 26px !important; }
}

/* ─── LOGO (BRAND - ΔΙΑΤΗΡΟΥΜΕ IMPACT) ─── */
.onlyel-logo-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  text-decoration: none !important;
  height: 70px !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
  width: max-content !important;
}
.onlyel-ball {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  max-width: 52px !important;
  flex-shrink: 0 !important;
  filter: drop-shadow(0 0 6px rgba(255,140,0,0.7)) !important;
  background: none !important;
  border-radius: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.onlyel-ball img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
  border-radius: 50% !important;
}
.onlyel-textblock {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
  white-space: nowrap !important;
}
.onlyel-nly {
  font-family: Impact, "Arial Black", sans-serif !important;
  font-size: 30px !important;
  color: #ffffff !important;
  letter-spacing: 2px !important;
  line-height: 1 !important;
  text-shadow: none !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  display: block !important;
}
.onlyel-elfans {
  font-family: Impact, "Arial Black", sans-serif !important;
  font-size: 20px !important;
  color: #E8610A !important;
  letter-spacing: 4px !important;
  line-height: 1 !important;
  text-shadow: 1px 1px 0 #7A3000 !important;
  margin-top: 3px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  display: block !important;
}
.onlyel-tag {
  font-family: var(--font-main) !important;
  font-size: 9px !important;
  font-weight: 500 !important;
  color: rgba(240,234,255,0.5) !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  margin-top: 3px !important;
  display: block !important;
}

/* ─── ARTICLE CONTENT ─── */
.article-page-content,
.article-page-content p,
.article-page-content span,
.article-page-content li,
.article-page-content div,
.article-page-content a,
.article-page-content strong,
.article-page-content em,
.entry-content,
.entry-content p,
.entry-content span,
.entry-content li,
.entry-content div,
.entry-content strong,
.entry-content em {
  color: #ffffff !important;
  font-family: var(--font-main) !important;
}
.article-page-content a:hover,
.entry-content a:hover { color: var(--orange) !important; }

/* ─── MOBILE MENU ─── */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.hamburger-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger-btn.active span:nth-child(1) { transform: translate(0, 11px) rotate(45deg); }
.hamburger-btn.active span:nth-child(2) { opacity: 0; }
.hamburger-btn.active span:nth-child(3) { transform: translate(0, -11px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
}
.nav-overlay.active { display: block; }
body.menu-open { overflow: hidden; }

@media (max-width: 900px) {
  .hamburger-btn { display: flex; }
  nav { padding: 0 20px !important; }
  nav ul.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #1A0F3A;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 90px 20px 30px;
    margin: 0;
    gap: 0;
    transition: right 0.3s ease;
    z-index: 999;
    box-shadow: -4px 0 20px rgba(0,0,0,0.5);
    overflow-y: auto;
    border-left: 1px solid rgba(232, 97, 10, 0.3);
  }
  nav ul.nav-links.active { right: 0; }
  nav ul.nav-links li { width: 100%; height: auto; }
  nav ul.nav-links li a {
    display: block !important;
    width: 100%;
    height: auto !important;
    line-height: 1.4 !important;
    padding: 15px 0 !important;
    font-size: 16px !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin: 0 !important;
  }
  nav ul.nav-links li a::after { display: none !important; }
  nav ul.nav-links li a.nav-cta {
    margin: 20px 0 0 0 !important;
    padding: 12px 20px !important;
    height: auto !important;
    line-height: normal !important;
    text-align: center;
    border-radius: 4px;
    border-bottom: none !important;
  }
}


/* ============================================================
   ARTICLE TAGS SECTION (τέλος άρθρου)
   ============================================================ */

.article-tags-section {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #2a2a2a;
}

.article-tags-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    font-family: var(--font-main);
    text-transform: uppercase;
}

.article-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.article-tag-badge {
    display: inline-block;
    padding: 8px 18px;
    background: #2a2a2a;
    color: var(--white);
    border: 1px solid #3a3a3a;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: var(--font-main);
}

.article-tag-badge:hover {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
    transform: translateY(-1px);
}
/* ============================================================
   FOOTER MODALS
   ============================================================ */

.footer-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-modal.is-open {
    display: flex;
    opacity: 1;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.footer-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
}

.footer-modal-content {
    position: relative;
    background: #1a1a1a;
    color: #fff;
    width: 92%;
    max-width: 640px;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 16px;
    padding: 36px 32px 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 102, 0, 0.2);
    animation: modalSlideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: var(--font-main);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.footer-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: transparent;
    border: none;
    color: #aaa;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.footer-modal-close:hover {
    color: #fff;
    background: rgba(255, 102, 0, 0.2);
    transform: rotate(90deg);
}

.footer-modal-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--orange);
}

.footer-modal-icon {
    font-size: 32px;
    line-height: 1;
}

.footer-modal-header h2 {
    margin: 0;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    font-family: var(--font-main);
}

.footer-modal-body {
    color: #d8d8d8;
    line-height: 1.7;
    font-size: 15px;
}

.footer-modal-body p {
    margin: 0 0 14px 0;
}

.footer-modal-body h3 {
    color: var(--orange);
    font-size: 17px;
    font-weight: 700;
    margin: 22px 0 10px 0;
    font-family: var(--font-main);
}

.footer-modal-body ul {
    margin: 8px 0 14px 0;
    padding-left: 22px;
}

.footer-modal-body ul li {
    margin-bottom: 6px;
    color: #d8d8d8;
}

.footer-modal-body a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-modal-body a:hover {
    color: #ff8533;
    text-decoration: underline;
}

.footer-modal-body strong {
    color: #fff;
}

.footer-modal-note {
    background: rgba(255, 102, 0, 0.08);
    border-left: 3px solid var(--orange);
    padding: 14px 16px;
    border-radius: 0 8px 8px 0;
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.6;
}

/* CONTACT EMAIL BUTTON */
.contact-email-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: linear-gradient(135deg, #2a2a2a 0%, #333 100%);
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: 12px;
    text-decoration: none !important;
    color: #fff !important;
    margin: 18px 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-email-btn:hover {
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    border-color: #ff8533;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
}

.contact-email-icon {
    font-size: 26px;
}

.contact-email-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-email-label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-email-btn:hover .contact-email-label {
    color: rgba(255, 255, 255, 0.85);
}

.contact-email-value {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-top: 2px;
}

.contact-email-arrow {
    font-size: 20px;
    color: var(--orange);
    transition: transform 0.3s ease;
}

.contact-email-btn:hover .contact-email-arrow {
    color: #fff;
    transform: translateX(4px);
}

/* CONTACT DIVIDER */
.contact-divider {
    display: flex;
    align-items: center;
    margin: 24px 0 18px;
    color: #888;
    font-size: 13px;
}

.contact-divider::before,
.contact-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #444, transparent);
}

.contact-divider span {
    padding: 0 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* CONTACT SOCIAL LINKS */
.contact-social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.contact-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #2a2a2a;
    color: #fff !important;
    border-radius: 50%;
    border: 1px solid #3a3a3a;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.contact-social-link:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 102, 0, 0.4);
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .footer-modal-content {
        padding: 28px 22px 22px;
        max-height: 90vh;
    }

    .footer-modal-header h2 {
        font-size: 22px;
    }

    .footer-modal-icon {
        font-size: 26px;
    }

    .footer-modal-body {
        font-size: 14px;
    }

    .footer-modal-body h3 {
        font-size: 15px;
    }

    .contact-email-value {
        font-size: 15px;
        word-break: break-all;
    }
}

/* SCROLLBAR */
.footer-modal-content::-webkit-scrollbar {
    width: 8px;
}

.footer-modal-content::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.footer-modal-content::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 4px;
}

.footer-modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--orange);
}


/* ============================================================
   FOOTER MODALS
   ============================================================ */

.footer-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-modal.is-open {
    display: flex;
    opacity: 1;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.footer-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
}

.footer-modal-content {
    position: relative;
    background: #1a1a1a;
    color: #fff;
    width: 92%;
    max-width: 640px;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 16px;
    padding: 36px 32px 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 102, 0, 0.2);
    animation: modalSlideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: var(--font-main);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.footer-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: transparent;
    border: none;
    color: #aaa;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.footer-modal-close:hover {
    color: #fff;
    background: rgba(255, 102, 0, 0.2);
    transform: rotate(90deg);
}

.footer-modal-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--orange);
}

.footer-modal-icon {
    font-size: 32px;
    line-height: 1;
}

.footer-modal-header h2 {
    margin: 0;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    font-family: var(--font-main);
}

.footer-modal-body {
    color: #d8d8d8;
    line-height: 1.7;
    font-size: 15px;
}

.footer-modal-body p {
    margin: 0 0 14px 0;
}

.footer-modal-body h3 {
    color: var(--orange);
    font-size: 17px;
    font-weight: 700;
    margin: 22px 0 10px 0;
    font-family: var(--font-main);
}

.footer-modal-body ul {
    margin: 8px 0 14px 0;
    padding-left: 22px;
}

.footer-modal-body ul li {
    margin-bottom: 6px;
    color: #d8d8d8;
}

.footer-modal-body a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-modal-body a:hover {
    color: #ff8533;
    text-decoration: underline;
}

.footer-modal-body strong {
    color: #fff;
}

.footer-modal-note {
    background: rgba(255, 102, 0, 0.08);
    border-left: 3px solid var(--orange);
    padding: 14px 16px;
    border-radius: 0 8px 8px 0;
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.6;
}

/* CONTACT EMAIL BUTTON */
.contact-email-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: linear-gradient(135deg, #2a2a2a 0%, #333 100%);
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: 12px;
    text-decoration: none !important;
    color: #fff !important;
    margin: 18px 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-email-btn:hover {
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    border-color: #ff8533;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
}

.contact-email-icon {
    font-size: 26px;
}

.contact-email-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-email-label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-email-btn:hover .contact-email-label {
    color: rgba(255, 255, 255, 0.85);
}

.contact-email-value {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-top: 2px;
}

.contact-email-arrow {
    font-size: 20px;
    color: var(--orange);
    transition: transform 0.3s ease;
}

.contact-email-btn:hover .contact-email-arrow {
    color: #fff;
    transform: translateX(4px);
}

/* CONTACT DIVIDER */
.contact-divider {
    display: flex;
    align-items: center;
    margin: 24px 0 18px;
    color: #888;
    font-size: 13px;
}

.contact-divider::before,
.contact-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #444, transparent);
}

.contact-divider span {
    padding: 0 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* CONTACT SOCIAL LINKS */
.contact-social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.contact-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #2a2a2a;
    color: #fff !important;
    border-radius: 50%;
    border: 1px solid #3a3a3a;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.contact-social-link:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 102, 0, 0.4);
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .footer-modal-content {
        padding: 28px 22px 22px;
        max-height: 90vh;
    }

    .footer-modal-header h2 {
        font-size: 22px;
    }

    .footer-modal-icon {
        font-size: 26px;
    }

    .footer-modal-body {
        font-size: 14px;
    }

    .footer-modal-body h3 {
        font-size: 15px;
    }

    .contact-email-value {
        font-size: 15px;
        word-break: break-all;
    }
}

/* SCROLLBAR */
.footer-modal-content::-webkit-scrollbar {
    width: 8px;
}

.footer-modal-content::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.footer-modal-content::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 4px;
}

.footer-modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--orange);
}