/* ============================================
   NEWSIT.GR STYLE - GREEK NEWS DESIGN
   ============================================ */

/* CSS Variables */
:root {
    --primary-red: #c41e22;
    --primary-dark: #a11a1d;
    --text-dark: #1a1a1a;
    --dark-accent: #c73535;
    --text-gray: #666;
    --text-light: #999;
    --bg-light: #f8f8f8;
    --bg-white: #fff;
    --border-light: #e5e5e5;
    --footer-bg: #f5f5f5;
    --link-red: #c41e22;
    --shadow-soft: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-medium: 0 4px 16px rgba(0,0,0,0.12);
    --font-main: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    --font-article: Tahoma, Geneva, sans-serif;
    --font-title: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition-fast: 0.2s ease;
    --max-width: 1400px;
}

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

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    -webkit-font-smoothing: antialiased;
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ============================================
   TOP DISCLOSURE BAR
   ============================================ */
.top-disclosure-bar {
    background: #f0f0f0;
    padding: 6px 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-light);
}

.disclosure-btn {
    color: var(--primary-red);
    font-size: 12px;
    text-decoration: underline;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background: var(--bg-white);
    border-bottom: 3px solid var(--primary-red);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-soft);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-btn,
.search-btn {
    color: var(--text-dark);
    padding: 8px;
    border-radius: 4px;
    transition: background var(--transition-fast);
}

.menu-btn:hover,
.search-btn:hover {
    background: var(--bg-light);
}

.logo {
    font-size: 36px;
    font-family: "pf-grand-gothik-variable", sans-serif;
    font-variation-settings: "ital" 0, "wght" 900, "wdth" 125;
    letter-spacing: -1px;
    display: flex;
}

.logo-news {
    color: var(--text-dark);
}

.logo-it {
    color: var(--primary-red);
}

.header-right {
    display: flex;
    align-items: center;
}

.weather-widget {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-gray);
    cursor: pointer;
}

.weather-city {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.weather-city::after {
    content: '∨';
    font-size: 10px;
}

.weather-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.weather-temp {
    font-weight: 600;
    color: var(--text-dark);
}

.header-headline {
    display: none;
    background: var(--primary-red);
    color: white;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    text-align: center;
}

/* Scrolled header state */
.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.header.scrolled .header-headline {
    display: block;
}

.header.scrolled .header-container {
    padding: 8px 20px;
}

.header.scrolled .logo {
    font-size: 28px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 5px;
    overflow-x: auto;
    scrollbar-width: none;
}

.nav-container::-webkit-scrollbar {
    display: none;
}

.nav-link {
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-link.active {
    color: var(--primary-red);
    border-bottom-color: var(--primary-red);
}

/* ============================================
   MAIN LAYOUT
   ============================================ */
.main-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 30px;
    position: relative;
}

/* ============================================
   FLOATING SOCIAL SHARE - EXACT NEWSIT.GR STYLE
   ============================================ */
.floating-share {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    z-index: 100;
    background: var(--bg-white);
    border-radius: 30px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
    width: fit-content;
    margin-bottom: 20px;
}

.floating-share .share-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all var(--transition-fast);
    background: transparent;
}

.floating-share .share-btn:hover {
    background: var(--bg-light);
}

.floating-share .comments-btn {
    background: var(--primary-red);
    color: white;
    border-radius: 30px;
    margin: 3px;
    width: 38px;
    height: 38px;
}

.floating-share .comments-btn:hover {
    background: var(--primary-dark);
}

.floating-share .share-icon-text {
    font-weight: 700;
    font-size: 20px;
    color: var(--text-dark);
    line-height: 1;
}

.floating-share .facebook-btn:hover .share-icon-text {
    color: #1877f2;
}

.floating-share .twitter-btn {
    color: var(--text-dark);
}

.floating-share .twitter-btn:hover {
    color: #000;
}

.floating-share .more-btn .share-icon-text {
    font-size: 24px;
    font-weight: 400;
}

/* ============================================
   LEFT SIDEBAR
   ============================================ */
.sidebar-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-article {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: box-shadow var(--transition-fast);
}

.sidebar-article:hover {
    box-shadow: var(--shadow-medium);
}

.sidebar-article img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.sidebar-article h4 {
    padding: 12px;
    font-size: 14px;
    font-family: "pf-grand-gothik-variable",sans-serif;
    font-variation-settings: "ital" 0, "wght" 600, "wdth" 105;
    line-height: 1.4;
    color: var(--text-dark);
}

.sidebar-article:hover h4 {
    color: var(--primary-red);
}

.sidebar-time {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px 12px;
    font-size: 12px;
    color: var(--text-light);
}

.time-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-red);
    border-radius: 50%;
}

/* ============================================
   ARTICLE CONTENT
   ============================================ */
.article-content {
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.article-header {
    padding: 30px 40px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-red);
    background: var(--bg-white);
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 6px 14px;
}

.category-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
}

.article-meta-top {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-gray);
}

.article-title {
    margin-top: 20px;
    font-size: 36px;
    line-height: 1.2;
    color: var(--text-dark);
    font-family: "pf-grand-gothik-variable",sans-serif;
    font-variation-settings: "ital" 0, "wght" 900, "wdth" 125;
    letter-spacing: -0.5px;
}

.article-subtitle {
    margin-top: 15px;
    font-size: 18px;
    font-style: italic;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Hero Image */
.article-hero {
    margin: 0;
}

.article-hero img {
    width: 100%;
    height: auto;
}

.article-hero figcaption {
    padding: 10px 40px;
    font-size: 13px;
    color: var(--text-light);
    background: #fafafa;
    border-bottom: 1px solid var(--border-light);
}

/* Article Body - SERIF FONT LIKE NEWSIT.GR */
.article-body {
    padding: 30px 40px;
    font-family: var(--font-article);
}

.article-body p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.85;
    color: var(--text-dark);
    font-family: var(--font-article);
}

.article-body h2 {
    margin: 35px 0 20px;
    font-size: 22px;
    color: var(--text-dark);
    font-family: "pf-grand-gothik-variable",sans-serif;
    font-variation-settings: "ital" 0, "wght" 800, "wdth" 115;
}

.inline-link,
.inline-link:visited,
.inline-link:active {
    color: var(--primary-red);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
    text-decoration-color: var(--primary-red);
}

.inline-link:hover {
    text-decoration-thickness: 3px;
}

.highlight {
    color: var(--dark-accent);
    position: relative;
    font-weight: 700;
    background: linear-gradient(0deg, rgba(0, 71, 255, 0.2) 0%, rgba(0, 71, 255, 0.2) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
}

/* Blockquote */
blockquote {
    margin: 25px 0;
    padding: 20px 25px;
    background: #fef7f7;
    border-left: 4px solid var(--primary-red);
    border-radius: 0 8px 8px 0;
}

blockquote p {
    margin-bottom: 0 !important;
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
}

blockquote cite {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-gray);
    font-style: normal;
}

/* Inline Images */
.inline-image {
    margin: 30px 0;
}

.inline-image img {
    width: 100%;
    border-radius: 8px;
}

.inline-image figcaption {
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
}

.product-image {
    max-width: 350px;
    margin: 30px auto;
}

/* Info Box */
.info-box {
    margin: 30px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

.info-box.warning {
    background: #fff8e6;
    border-color: #ffd54f;
}

.info-box h4 {
    margin-bottom: 10px;
    font-size: 16px;
    font-family: "pf-grand-gothik-variable",sans-serif;
    font-variation-settings: "ital" 0, "wght" 700, "wdth" 110;
    color: var(--primary-red);
}

.info-box p {
    margin-bottom: 0 !important;
}

.info-box.results {
    background: #fef2f2;
    border-color: #fca5a5;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.result-image img {
    border-radius: 8px;
}

.result-image figcaption {
    margin-top: 8px;
    font-size: 13px;
    color: var(--text-gray);
    text-align: center;
}

/* Benefit List */
.benefit-list {
    margin: 20px 0;
    list-style: none;
}

.benefit-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.benefit-list li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #22c55e;
    font-size: 18px;
}

.benefit-list.timeline li {
    padding-left: 32px;
    padding-bottom: 20px;
    margin-bottom: 0;
}

.benefit-list.timeline li i {
    left: 0;
}

/* Diagram */
.diagram-wrap {
    margin: 30px 0;
    padding: 25px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
}

.diagram-title {
    font-size: 14px;
    font-family: "pf-grand-gothik-variable",sans-serif;
    font-variation-settings: "ital" 0, "wght" 700, "wdth" 110;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.diagram-description {
    font-size: 13px;
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.diagram-bars {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 40px;
    height: 200px;
    padding: 0 20px;
}

.bar {
    width: 80px;
    background: linear-gradient(180deg, var(--primary-red) 0%, #e85558 100%);
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10px;
    color: white;
    font-weight: 700;
    font-size: 16px;
    transition: height 0.5s ease;
}

.bar.sport {
    background: linear-gradient(180deg, #3b82f6 0%, #60a5fa 100%);
}

.bar.diet {
    background: linear-gradient(180deg, #f59e0b 0%, #fbbf24 100%);
}

.diagram-labels {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 10px;
}

.diagram-labels span {
    width: 80px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

/* ============================================
   QUIZ SECTION
   ============================================ */
.quiz-section {
    margin: 40px 0;
}

.quiz-container {
    background: #fff;
    border: 2px solid var(--primary-red);
    border-radius: 16px;
    overflow: hidden;
}

.quiz-header {
    padding: 25px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.quiz-badge {
    display: inline-block;
    padding: 5px 15px;
    background: var(--primary-red);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.quiz-title {
    font-size: 22px;
    font-family: "pf-grand-gothik-variable",sans-serif;
    font-variation-settings: "ital" 0, "wght" 800, "wdth" 115;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.quiz-subtitle {
    font-size: 14px;
    color: var(--text-gray);
}

.quiz-progress {
    padding: 25px;
    background: #fff;
    border-bottom: 1px solid var(--border-light);
}

.quiz-progress-bar {
    height: 8px;
    background: #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
}

.quiz-progress-fill {
    height: 100%;
    background: var(--primary-red);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.quiz-steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 15px;
}

.quiz-step-num {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5e5e5;
    color: var(--text-gray);
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
}

.quiz-step-num.active {
    background: var(--primary-red);
    color: white;
}

.quiz-body {
    padding: 30px;
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
}

.quiz-question {
    font-size: 20px;
    font-family: "pf-grand-gothik-variable",sans-serif;
    font-variation-settings: "ital" 0, "wght" 700, "wdth" 110;
    text-align: center;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.quiz-option {
    cursor: pointer;
}

.quiz-option input {
    display: none;
}

.quiz-option-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    transition: all var(--transition-fast);
}

.quiz-option:hover .quiz-option-box {
    border-color: var(--primary-red);
    background: #fff8f8;
}

.quiz-option input:checked + .quiz-option-box {
    border-color: var(--primary-red);
    background: #fef2f2;
    box-shadow: 0 0 0 3px rgba(196, 30, 34, 0.1);
}

.quiz-option-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.quiz-option-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

/* Quiz Form Step */
.quiz-form-step .quiz-success {
    text-align: center;
    margin-bottom: 25px;
}

.quiz-success-icon {
    font-size: 50px;
    display: block;
    margin-bottom: 15px;
}

.quiz-success h4 {
    font-size: 22px;
    font-family: "pf-grand-gothik-variable",sans-serif;
    font-variation-settings: "ital" 0, "wght" 800, "wdth" 115;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.quiz-success p {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
}

.quiz-product-image {
    max-width: 200px;
    margin: 20px auto;
}

.quiz-timer-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.quiz-timer-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.quiz-timer {
    display: flex;
    align-items: center;
    gap: 5px;
}

.quiz-timer-num {
    background: var(--primary-red);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 700;
    min-width: 45px;
    text-align: center;
}

.quiz-timer-sep {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-red);
}

.quiz-prices {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.quiz-price-old {
    font-size: 24px;
    color: var(--text-light);
    text-decoration: line-through;
}

.quiz-price-new {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-red);
}

.quiz-order-form {
    max-width: 400px;
    margin: 0 auto;
}

.quiz-form-group {
    margin-bottom: 15px;
}

.quiz-input {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    transition: border-color var(--transition-fast);
}

.quiz-input:focus {
    outline: none;
    border-color: var(--primary-red);
}

.quiz-submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary-red);
    color: white;
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background var(--transition-fast);
}

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

.quiz-stock {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-gray);
}

.quiz-stock-icon {
    font-size: 18px;
}

/* ============================================
   ARTICLE TAGS
   ============================================ */
.article-tags {
    padding: 25px 40px;
    border-top: 1px solid var(--border-light);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.tag {
    padding: 8px 16px;
    background: var(--bg-light);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all var(--transition-fast);
}

.tag:hover {
    background: var(--primary-red);
    color: white;
}

/* ============================================
   SHARE BAR
   ============================================ */
.share-bar {
    padding: 20px 40px;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.share-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
}

.share-btn-bottom {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-gray);
    border: 1px solid var(--border-light);
    transition: all var(--transition-fast);
}

.share-btn-bottom.facebook:hover {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

.share-btn-bottom.twitter:hover {
    background: #000;
    color: white;
    border-color: #000;
}

.share-btn-bottom.whatsapp:hover {
    background: #25d366;
    color: white;
    border-color: #25d366;
}

.share-btn-bottom.more:hover {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
}

/* ============================================
   GOOGLE NEWS BOX
   ============================================ */
.google-news-box {
    margin: 0 40px 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.google-news-box p {
    font-size: 15px;
    color: var(--text-gray);
    margin: 0;
}

/* ============================================
   POPULAR SECTION
   ============================================ */
.popular-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 30px 40px;
    border-top: 1px solid var(--border-light);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-family: "pf-grand-gothik-variable",sans-serif;
    font-variation-settings: "ital" 0, "wght" 800, "wdth" 115;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background: var(--primary-red);
}

.popular-list {
    list-style: none;
    counter-reset: popular;
}

.popular-list li {
    counter-increment: popular;
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.popular-list li::before {
    content: counter(popular);
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
}

.popular-list li a {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-dark);
}

.popular-list li a:hover {
    color: var(--primary-red);
}

.commented-list {
    list-style: none;
}

.commented-list li {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.comment-count {
    flex-shrink: 0;
    min-width: 35px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-red);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
}

.commented-list li a {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-dark);
}

.commented-list li a:hover {
    color: var(--primary-red);
}

/* ============================================
   RELATED SECTION
   ============================================ */
.related-section {
    padding: 30px 40px;
    border-top: 1px solid var(--border-light);
}

.related-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.related-card {
    display: flex;
    gap: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-light);
}

.related-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-text {
    flex: 1;
}

.related-time {
    font-size: 13px;
    color: var(--text-light);
    display: block;
    margin-bottom: 8px;
}

.related-card h4 {
    font-size: 18px;
    font-family: "pf-grand-gothik-variable",sans-serif;
    font-variation-settings: "ital" 0, "wght" 700, "wdth" 110;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 10px;
    transition: color var(--transition-fast);
}

.related-card:hover h4 {
    color: var(--primary-red);
}

.related-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

.related-card img {
    width: 280px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}


/* ============================================
   FOOTER - LIGHT GRAY LIKE NEWSIT.GR
   ============================================ */
.footer {
    background: #f5f5f5;
    color: var(--text-dark);
    margin-top: 50px;
}

.footer-top {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.footer-logo {
    font-size: 48px;
    font-family: "pf-grand-gothik-variable", sans-serif;
    font-variation-settings: "ital" 0, "wght" 900, "wdth" 125;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo .logo-news {
    color: var(--text-dark);
}

.footer-logo .logo-it {
    color: var(--primary-red);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 18px;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
}

.footer-nav {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
}

.footer-nav-left,
.footer-nav-right {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
    max-width: 40%;
}

.footer-nav-left {
    justify-content: flex-end;
    text-align: right;
}

.footer-nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--primary-red);
}

.footer-logo-n {
    font-size: 120px;
    font-family: "pf-grand-gothik-variable", sans-serif;
    font-variation-settings: "ital" 0, "wght" 900, "wdth" 125;
    color: var(--primary-red);
    opacity: 0.15;
    line-height: 1;
}

.footer-links {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 25px 20px;
    display: flex;
    justify-content: center;
    gap: 40px;
    border-bottom: 1px solid var(--border-light);
}

.footer-links a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: underline;
}

.footer-links a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-gray);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mht-badge {
    background: #4a90d9;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.footer-terms {
    display: flex;
    gap: 20px;
}

.footer-terms a,
.footer-terms .pr-btn {
    color: var(--text-gray);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
}

.footer-terms a:hover,
.footer-terms .pr-btn:hover {
    color: var(--primary-red);
}

/* ============================================
   MODALS
   ============================================ */
.modals-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modals-wrapper.active {
    display: flex;
}

.pr-modal {
    background: var(--bg-white);
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 12px;
    padding: 40px;
    position: relative;
    display: none;
}

.pr-modal.active {
    display: block;
}

.close-pr-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    font-size: 18px;
    color: var(--text-gray);
}

.close-pr-modal:hover {
    background: var(--primary-red);
    color: white;
}

.pr-modal h1 {
    font-size: 24px;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.pr-modal h2 {
    font-size: 18px;
    margin: 25px 0 10px;
    color: var(--text-dark);
}

.pr-modal p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.pr-modal ul {
    margin: 15px 0;
    padding-left: 25px;
}

.pr-modal li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.sub-h2-text {
    text-align: center;
    font-weight: 600;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .main-container {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 0;
    }

    .sidebar-left {
        display: none;
    }

    .article-content {
        border-radius: 0;
        box-shadow: none;
    }

    .floating-share {
        position: fixed;
        bottom: 20px;
        left: 50%;
        top: auto;
        transform: translateX(-50%);
        flex-direction: row;
        margin-bottom: 0;
        z-index: 100;
    }

    .floating-share .share-btn {
        border-bottom: none;
        border-right: 1px solid var(--border-light);
    }

    .floating-share .share-btn:last-child {
        border-right: none;
    }

    .article-title {
        font-size: 26px;
    }

    .article-header,
    .article-body,
    .article-tags,
    .share-bar,
    .popular-section,
    .related-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .quiz-options {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .quiz-option-box {
        padding: 14px 16px;
        flex-direction: row;
        justify-content: flex-start;
        gap: 12px;
    }

    .quiz-option-icon {
        font-size: 24px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .quiz-option-text {
        font-size: 15px;
        text-align: left;
    }

    .popular-section {
        grid-template-columns: 1fr;
    }

    .related-card {
        flex-direction: column-reverse;
    }

    .related-card img {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 10px 15px;
    }

    .logo {
        font-size: 28px;
    }

    .weather-widget {
        display: flex;
        font-size: 12px;
        gap: 4px;
    }

    .weather-city::after {
        display: none;
    }

    .main-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-container {
        justify-content: flex-start;
        padding: 0 15px;
    }

    .nav-link {
        padding: 12px 14px;
        font-size: 14px;
    }

    .article-header {
        padding: 20px 15px;
    }

    .article-body {
        padding: 20px 15px;
    }

    .article-title {
        font-size: 26px;
    }

    .article-subtitle {
        font-size: 17px;
    }

    .article-body p {
        font-size: 16px;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        flex-direction: column;
        gap: 30px;
    }

    .footer-nav-left,
    .footer-nav-right {
        max-width: 100%;
        justify-content: center;
    }

    .footer-logo-n {
        font-size: 80px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-terms {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .article-header,
    .article-body,
    .article-tags,
    .share-bar,
    .popular-section,
    .related-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .article-header {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .article-body {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .article-hero figcaption {
        padding-left: 12px;
        padding-right: 12px;
    }

    .article-title {
        font-size: 24px;
    }

    .article-subtitle {
        font-size: 16px;
    }

    .quiz-body {
        padding: 15px 12px;
    }

    .quiz-header {
        padding: 15px 12px;
    }

    .quiz-title {
        font-size: 16px;
    }

    .quiz-question {
        font-size: 16px;
    }

    .nav-link {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* ============================================
   LOADING SKELETON ANIMATIONS
   ============================================ */
.skeleton-loading {
    position: relative;
    overflow: hidden;
    background: #e9ecef !important;
}

.skeleton-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: skeleton-shimmer 1.5s infinite;
}

@keyframes skeleton-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.sidebar-article.loading img,
.related-card.loading img {
    background: #e9ecef;
    position: relative;
    overflow: hidden;
}

.sidebar-article.loading img::before,
.related-card.loading img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #e9ecef, #f8f9fa, #e9ecef);
    animation: skeleton-shimmer 1.5s infinite;
}

.sidebar-article.loading h4,
.related-card.loading h4,
.popular-list.loading li a,
.commented-list.loading li a {
    background: #e9ecef;
    color: transparent !important;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.sidebar-article.loading h4::after,
.related-card.loading h4::after,
.popular-list.loading li a::after,
.commented-list.loading li a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: skeleton-shimmer 1.5s infinite;
}

.sidebar-article.loading .sidebar-time,
.related-card.loading .related-time,
.related-card.loading p {
    background: #e9ecef;
    color: transparent !important;
    border-radius: 4px;
    display: inline-block;
}


select {
    appearance: none;
    -webkit-appearance: none;
}