/* =========================
   FONTS & ROOT
========================= */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Share+Tech+Mono&display=swap');

html {
    scroll-behavior: smooth;
}

:root {
    --bg: #05010a;
    --primary: #a64dff;
    --secondary: #ff4df0;
    --glow: #c77dff;
    --text: #eae6ff;
}


/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* =========================
   BODY & GLOBAL
========================= */
body {
    background: radial-gradient(circle at top, #0a0014, #05010a);
    color: var(--text);
    font-family: 'Share Tech Mono', monospace;
    overflow-x: hidden;
}

/* Scanlines */
body::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(255,255,255,0.02),
        rgba(255,255,255,0.02) 1px,
        transparent 1px,
        transparent 3px
    );
    pointer-events: none;
}




/* =========================
   HEADER / HERO
========================= */
header {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/hero.png') center/cover no-repeat;
    position: relative;
}

header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(5, 1, 10, 0.85);
}

.hero {
    position: relative;
    text-align: center;
    z-index: 2;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    color: var(--primary);
    text-shadow: 0 0 10px var(--glow), 0 0 20px var(--glow);
}

.hero p {
    margin-top: 10px;
    opacity: 0.7;
}


/* =========================
   GLITCH EFFECT
========================= */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
}

.glitch::before {
    color: red;
    transform: translate(2px, 0);
}

.glitch::after {
    color: blue;
    transform: translate(-2px, 0);
}


/* =========================
   UPDATED CYBER-NAV
========================= */
.cyber-nav {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between; /* Σπρώχνει τα στοιχεία στις άκρες */
    align-items: center;
    padding: 15px 40px;
    background: rgba(5, 1, 10, 0.95);
    border-bottom: 2px solid var(--primary); /* Μωβ γραμμή */
    backdrop-filter: blur(10px);
    z-index: 1000;
}

/* Αριστερή πλευρά: Drina */
.nav-left {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    color: var(--primary);
    text-shadow: 0 0 10px var(--glow);
    font-weight: bold;
}

/* Κέντρο: Links */
.nav-center {
    display: flex;
    gap: 30px;
}

.nav-center a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: 0.3s;
}

.nav-center a:hover {
    color: var(--secondary);
    text-shadow: 0 0 8px var(--secondary);
}

/* Δεξιά πλευρά: Insta Link */
.nav-right .insta-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: bold;
    padding: 8px 16px;
    border: 1px solid var(--secondary);
    transition: all 0.3s ease;
}

.nav-right .insta-link:hover {
    background: var(--secondary);
    color: #000;
    box-shadow: 0 0 15px var(--secondary);
}

/* =========================
   SECTIONS
========================= */
section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: auto;
}

h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    margin-bottom: 20px;
}


/* =========================
   ABOUT
========================= */
#about p {
    opacity: 0.8;
    line-height: 1.8;
}


/* =========================
   GALLERY
========================= */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.card {
    overflow: hidden;
    border-radius: 10px;
}

.card img {
    width: 100%;
    display: block;
    transition: 0.4s;
    filter: brightness(0.8);
}

.card:hover img {
    transform: scale(1.1) rotate(-1deg);
    filter: brightness(1.2);
    box-shadow: 0 0 20px var(--secondary);
}


/* =========================
   TIMELINE / LOGS
========================= */
.timeline {
    display: flex;
    flex-direction: column;
    /* Αφαιρούμε το gap για να ελέγχουμε το κενό μόνο με τον spacer */
    gap: 0; 
}

/* Βασικό στυλ για κάθε Event */
.event {
    border-left: 3px solid var(--primary);
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    transition: 0.3s;
    margin-bottom: 10px; /* Μικρό κενό μεταξύ των boxes */
}

.event:hover {
    box-shadow: 0 0 15px var(--primary);
    transform: translateX(5px);
    opacity: 1 !important; /* Φωτίζει στο hover ό,τι κι αν είναι */
}

/* Η τελεία στα αριστερά */
.event::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 20px;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
}

/* Ημερομηνία */
.event .date {
    font-family: 'Share Tech Mono', monospace;
    color: var(--secondary);
    font-size: 0.8rem;
    display: block;
    margin-bottom: 5px;
    opacity: 0.8;
}

/* Upcoming Event Style */
.event.upcoming {
    border-left-color: var(--secondary);
}

.event.upcoming::before {
    background: var(--secondary);
    box-shadow: 0 0 10px var(--secondary);
}

/* =========================
   SPACING & ARCHIVED LOGS
========================= */

/* Το κενό που ήθελες */
.log-spacer {
    height: 40px; 
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    margin-left: -1px; /* Ευθυγράμμιση πάνω στη γραμμή του border */
    opacity: 0.2;
    align-self: flex-start;
    margin-bottom: 10px;
}

.more-events {
    transition: all 0.4s ease-in-out;
    opacity: 0; /* Αρχικά αόρατο */
    transform: translateY(-10px); /* Ελαφρώς πιο πάνω */
    pointer-events: none; /* Να μην μπορείς να κάνεις hover όσο είναι κλειστό */
}

/* Όταν προστίθεται η κλάση .show από το JS */
.more-events.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto; /* Ενεργοποίηση hover */
}

/* Τα παλιά logs (μέσα στο more-events) */
.more-events .event {
    opacity: 0.4; 
    filter: grayscale(0.3);
}

/* Κρύψιμο του container */
.more-events.hidden {
    display: none;
}

/* =========================
   CONTACT
========================= */
#contact a {
    display: block;
    margin: 8px 0;
    color: var(--primary);
    text-decoration: none;
    transition: 0.3s;
}

#contact a:hover {
    color: var(--secondary);
    text-shadow: 0 0 10px var(--secondary);
}


/* =========================
   CYBER FOOTER
========================= */
.cyber-footer {
    background: rgba(10, 0, 20, 0.95);
    border-top: 2px solid var(--primary);
    padding: 50px 20px 20px;
    margin-top: 100px;
    font-family: 'Share Tech Mono', monospace;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-title {
    color: var(--secondary);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-section p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 5px;
}

/* Links Style */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.85rem;
    transition: 0.3s;
}

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

/* Status Purple-Pink Style (No Blink) */
.status-static {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

/* Social Icons Style */
.social-icons {
    display: flex;
    gap: 15px;
    font-size: 1.2rem;
}

.social-icons a {
    color: var(--text);
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--secondary);
    transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(166, 77, 255, 0.2);
    padding-top: 20px;
    font-size: 0.75rem;
    opacity: 0.7; /* Το ανέβασα λίγο για να φαίνεται καλύτερα */
}

.glitch-text {
    color: var(--secondary);
    font-weight: bold;
    margin-left: 10px;
}


/* =========================
   BUTTONS
========================= */
#toggleBtn {
    margin-top: 20px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-family: 'Share Tech Mono', monospace;
    cursor: pointer;
    transition: 0.3s;
}

#toggleBtn:hover {
    background: var(--primary);
    color: black;
    box-shadow: 0 0 15px var(--primary);
    text-shadow: 1px 0 red, -1px 0 blue;
}

#galleryBtn {
    margin-top: 20px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    cursor: pointer;
    font-family: 'Share Tech Mono', monospace;
    transition: 0.3s;
}

#galleryBtn:hover {
    background: var(--secondary);
    color: black;
    box-shadow: 0 0 15px var(--secondary);
}


/* =========================
   ANIMATIONS
========================= */
.hidden {
    display: none;
}

.more-events .event {
    opacity: 0;
    transform: translateY(20px);
}

.more-events.show .event {
    animation: logReveal 0.6s forwards;
}

.more-photos.show .card {
    animation: photoReveal 0.6s forwards;
}

@keyframes logReveal {
    0% { opacity: 0; transform: translateY(20px) scale(0.98); filter: blur(2px); }
    50% { opacity: 0.5; transform: translateY(-5px) scale(1.01); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes photoReveal {
    0% { opacity: 0; transform: scale(0.9) translateY(20px); filter: blur(3px); }
    100% { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}


/* ===========================================
   MUSIC UI - DESKTOP DEFAULT (PC)
=========================================== */
.music-ui {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 260px;
    padding: 15px;
    background: rgba(10, 0, 20, 0.9);
    border: 1px solid var(--primary);
    box-shadow: 0 0 15px rgba(166, 77, 255, 0.2);
    border-radius: 2px;
    font-family: 'Share Tech Mono', monospace;
    z-index: 1000;
    backdrop-filter: blur(10px);
    display: block; /* Πάντα ορατό στο PC */
}

#musicToggleBtn {
    display: none; /* Πάντα κρυφό στο PC */
}

.mobile-only-close {
    display: none; /* Κρύβουμε το [CLOSE] στο PC */
}

/* Κοινά στυλ εσωτερικών στοιχείων (PC & Mobile) */
.music-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: var(--primary);
    margin-bottom: 10px;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(166, 77, 255, 0.2);
    padding-bottom: 5px;
}

.music-status {
    color: var(--secondary);
    text-shadow: 0 0 5px var(--secondary);
}

#trackName {
    font-size: 0.75rem;
    color: var(--text);
    margin-bottom: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-left: 2px solid var(--secondary);
    padding-left: 8px;
}

.music-buttons {
    display: flex;
    gap: 5px;
    margin-bottom: 12px;
}

.music-buttons button {
    flex: 1;
    background: transparent;
    border: 1px solid rgba(255, 77, 240, 0.3);
    color: var(--secondary);
    padding: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.music-buttons button:hover {
    background: var(--secondary);
    color: #000;
    box-shadow: 0 0 10px var(--secondary);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-size: 0.7rem;
}

.volume-control input[type="range"] {
    flex: 1;
    height: 3px;
    accent-color: var(--primary);
    cursor: pointer;
}




/* =========================
   FILTER BAR (CYBER UI)
========================= */
.filter-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    margin-bottom: 20px;

    background: rgba(255,255,255,0.03);
    border: 1px solid var(--primary);
    box-shadow: 0 0 15px var(--primary);

    flex-wrap: wrap;
}

/* label */
.filter-label {
    font-size: 0.7rem;
    opacity: 0.6;
    margin-right: 5px;
}

/* buttons */
.filter-btn {
    padding: 6px 12px;
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    font-family: 'Share Tech Mono', monospace;
    transition: 0.25s;
}

/* hover */
.filter-btn:hover {
    background: var(--primary);
    color: black;
    box-shadow: 0 0 10px var(--primary);
}

/* active */
.filter-btn.active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: black;
    box-shadow: 0 0 12px var(--secondary);
}

/* =========================
   GALLERY SLIDER
========================= */
.gallery-wrapper {
    position: relative;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    transition: transform 0.4s ease;
}

/* PC → 3 images */
.gallery-track .card {
    min-width: calc(100% / 3);
    padding: 5px;
}

/* arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(5,0,10,0.8);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    transition: 0.2s;
}

.arrow:hover {
    background: var(--primary);
    color: black;
    box-shadow: 0 0 10px var(--primary);
}

.arrow.left { left: 5px; }
.arrow.right { right: 5px; }


.contact-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-card {
    flex: 1 1 200px;
    padding: 15px;
    border: 1px solid #301934;
    text-decoration: none;
    color: #301934;
    background: rgba(0, 0, 0, 0.6);

    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

/* τίτλος */
.contact-card span {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* username */
.contact-card p {
    margin: 5px 0 0;
    font-size: 1.1rem;
}

/* hover effect */
.contact-card:hover {
    background: #301934;
    color: black;
    transform: translateY(-5px);
}

/* glitch line */
.contact-card::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #301934;
    bottom: 0;
    left: -100%;
    transition: 0.3s;
}

.contact-card:hover::after {
    left: 0;
}
.about-text {
    line-height: 1.8;
    font-size: 1rem;
}

.about-link {
    color: #ff4df0;
    text-decoration: none;
    position: relative;
}

/* subtle hover */
.about-link:hover {
    text-decoration: underline;
}

.about-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 1px;
    background: #ff4df0;
    transition: 0.3s;
}

.about-link:hover::after {
    width: 100%;
}

h2:hover {
    color: var(--secondary);
    text-shadow: 2px 0 red, -2px 0 blue; /* Subtle glitch effect */
    transition: 0.2s;
}

/* =========================
   CYBER SECTIONS STYLE
========================= */
section {
    padding: 100px 20px;
    margin: 40px auto;
    background: rgba(10, 0, 20, 0.4);
    border: 1px solid rgba(166, 77, 255, 0.2);
    /* "Κομμένες" γωνίες για cyber look */
    clip-path: polygon(0 0, 95% 0, 100% 5%, 100% 100%, 5% 100%, 0 95%);
    position: relative;
}

/* Ο τίτλος κάθε ενότητας */
h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 40px;
    display: inline-block;
    position: relative;
}

/* Η διακοσμητική γραμμή κάτω από το H2 */
h2::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), transparent);
}

/* Εφέ στα Contact Cards για να μοιάζουν με UI οθόνης */
.contact-card {
    background: rgba(20, 0, 40, 0.6) !important;
    border: 1px solid var(--primary) !important;
    box-shadow: inset 0 0 15px rgba(166, 77, 255, 0.1);
    color: var(--text) !important;
}

.contact-card:hover {
    border-color: var(--secondary) !important;
    box-shadow: 0 0 20px rgba(255, 77, 240, 0.4) !important;
    transform: translateY(-5px) scale(1.02);
}

/* =========================
   CYBER DROPDOWN
========================= */
.filter-container {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-container label {
    font-size: 0.8rem;
    color: var(--primary);
    letter-spacing: 2px;
}

.cyber-dropdown {
    background: #0a0014;
    color: var(--secondary);
    border: 1px solid var(--primary);
    padding: 8px 15px;
    font-family: 'Share Tech Mono', monospace;
    outline: none;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(166, 77, 255, 0.2);
    transition: 0.3s;
}

.cyber-dropdown:hover, .cyber-dropdown:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 15px var(--secondary);
}

/* Κρύψιμο των στοιχείων που δεν ταιριάζουν στο φίλτρο */
.card.hide {
    display: none;
}

.filter-dropdown-wrapper {
    margin-bottom: 20px;
    position: relative;
}

.cyber-button {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 10px 20px;
    font-family: 'Share Tech Mono', monospace;
    cursor: pointer;
    transition: 0.3s;
}

.cyber-button:hover {
    background: var(--primary);
    color: black;
    box-shadow: 0 0 15px var(--primary);
}

.filter-panel {
    display: flex;
    gap: 25px;
    background: rgba(15, 0, 30, 0.95);
    border: 1px solid var(--primary);
    padding: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
    box-shadow: 0 0 20px rgba(166, 77, 255, 0.3);
    position: absolute;
    z-index: 100;
    width: 100%;
    max-width: 600px;
}

.filter-panel.hidden { display: none; }

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 120px;
}

.group-label {
    color: var(--secondary);
    font-weight: bold;
    font-size: 0.75rem;
    border-bottom: 1px solid var(--secondary);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.filter-group label {
    font-size: 0.85rem;
    cursor: pointer;
    color: var(--text);
    transition: 0.2s;
}

.filter-group label:hover { color: var(--secondary); }

.reset-btn {
    background: transparent;
    border: 1px solid red;
    color: red;
    padding: 5px 10px;
    cursor: pointer;
    font-family: 'Share Tech Mono', monospace;
    align-self: flex-end;
}

/* =========================
   CUSTOM CYBER-SCROLLBAR
========================= */

/* 1. Το συνολικό πλάτος της μπάρας */
::-webkit-scrollbar {
    width: 10px; /* Πόσο παχιά θα είναι η μπάρα */
    background-color: var(--bg); /* Το φόντο πίσω από τη μπάρα */
}

/* 2. Το "μονοπάτι" (track) πάνω στο οποίο κινείται */
::-webkit-scrollbar-track {
    background: #0a0014; 
    border-left: 1px solid rgba(166, 77, 255, 0.1);
}

/* 3. Το "κουμπί" (thumb) που σέρνεις */
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    border-radius: 5px; /* Στρογγυλεμένες άκρες */
    border: 2px solid var(--bg); /* Δημιουργεί ένα μικρό κενό γύρω από το thumb */
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}

/* 4. Εφέ όταν περνάς το ποντίκι ή όταν το πατάς */
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
    box-shadow: 0 0 10px var(--secondary);
}

/* Για Firefox (πιο περιορισμένες επιλογές) */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg);
}

/* Το κουμπί (κρυφό στο PC) */
.menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 5px 10px;
    cursor: pointer;
    font-family: 'Share Tech Mono', monospace;
    align-items: center;
    gap: 10px;
}

/* =========================
   MOBILE UI OPTIMIZATION (Thomas OS)
========================= */
@media (max-width: 768px) {
    
    body {
        padding-top: 80px; 
    }

    .cyber-nav {
        padding: 10px 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed; /* Ήδη υπάρχει, αλλά καλό είναι να το επιβεβαιώσουμε */
        height: 60px; /* Σταθερό ύψος για σωστό κεντράρισμα */
    }

    .menu-toggle {
        display: flex;
        position: absolute; /* Βγαίνει από το κανονικό flow */
        left: 50%;         /* Πηγαίνει στη μέση της οθόνης */
        transform: translateX(-50%); /* Μετακινείται ακριβώς στο κέντρο του εαυτού του */
        margin: 0;
        z-index: 1001;
    }

    .nav-left, .nav-right {
        z-index: 1000; /* Διασφαλίζουμε ότι τα πλαϊνά στοιχεία δεν κρύβουν το κουμπί */
    }

    .nav-left {
        font-size: 1.2rem;
    }

    .nav-center {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 0, 20, 0.98);
        border-bottom: 2px solid var(--primary);
        padding: 20px;
        text-align: center;
    }

    .nav-center.active {
        display: flex;
    }

    .nav-right .insta-link {
        padding: 5px 10px;
        font-size: 0.75rem;
    }

    header {
        height: 40vh;
    }

    .hero h1 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    section {
        padding: 60px 15px;
        margin: 20px 10px;
        clip-path: polygon(0 0, 92% 0, 100% 8%, 100% 100%, 8% 100%, 0 92%);
    }

    h2 {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .gallery-track .card {
        min-width: 100%;
    }

    .music-ui {
        display: none; 
        width: 90% !important;
        left: 5% !important;
        right: 5% !important;
        bottom: 85px !important;
    }

    .music-ui.active {
        display: block !important;
    }

    #musicToggleBtn {
        display: flex; 
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        background: var(--bg);
        border: 2px solid var(--primary);
        color: var(--primary);
        border-radius: 50%;
        justify-content: center;
        align-items: center;
        z-index: 1001;
        box-shadow: 0 0 15px var(--primary);
    }

    /* 9. Contact Grid Fix - Force Small Height */
    .contact-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        align-items: center !important; /* Κεντράρει τις κάρτες οριζόντια */
    }

    .contact-card {
        flex: none !important;       /* Σταματάει το ξεχείλωμα */
        width: 100% !important;      /* Ή βάλε π.χ. 280px αν δεν τις θες full width */
        max-width: 90% !important; /* Περιορίζει το πλάτος για να μη φαίνονται τεράστιες */
        padding: 10px 15px !important;
        min-height: 0 !important;    /* Μηδενίζει το ελάχιστο ύψος */
        height: auto !important;     /* Το ύψος ορίζεται ΜΟΝΟ από το κείμενο */
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }

    .contact-card span {
        font-size: 0.7rem !important;
        margin-bottom: 2px !important;
        display: block !important;
    }

    .contact-card p {
        font-size: 1rem !important;
        margin: 0 !important;
        line-height: 1.2 !important;
    }

    ::-webkit-scrollbar {
        width: 4px;
    }
} /* ΕΔΩ ΚΛΕΙΝΕΙ ΤΟ MEDIA QUERY - ΜΗΝ ΒΑΛΕΙΣ ΑΛΛΗ ΑΓΚΥΛΗ ΜΕΤΑ */