:root {
    --bg-deep: #050714;
    --white: #ffffff;
    --text-muted: #a0a6c0;
    --accent: #ff4d00;
    --accent-cyan: #00f0ff;
    --accent-purple: #7000ff;
    --accent-lime: #ccff00;
    --glass-surface: rgba(20, 25, 40, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: 20px;
    --border-radius-lg: 32px;
    --border-radius-sm: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; cursor: none; }

body { 
    background: var(--bg-deep); 
    color: var(--white); 
    font-family: 'Outfit', sans-serif; 
    overflow-x: hidden; 
    -webkit-font-smoothing: antialiased;
}

.bg-elements {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    z-index: -1; overflow: hidden; background: var(--bg-deep);
}
.bg-elements::before, .bg-elements::after {
    content: ''; position: absolute; width: 60vw; height: 60vw;
    border-radius: 50%; filter: blur(120px); opacity: 0.3;
    animation: auraFloat 20s infinite alternate ease-in-out;
}
.bg-elements::before { background: radial-gradient(circle, var(--accent-purple), transparent 70%); top: -20%; left: -20%; }
.bg-elements::after { background: radial-gradient(circle, var(--accent-cyan), transparent 70%); bottom: -20%; right: -20%; animation-delay: -10s; }

@keyframes auraFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

.grain {
    position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: 0.05;
    background-image: url('data:image/svg+xml,%3Csvg viewBox=%220 0 200 200%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cfilter id=%22noiseFilter%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.65%22 numOctaves=%223%22 stitchTiles=%22stitch%22/%3E%3C/filter%3E%3Crect width=%22100%25%22 height=%22100%25%22 filter=%22url(%23noiseFilter)%22/%3E%3C/svg%3E');
}

.cursor-blob { 
    width: 20px; height: 20px; background: var(--accent-cyan); 
    position: fixed; top: 0; left: 0; border-radius: 50%; pointer-events: none; z-index: 10000000; 
    mix-blend-mode: exclusion; transition: transform 0.1s ease, width 0.3s, height 0.3s; 
    box-shadow: 0 0 20px var(--accent-cyan);
}

.loader { position: fixed; inset: 0; background: var(--bg-deep); z-index: 1000000; display: flex; align-items: center; justify-content: center; }
.loader__content { width: 240px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.loader__text { font-size: 10px; font-weight: 900; letter-spacing: 5px; margin-bottom: 20px; color: var(--accent-cyan); text-shadow: 0 0 10px var(--accent-cyan); }
.loader__bar-bg { width: 100%; height: 2px; background: rgba(255,255,255,0.1); position: relative; overflow: hidden; border-radius: 2px; }
.loader__bar { position: absolute; left: 0; top: 0; height: 100%; width: 0%; background: var(--accent-cyan); box-shadow: 0 0 15px var(--accent-cyan); }
.enter-btn { margin-top: 30px; background: transparent; border: 1px solid var(--accent-cyan); color: var(--accent-cyan); padding: 12px 30px; font-size: 10px; font-weight: 700; letter-spacing: 3px; opacity: 0; display: none; transition: 0.3s; border-radius: 30px; box-shadow: 0 0 10px rgba(0,240,255,0.2); }
.enter-btn:hover { background: var(--accent-cyan); color: black; box-shadow: 0 0 30px var(--accent-cyan); }

.hud { position: fixed; inset: 0; padding: 40px; pointer-events: none; z-index: 10000; display: flex; flex-direction: column; justify-content: space-between; }
.hud__top { display: flex; justify-content: space-between; align-items: center; width: 100%; pointer-events: auto; }
.hud__bottom { display: flex; flex-direction: row; justify-content: space-between; align-items: flex-end; width: 100%; pointer-events: auto; }
.hud-status { text-align: right; color: var(--text-muted); font-size: 10px; letter-spacing: 2px; }

/* --- PREMIUM 3D LOGO PHYSICS --- */
.brand-logo {
    display: inline-block;
    mix-blend-mode: normal; 
    margin-right: 40px; 
}

.brand-logo img {
    /* Fluid typography: Ελάχιστο 100px, Ιδανικό 12vw, Μέγιστο 200px */
    width: clamp(100px, 12vw, 200px);
    height: auto;
    object-fit: contain;
    /* Immersive ease animation */
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.6s ease;
    will-change: transform;
}

/* Hover State - "Αιώρηση" */
.brand-logo:hover img {
    transform: translateY(-4px) scale(1.03) rotate(-1deg);
    filter: brightness(1.1);
}
/* -------------------------------- */

.nav-right { 
    display: flex; align-items: center; gap: 40px; 
    background: rgba(0,0,0,0.4); backdrop-filter: blur(10px); 
    padding: 10px 30px; border-radius: 50px; border: 1px solid var(--glass-border); 
}

.lang-switcher, .nav-menu { display: flex; gap: 20px; align-items: center; }

.nav-menu a, .lang-btn { text-decoration: none; color: var(--white); font-size: 11px; font-weight: 700; text-transform: uppercase; background: none; border: none; transition: 0.3s; padding: 5px; opacity: 0.7; }
.nav-menu a:hover, .nav-menu a.active { color: var(--accent-cyan); opacity: 1; text-shadow: 0 0 8px var(--accent-cyan); }
.lang-btn.active { opacity: 1; color: var(--accent-cyan); }
.nav-shop-btn { color: var(--accent-lime) !important; }

.back-link { text-decoration: none; color: var(--text-muted); font-size: 10px; font-weight: 700; letter-spacing: 2px; transition: color 0.3s; display: inline-block; margin-bottom: 20px; cursor: pointer; }
.back-link:hover { color: var(--accent-cyan); }

.audio-wrapper { display: flex; align-items: center; gap: 10px; height: 20px; cursor: pointer; }
.audio-visualizer { display: flex; align-items: flex-end; gap: 3px; height: 15px; }
.audio-visualizer span { width: 2px; height: 100%; background: var(--accent-cyan); transform-origin: bottom; transform: scaleY(0.2); transition: 0.3s; box-shadow: 0 0 5px var(--accent-cyan); }
.audio-visualizer.active span { animation: spike 0.5s infinite alternate; }
.audio-visualizer.active span:nth-child(2) { animation-delay: 0.1s; }
.audio-visualizer.active span:nth-child(3) { animation-delay: 0.2s; }
@keyframes spike { 0% { transform: scaleY(0.2); } 100% { transform: scaleY(1); } }

section { width: 100%; min-height: 100vh; position: relative; display: flex; align-items: center; z-index: 2; background: transparent; }
.container-safe { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 50px; }

.hero-capsule { height: 100vh; justify-content: center; overflow: hidden; z-index: 1; }
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6) contrast(1.1); transform: scale(1.1); mask-image: linear-gradient(to bottom, black 60%, transparent 100%); -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%); }

.hero-content { text-align: center; z-index: 2; mix-blend-mode: screen; }
.main-title { 
    font-size: clamp(4rem, 15vw, 12rem); font-weight: 900; line-height: 0.8; 
    background: linear-gradient(180deg, #fff, #888); 
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(0, 240, 255, 0.2));
}
.hero-sub { font-size: 1.2rem; color: var(--accent-cyan); margin-top: 20px; font-weight: 600; text-shadow: 0 0 10px rgba(0,240,255,0.4); }

.story-section { padding: 10vh 0; }
.story-grid { 
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; 
    background: var(--glass-surface);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.story-visual { aspect-ratio: 1/1; border-radius: var(--border-radius-sm); overflow: hidden; position: relative; box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
.reveal-mask { clip-path: inset(0 100% 0 0); }
.story-visual img { width: 100%; height: 100%; object-fit: cover; }
.story-text h2 { 
    font-size: 3rem; font-weight: 900; margin: 20px 0; 
    background: linear-gradient(135deg, #fff 0%, #a0a6c0 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.story-text p { color: var(--text-muted); line-height: 1.6; font-size: 1.1rem; }
.label { color: var(--accent-lime); font-size: 10px; font-weight: 700; letter-spacing: 3px; display: block; margin-bottom: 10px; }

.horizontal-pin { overflow: hidden; background: transparent; position: relative; }

/* --- ΔΙΟΡΘΩΣΗ: Κατεβάσαμε τον τίτλο στο 25vh για να αναπνέει κάτω από το Logo --- */
.sticky-series-header { position: absolute; top: 25vh; left: 50px; z-index: 5; }
.sticky-series-header h2 { font-size: 2rem; font-weight: 900; margin-top: 10px; text-shadow: 0 0 20px rgba(255,255,255,0.2); }

.pin-wrap { height: 100vh; display: flex; align-items: center; width: max-content; padding: 0 10vw; padding-left: 20vw; }

.horizontal-item { 
    width: 60vw; margin-right: 10vw; flex-shrink: 0; position: relative; display: flex; flex-direction: column; justify-content: center;
    background: linear-gradient(160deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    transition: transform 0.4s ease, border-color 0.4s ease;
}
.horizontal-item:hover { transform: translateY(-20px); border-color: var(--accent-cyan); box-shadow: 0 0 40px rgba(0,240,255,0.1); }

.item-visual { width: 100%; height: 50vh; overflow: hidden; border-radius: 20px; background: #111; position: relative; margin-bottom: 20px; }
.item-visual img.card-img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s; }
.horizontal-item:hover .item-visual img.card-img { transform: scale(1.1); }

.horizontal-item h3 { font-size: clamp(2rem, 5vw, 5rem); margin-top: 10px; font-weight: 900; line-height: 1; color: white; }
.item-label { position: absolute; top: 20px; right: 20px; font-size: 10px; letter-spacing: 2px; color: var(--accent-cyan); border: 1px solid var(--accent-cyan); padding: 5px 10px; border-radius: 10px; background: rgba(0,0,0,0.5); }

.horizontal-item.collage-item { width: 60vh; }
.collage-grid-inner { width: 100%; height: 100%; display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr); gap: 10px; }
.collage-grid-inner img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.store-btn { display: inline-block; margin-top: 15px; padding: 15px 30px; background: var(--accent-cyan); border: none; color: #000; font-size: 11px; font-weight: 900; letter-spacing: 2px; text-decoration: none; text-transform: uppercase; transition: all 0.3s ease; width: max-content; border-radius: 30px; }
.store-btn:hover { transform: scale(1.05); box-shadow: 0 0 20px var(--accent-cyan); }

.journal-section { 
    padding: 15vh 0; 
    background: transparent; 
}

.journal-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 40px; 
    margin-top: 60px; 
}

.journal-card { 
    background: linear-gradient(160deg, rgba(30, 35, 60, 0.6), rgba(10, 10, 20, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.08); 
    backdrop-filter: blur(20px); 
    border-radius: 24px; 
    padding: 20px;
    display: flex; flex-direction: column; height: 100%;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease; 
    cursor: pointer; overflow: hidden;
}
.journal-card:hover { transform: translateY(-10px); border-color: var(--accent-cyan); box-shadow: 0 15px 40px rgba(0, 240, 255, 0.15); }

.card-image { 
    position: relative; width: 100%; aspect-ratio: 16/9; 
    overflow: hidden; border-radius: 16px; margin-bottom: 25px; background: #000;
}
.card-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0.9; transition: transform 0.6s ease, opacity 0.6s ease; }
.journal-card:hover .card-image img { opacity: 1; transform: scale(1.1); }

.card-date { 
    position: absolute; bottom: 12px; left: 12px; 
    font-size: 10px; font-weight: 800; 
    background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(4px);
    color: var(--accent-cyan); padding: 6px 12px; 
    border-radius: 8px; border: 1px solid rgba(0, 240, 255, 0.3);
    text-transform: uppercase; letter-spacing: 1px; z-index: 2;
}

.journal-card h4 { font-size: 1.6rem; font-weight: 800; margin-bottom: 12px; line-height: 1.1; color: white; text-transform: uppercase; }
.journal-card p { 
    font-size: 0.95rem; color: var(--text-muted); margin-bottom: 25px; line-height: 1.6;
    display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3;
    overflow: hidden; flex-grow: 1; 
}

.read-more { 
    align-self: flex-start; background: transparent; border: 1px solid var(--accent-cyan); color: var(--accent-cyan); padding: 10px 24px; border-radius: 30px; font-weight: 800; font-size: 10px; letter-spacing: 2px; transition: all 0.3s ease; margin-top: auto; 
}
.journal-card:hover .read-more { background: var(--accent-cyan); color: #000; box-shadow: 0 0 20px var(--accent-cyan); }

.load-more-container { text-align: center; margin-top: 60px; width: 100%; }
#view-all-btn { display: inline-block; text-decoration: none; border: 1px solid var(--white); color: var(--white); padding: 15px 40px; font-size: 12px; letter-spacing: 3px; font-weight: 700; transition: 0.3s; border-radius: 30px; }
#view-all-btn:hover { background: var(--white); color: black; box-shadow: 0 0 20px white; }

.mega-footer { min-height: 100vh; background: #020205; padding: 10vh 0; display: flex; flex-direction: column; justify-content: space-between; border-top: 1px solid #111; }
.footer-svg-wrap { width: 100%; display: flex; justify-content: center; opacity: 0.3; }
.footer-huge-svg { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 150px; fill: none; stroke: url(#gradient); stroke: rgba(255,255,255,0.1); stroke-width: 1px; }

.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 50px; margin: 80px 0; width: 100%; }
.footer-col h5 { color: var(--accent-lime); font-size: 10px; margin-bottom: 20px; letter-spacing: 2px; }
.footer-col a { display: block; color: var(--text-muted); text-decoration: none; margin-bottom: 15px; font-weight: 600; font-size: 11px; text-transform: uppercase; transition: color 0.3s; }
.footer-col a:hover { color: var(--accent-cyan); text-shadow: 0 0 5px var(--accent-cyan); }
.footer-bottom { text-align: center; font-size: 10px; opacity: 0.4; border-top: 1px solid #111; padding-top: 40px; }

.newsletter-wrap { padding: 80px; background: linear-gradient(90deg, #0b0b0b, #050714); border: 1px solid #222; border-radius: 30px; margin-bottom: 60px; position: relative; overflow: hidden; }
.newsletter-wrap::before { content:''; position: absolute; top:0; left:0; width: 5px; height: 100%; background: var(--accent-purple); }
.newsletter-content h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 900; margin: 20px 0 40px 0; max-width: 500px; line-height: 1.1; }
.newsletter-form { display: flex; align-items: flex-end; gap: 20px; max-width: 600px; }
.newsletter-form input { flex: 1; background: transparent; border: none; border-bottom: 1px solid #333; padding: 15px 0; color: white; font-family: 'Outfit', sans-serif; font-size: 14px; outline: none; transition: border-color 0.4s; }
.newsletter-form input:focus { border-color: var(--accent-purple); }
.newsletter-form button { background: transparent; border: none; color: var(--accent-purple); font-weight: 900; font-size: 12px; letter-spacing: 2px; padding: 15px 0; position: relative; cursor: pointer; }

.article-modal, .overlay-modal { 
    position: fixed; inset: 0; background: rgba(5,7,20,0.95); z-index: 2000000; 
    display: flex; justify-content: flex-end; opacity: 0; pointer-events: none; transition: 0.5s; 
    backdrop-filter: blur(10px); 
    overflow: hidden;
}
.article-modal.active, .overlay-modal.active { opacity: 1; pointer-events: all; }
.modal-close-area { position: absolute; inset: 0; }

.article-content { 
    width: 100%; max-width: 800px; height: 100%; 
    background: #080a18; padding: 100px 60px; 
    overflow-y: auto; overscroll-behavior: contain;
    position: relative; border-left: 1px solid var(--accent-purple); 
    transform: translateX(50px); transition: 0.5s; 
    box-shadow: -20px 0 50px rgba(0,0,0,0.5); 
}
.article-modal.active .article-content { transform: translateX(0); }

.close-article, .close-modal { position: fixed; top: 40px; right: 40px; background: var(--accent-pink); color: white; border: none; padding: 10px 25px; font-size: 10px; font-weight: 900; transition: 0.3s; cursor: none; border-radius: 20px; z-index: 2000001; }
.close-article:hover, .close-modal:hover { transform: scale(1.1); box-shadow: 0 0 15px var(--accent-pink); }

.overlay-modal { align-items: center; justify-content: center; }
.modal-content { width: 90%; max-width: 800px; background: #0b0b0b; padding: 60px; border: 1px solid #333; position: relative; border-radius: 20px; }

.scrollable-policy::-webkit-scrollbar, .article-content::-webkit-scrollbar { width: 6px; }
.scrollable-policy::-webkit-scrollbar-track, .article-content::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.05); }
.scrollable-policy::-webkit-scrollbar-thumb, .article-content::-webkit-scrollbar-thumb { background: var(--accent-purple); border-radius: 3px; }
.scrollable-policy { max-height: 60vh; overflow-y: auto; padding-right: 20px; margin-top: 30px; }

.policy-text h3 { color: var(--white); font-size: 1.2rem; margin-top: 30px; }
.policy-text p, .article-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.article-text strong { color: var(--accent-cyan); }
.article-text li::before { content: "•"; color: var(--accent-purple); position: absolute; left: 0; font-weight: bold; }
.article-meta { margin-top: 40px; padding-top: 30px; border-top: 1px solid #222; }
.tags-container { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.article-tag { font-size: 10px; text-transform: uppercase; color: var(--text-muted); border: 1px solid #333; padding: 5px 12px; border-radius: 20px; font-weight: 700; transition: 0.3s; }
.article-tag:hover { border-color: var(--accent-cyan); color: var(--accent-cyan); box-shadow: 0 0 10px rgba(0,240,255,0.2); }
.share-btn:hover { color: var(--accent-purple); border-bottom-color: var(--accent-purple); }

.gdpr-banner { position: fixed; bottom: 40px; left: 50%; transform: translateX(-50%) translateY(150%); width: 90%; max-width: 600px; background: rgba(20,20,30,0.9); backdrop-filter: blur(10px); padding: 30px; border: 1px solid var(--accent-lime); border-radius: 20px; z-index: 9999998; transition: transform 0.8s; box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
.gdpr-banner.active { transform: translateX(-50%) translateY(0); }
.gdpr-btns { display: flex; gap: 20px; margin-top: 15px; }
.gdpr-btn { background: none; border: 1px solid white; color: white; padding: 10px 25px; font-size: 10px; font-weight: 700; transition: 0.3s; border-radius: 20px; cursor: pointer; }
.gdpr-btn.accept { background: var(--accent-lime); color: black; border: none; }
.gdpr-btn.accept:hover { box-shadow: 0 0 15px var(--accent-lime); }

.marquee-container {
    position: relative; width: 100%; overflow: hidden;
    background: var(--accent-cyan); padding: 15px 0;
    transform: rotate(-2deg); margin-bottom: 80px; z-index: 10;
    box-shadow: 0 0 30px var(--accent-cyan);
}

.marquee-content {
    display: flex; width: max-content;
    animation: scrollText 20s linear infinite;
}

.marquee-content span {
    font-size: 1.5rem; font-weight: 900; color: #000;
    text-transform: uppercase; letter-spacing: 2px;
    padding-right: 20px; white-space: nowrap;
}

@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

::selection { background: var(--accent-purple); color: white; }
::-moz-selection { background: var(--accent-purple); color: white; }

.mobile-toggle { display: none; flex-direction: column; justify-content: space-between; width: 30px; height: 12px; background: none; border: none; z-index: 10001; pointer-events: auto; cursor: pointer; }
.mobile-toggle .line { width: 100%; height: 2px; background: white; transition: 0.3s; transform-origin: right; }
.mobile-toggle.active .line.top { transform: rotate(-45deg); width: 100%; }
.mobile-toggle.active .line.bottom { transform: rotate(45deg); width: 100%; }

.mobile-menu-overlay { position: fixed; inset: 0; background: rgba(5,7,20,0.98); z-index: 9999; display: flex; flex-direction: column; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: 0.5s; backdrop-filter: blur(20px); }
.mobile-menu-overlay.active { opacity: 1; pointer-events: all; }
.mobile-links { display: flex; flex-direction: column; align-items: center; gap: 40px; }
.mobile-link { font-size: clamp(2rem, 7vw, 4rem); font-weight: 900; color: white; text-decoration: none; position: relative; }
.mobile-line { position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: var(--accent-cyan); transform: scaleX(0); transition: 0.4s; transform-origin: right; }
.mobile-link:hover .mobile-line { transform: scaleX(1); transform-origin: left; }

.back-to-top { position: relative; cursor: none; opacity: 0; transition: opacity 0.4s ease; pointer-events: none; }
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.btt-line { position: absolute; bottom: -5px; left: 0; width: 100%; height: 2px; background: var(--accent-cyan); transform: scaleX(0); transition: 0.4s; transform-origin: right; }
.back-to-top:hover .btt-line { transform: scaleX(1); transform-origin: left; }

@media (max-width: 1024px) {
    * { cursor: auto !important; }
    .cursor-blob { display: none !important; }
    .read-more, .close-article, .lang-btn, .audio-wrapper, .journal-card, button, a, .store-btn, .back-link, .article-tag, .share-btn { cursor: pointer !important; }
    
    .story-grid, .journal-grid { grid-template-columns: 1fr; }
    .nav-menu { display: none; }
    .hud { padding: 20px; }
    .container-safe { padding: 0 30px; width: 100%; overflow: hidden; }
    
    .story-text h2 { font-size: 2rem; line-height: 1.2; }
    .main-title { font-size: 16vw; }
    .hero-sub { font-size: 1rem; padding: 0 20px; }
    
    .pin-wrap { padding-left: 5vw; }
    .horizontal-item { width: 85vw; margin-right: 5vw; padding: 20px; }
    
    /* --- ΔΙΟΡΘΩΣΗ: ΚΑΙ ΣΤΑ ΚΙΝΗΤΑ το κατεβάσαμε στο 18vh --- */
    .sticky-series-header { top: 18vh; left: 30px; font-size: 0.8rem; }
    
    .item-visual { height: 40vh; }
    
    .horizontal-item.collage-item { width: auto; margin-left: 0; margin-right: 5vw; }
    .horizontal-item.collage-item .item-visual { height: auto; aspect-ratio: 1/1; width: 80vw; }
    
    .marquee-container { transform: rotate(0deg); margin-bottom: 50px; }
    .marquee-content span { font-size: 1rem; }

    .mobile-toggle { display: flex; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .newsletter-content { text-align: center; }
    .newsletter-form { margin: 0 auto; max-width: 100%; }
    .newsletter-content h3 { margin-left: auto; margin-right: auto; font-size: 1.8rem; }
    .footer-huge-svg { font-size: 60px; }
    .article-content { padding: 80px 20px; width: 100%; border-left: none; transform: translateY(50px); }
    .article-modal.active .article-content { transform: translateY(0); }
    .modal-content { width: 95%; padding: 40px 20px; }
    
    .brand-logo { margin-right: 0; }
}