:root {
    --bg: #050505;
    --cyan: #00f2ff;
    --purple: #bc13fe;
    --white-neon: #ffffff;
	/* ... τα υπόλοιπα χρώματα ... */
    --neon-yellow: #ccff00; /* Το κλασικό "Electric Lime" κίτρινο */
    --yellow-glow: rgba(204, 255, 0, 0.6);
}

/* --- NEON SCROLLBAR --- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 10px; box-shadow: 0 0 10px var(--cyan); }

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; margin: 0; padding: 0; }

body, html { 
    width: 100%; height: 100%;
    background-color: var(--bg);
    color: white; font-family: 'Inter', sans-serif;
    overflow-x: hidden;
	scroll-behavior: smooth;
}

/* ΣΤΑΘΕΡΟ ΦΟΝΤΟ ΣΕΛΙΔΑΣ */
.bg-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://musicfun.gr/images/bg.jpg');
    background-size: cover; background-position: center; background-attachment: fixed;
    opacity: 0.5; z-index: 1; pointer-events: none;
}

.main-wrapper { position: relative; z-index: 5; }

/* NAVBAR */
.navbar {
    position: fixed; top: 0; width: 100%; height: 75px;
    background: rgba(0,0,0,0.95); backdrop-filter: blur(15px);
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 25px; border-bottom: 2px solid var(--cyan); z-index: 10000;
}

/* ΤΟ LOGO ΜΕ ΠΟΛΥ ΜΙΚΡΟ ΠΛΑΤΟΣ ΚΑΙ ΓΡΗΓΟΡΕΣ ΝΟΤΕΣ */
.logo {
    display: flex; align-items: center; gap: 0px;
    font-weight: 900; font-size: 1.6rem; text-transform: uppercase;
    cursor: pointer; position: relative; letter-spacing: -2px;
}
.logo .musi { color: var(--cyan); text-shadow: 0 0 10px var(--cyan); animation: neon-flicker-blue 2s infinite alternate; }
.logo .fun { color: var(--purple); text-shadow: 0 0 10px var(--purple); animation: neon-flicker-purple 2.5s infinite alternate-reverse; }

.logo::before, .logo::after, .logo span::before, .logo span::after {
    content: '♪'; position: absolute; opacity: 0; font-size: 1rem; pointer-events: none;
}
.logo::before { content: '♫'; color: var(--cyan); left: 10%; animation: fast-notes 1.5s infinite linear; }
.logo::after { content: '♩'; color: var(--purple); left: 30%; animation: fast-notes 1.2s infinite linear 0.3s; }
.logo .musi::before { content: '♪'; color: white; left: 50%; animation: fast-notes 1.8s infinite linear 0.6s; }
.logo .musi::after { content: '♫'; color: var(--cyan); left: 70%; animation: fast-notes 1.4s infinite linear 0.9s; }

@keyframes fast-notes {
    0% { transform: translateY(0) scale(0.5); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateY(-50px) translateX(20px) scale(1.2) rotate(45deg); opacity: 0; }
}

/* MENU TOGGLE */
.menu-toggle { cursor: pointer; z-index: 10001; }
.menu-toggle span { width: 30px; height: 3px; background: var(--cyan); margin: 6px; display: block; box-shadow: 0 0 8px var(--cyan); }

.nav-links {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.98); display: flex; flex-direction: column; 
    align-items: center; justify-content: center; list-style: none;
    opacity: 0; visibility: hidden; transition: 0.4s ease; z-index: 9999;
}
.nav-links.active { opacity: 1; visibility: visible; }
.nav-links a { color: white; text-decoration: none; font-size: 2.2rem; font-weight: 900; margin: 15px 0; text-transform: uppercase; }

/* CONTENT AREA */
#content-area { padding: 120px 20px 30px 20px; width: 100%; display: flex; flex-direction: column; align-items: center; }

/* CARDS ΜΕ GLASSMORPHISM & NEON BLUE */
.features-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; width: 100%; max-width: 1100px; margin-top: 20px; }
.f-card {
    background: rgba(255,255,255,0.03); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    padding: 40px 20px; border-radius: 20px; border: 2px solid var(--cyan); 
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.3); text-align: center;
}
.f-card .icon { font-size: 8rem; margin-bottom: 15px; display: block; text-shadow: 0 0 20px var(--cyan); }

/* SCHEDULE TABLE - NEON PURPLE */
.schedule-table {
    width: 100%; max-width: 900px; border-collapse: collapse; margin-top: 20px;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(10px); border: 1px solid var(--cyan); border-radius: 15px; overflow: hidden;
}
.schedule-table th, .schedule-table td { padding: 15px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.05); }
.dj-name { color: var(--purple); text-shadow: 0 0 10px var(--purple); font-weight: 900; text-transform: uppercase; }

/* CONTACT FORM - NEON WHITE BUTTON */
.contact-form {
    width: 100%; max-width: 700px; display: flex; flex-direction: column; gap: 15px;
    background: rgba(255,255,255,0.03); backdrop-filter: blur(12px); padding: 30px; border-radius: 20px; border: 2px solid var(--cyan);
}
.submit-btn {
    background: transparent; color: var(--white-neon); border: 2px solid var(--white-neon); padding: 15px;
    font-weight: 900; text-transform: uppercase; border-radius: 50px; cursor: pointer; transition: 0.3s;
    text-shadow: 0 0 10px var(--white-neon); box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
.submit-btn:hover { background: var(--white-neon); color: #000; box-shadow: 0 0 30px var(--white-neon); }

/* FOOTER - 3 ΣΤΗΛΕΣ */
.site-footer { padding: 60px 20px 200px 20px; background: rgba(0,0,0,0.9); border-top: 2px solid var(--cyan); width: 100%; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1200px; margin: 0 auto; gap: 30px; text-align: center; align-items: center; }
.footer-neon { color: var(--cyan); text-shadow: 0 0 10px var(--cyan); text-transform: uppercase; font-weight: 900; margin-bottom: 10px; }

.playstore-img { width: 180px; height: auto; border-radius: 10px; transition: 0.3s; cursor: pointer; margin-top: 10px; }
.playstore-img:hover { transform: scale(1.08); box-shadow: 0 0 20px rgba(0, 242, 255, 0.4); }

/* PLAYER BAR */
.player-bar {
    position: fixed; bottom: 0; width: 100%; height: 100px;
    background: #000; border-top: 3px solid var(--purple);
    display: flex; align-items: center; justify-content: space-between; padding: 0 30px; z-index: 11000;
}
/* Το εφέ για το κείμενο */
.live-neon {
    color: #ff0000; /* Έντονο κόκκινο */
    font-weight: 900;
    text-transform: uppercase;
    /* Εδώ είναι η διπλή λάμψη (εσωτερική και εξωτερική) */
    text-shadow: 0 0 5px #ff0000, 0 0 15px #ff0000;
    /* Εδώ δίνουμε την εντολή να ξεκινήσει το αναβόσβημα */
    animation: blinker 1.5s infinite;
}

/* Εδώ ορίζουμε ΠΩΣ θα αναβοσβήνει */
@keyframes blinker {
    0% {
        opacity: 1;
        text-shadow: 0 0 5px #ff0000, 0 0 15px #ff0000;
    }
    50% {
        opacity: 0.1; /* Σχεδόν σβηστό */
        text-shadow: none; /* Χωρίς λάμψη όταν σβήνει */
    }
    100% {
        opacity: 1;
        text-shadow: 0 0 5px #ff0000, 0 0 15px #ff0000;
    }
}
.play-btn { width: 60px; height: 60px; border-radius: 50%; border: none; background: var(--cyan); font-size: 1.5rem; cursor: pointer; box-shadow: 0 0 15px var(--cyan); }

/* KEYFRAMES */
@keyframes neon-flicker-blue { 0%, 100% { opacity: 1; text-shadow: 0 0 10px var(--cyan); } 50% { opacity: 0.8; } }
@keyframes neon-flicker-purple { 0%, 100% { opacity: 1; text-shadow: 0 0 10px var(--purple); } 50% { opacity: 0.7; } }

/* RESPONSIVE */
@media (max-width: 768px) {
    .features-grid-3, .footer-grid { grid-template-columns: 1fr; }
    .logo { font-size: 1.4rem; }
}

/* ΔΙΑΤΑΞΗ ΓΙΑ ΤΑ PORTAL LOGOS */
.portal-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* Απόσταση μεταξύ των logos */
    margin-top: 10px;
}

.portal-img {
    width: 120px; /* Μικρά και κομψά */
    height: auto;
    filter: grayscale(100%) brightness(0.8); /* Ασπρόμαυρα για αρχή */
    transition: 0.3s ease;
    border-radius: 5px;
    padding: 5px;
    background: rgba(255, 255, 255, 0.05);
}

.portal-img:hover {
    filter: grayscale(0%) brightness(1.1); /* Παίρνουν χρώμα στο hover */
    transform: scale(1.1);
    box-shadow: 0 0 10px var(--cyan); /* Neon λάμψη */
    background: rgba(0, 242, 255, 0.1);
}

/* Προσαρμογή για κινητά */
@media (max-width: 768px) {
    .portal-logos {
        gap: 10px;
    }
    .portal-img {
        width: 100px;
    }
}



/* BOTTOM BAR CREDITS */
.bottom-bar {
    width: 100%;
    background: rgba(0, 0, 0, 0.9); /* Μαύρο φόντο */
    border-top: 1px solid rgba(0, 242, 255, 0.3); /* Λεπτή neon γραμμή από πάνω */
    padding: 15px 0;
    text-align: center;
    position: relative;
    z-index: 5;
}

.bottom-content {
    font-size: 0.9rem;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}

.credit-link {
    color: var(--cyan);
    text-decoration: none;
    font-weight: 900;
    transition: 0.3s ease;
    text-shadow: 0 0 5px var(--cyan);
    margin: 0 5px;
}

.credit-link:hover {
    color: var(--white-neon);
    text-shadow: 0 0 15px var(--white-neon);
    text-decoration: underline;
}

/* Εξασφάλιση ότι ο player δεν την καλύπτει αν είναι fixed */
.site-footer {
    padding-bottom: 20px; /* Μειώνουμε λίγο το κάτω padding του footer */
}

/* ΔΙΟΡΘΩΣΗ ΓΙΑ ΝΑ ΜΗΝ ΚΡΥΒΕΤΑΙ ΤΟ FOOTER */
.main-wrapper {
    /* Δίνουμε χώρο ίσο με το ύψος του player + λίγο extra αέρα */
    padding-bottom: 120px; 
}

/* Αν ο Player σου έχει ύψος 100px, το παραπάνω padding θα σπρώξει 
   το footer προς τα πάνω ώστε να μην το καλύπτει ο player. */

.bottom-bar {
    position: relative;
    z-index: 10; /* Χαμηλότερο από τον player (11000) αλλά αρκετό για να φαίνεται */
    margin-bottom: 0; 
}

/* Σιγουρευόμαστε ότι το footer δεν κολλάει στον player */
.site-footer {
    margin-bottom: 0;
}
/* ΤΟ NEON ΚΟΥΜΠΙ ΣΤΗΝ ΑΡΧΙΚΗ */
.cta-button {
    padding: 15px 35px;
    border-radius: 50px;
    background: transparent;
    color:  var(--cyan);/* Χρησιμοποιεί το μπλε που ορίσαμε στα :root */
    border: 2px solid var(--cyan);
    font-weight: 900;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
	
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    
    /* Η ΜΠΛΕ ΛΑΜΨΗ (GLOW) */
    text-shadow: 0 0 10px var(--cyan);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.4), inset 0 0 10px rgba(0, 242, 255, 0.2);
}

/* ΕΦΕ ΟΤΑΝ ΠΗΓΑΙΝΕΙΣ ΤΟ ΠΟΝΤΙΚΙ ΠΑΝΩ (HOVER) */
.cta-button:hover {
    background: var(--cyan);
    color: #000; /* Γυρίζει σε μαύρα γράμματα για να κάνει αντίθεση */
    box-shadow: 0 0 35px var(--cyan);
    transform: scale(1.05); /* Μεγαλώνει ελάχιστα */
}


/* ΤΟ EMAIL LINK ΜΕΣΑ ΣΤΙΣ ΚΑΡΤΕΣ */
.f-card a {
    color: var(--cyan);
    text-decoration: none;
    font-weight: 900;
    text-shadow: 0 0 8px var(--cyan); /* Neon λάμψη στο κείμενο */
    transition: 0.3s ease;
    display: inline-block;
}

.f-card a:hover {
    color: var(--white-neon);
    text-shadow: 0 0 15px var(--white-neon);
    transform: scale(1.05);
}


/* Ο ΚΕΝΤΡΙΚΟΣ ΤΙΤΛΟΣ (SLOGAN) */
.main-slogan-styled {
    font-size: 2.5rem; /* Μέγεθος για desktop */
    font-weight: 900;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 15px;
    /* Λευκό neon glow για όλο το κείμενο αρχικά */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* ΤΟ ΜΠΛΕ NEON ΚΟΜΜΑΤΙ (Μέσα στο span) */
.main-slogan-styled span {
    color: var(--cyan);
    /* Δυνατή μπλε λάμψη */
    text-shadow: 0 0 15px var(--cyan), 0 0 30px var(--cyan);
    display: block; /* Το βάζει από κάτω για καλύτερο στυλ */
    font-size: 1.8rem;
    margin-top: 10px;
}

/* Προσαρμογή για κινητά */
@media (max-width: 768px) {
    .main-slogan-styled { font-size: 1.8rem; }
    .main-slogan-styled span { font-size: 1.4rem; }
}
/* ΤΑ ΠΕΔΙΑ ΤΗΣ ΦΟΡΜΑΣ (INPUTS & TEXTAREA) */
.contact-form input, 
.contact-form textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.4); /* Σκούρο διάφανο φόντο */
    border: 1px solid rgba(0, 242, 255, 0.5); /* Ημιδιάφανο μπλε περίγραμμα */
    color: white; /* Άσπρα γράμματα όταν γράφεις */
    padding: 15px;
    border-radius: 10px;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: 0.3s ease;
}

/* ΟΤΑΝ ΚΑΝΕΙΣ ΚΛΙΚ ΓΙΑ ΝΑ ΓΡΑΨΕΙΣ (FOCUS) */
.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 15px var(--cyan); /* Neon λάμψη γύρω από το κουτάκι */
    background: rgba(0, 0, 0, 0.6); /* Λίγο πιο σκούρο για να διαβάζεται εύκολα */
}

/* ΤΟ ΧΡΩΜΑ ΤΟΥ PLACEHOLDER (Το κείμενο που φαίνεται πριν γράψεις) */
.contact-form input::placeholder, 
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Η ΙΔΙΑ Η ΦΟΡΜΑ (ΤΟ ΠΛΑΙΣΙΟ) */
.contact-form {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05); /* "Γυάλινο" εφέ */
    backdrop-filter: blur(10px); /* Θόλωμα πίσω από τη φόρμα */
    -webkit-backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--cyan);
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.2);
    margin: 20px auto;
}

/* ΤΟ LINK ΚΑΤΩ ΑΠΟ ΤΗ ΦΟΡΜΑ ΕΠΙΚΟΙΝΩΝΙΑΣ */
#content-area p a {
    color: var(--cyan);
    text-decoration: none;
    font-weight: 900;
    text-transform: lowercase;
    /* Neon Glow εφέ */
    text-shadow: 0 0 10px var(--cyan), 0 0 20px rgba(0, 242, 255, 0.5);
    transition: 0.3s ease;
    position: relative;
}

#content-area p a:hover {
    color: var(--white-neon);
    text-shadow: 0 0 15px var(--white-neon), 0 0 30px var(--white-neon);
}

/* Προαιρετικό: Μια μικρή neon γραμμή από κάτω που εμφανίζεται στο hover */
#content-area p a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
    transition: 0.3s ease;
}

#content-area p a:hover::after {
    width: 100%;
}

/* CONTAINER ΓΙΑ ΤΟ ΠΡΟΓΡΑΜΜΑ */
.schedule-container {
    width: 100%;
    max-width: 1000px;
    margin: 20px auto;
    overflow-x: auto; /* Για να φαίνεται σωστά στα κινητά */
}

/* Ο ΠΙΝΑΚΑΣ */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 2px solid var(--cyan);
    border-radius: 15px;
    overflow: hidden;
    color: white;
    text-align: center;
}

.schedule-table th {
    background: rgba(0, 242, 255, 0.1);
    color: var(--cyan);
    padding: 20px;
    text-transform: uppercase;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--cyan);
}

.schedule-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(0, 242, 255, 0.2);
    font-size: 0.95rem;
}

/* ΣΤΗΛΗ ΩΡΑΣ */
.time-col {
    color: var(--white-neon);
    font-weight: 900;
    text-shadow: 0 0 5px var(--white-neon);
    background: rgba(255, 255, 255, 0.05);
}

/* ΤΑ ΟΝΟΜΑΤΑ ΤΩΝ DJ */
.dj-name {
    color: var(--purple);
    text-shadow: 0 0 8px var(--purple);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: block;
    margin-top: 5px;
}

/* HOVER ΕΦΕ ΣΤΙΣ ΓΡΑΜΜΕΣ */
.schedule-table tr:hover {
    background: rgba(0, 242, 255, 0.05);
}

.legacy-slogan {
    margin-top: 25px;
    font-family: 'Inter', sans-serif;
}

.legacy-slogan .years {
    color: white;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.legacy-slogan .rank {
    color: var(--neon-yellow); /* Το νέο κίτρινο χρώμα */
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--yellow-glow);
    letter-spacing: 1px;
}

/* Μικρή λεπτομέρεια: Μια λεπτή γραμμή ανάμεσα στο κουμπί και το σλόγκαν */
.legacy-slogan::before {
    content: '';
    display: block;
    width: 90px;
    height: 2px;
    background: var(--neon-yellow);
    margin: 0 auto 15px auto;
    box-shadow: 0 0 10px var(--neon-yellow);
}

/* Το container που περιέχει τα δύο links */
.app-badges {
    display: flex;
    flex-direction: row; /* Δίπλα-δίπλα */
    justify-content: center; /* Στοίχιση αριστερά (ή center αν το θες στο κέντρο) */
    align-items: center;    /* Ευθυγράμμιση στη μέση καθ' ύψος */
    gap: 10px;              /* Απόσταση μεταξύ των δύο κουμπιών */
    flex-wrap: nowrap;      /* Να μην αλλάζουν σειρά ποτέ */
}

/* Ρυθμίσεις για τις εικόνες των badges */
.store-img {
    height: 55px;           /* Σταθερό ύψος για να δείχνουν ομοιόμορφα */
    width: auto;            /* Το πλάτος υπολογίζεται αυτόματα */
    display: block;
    border-radius: 5px;     /* Προαιρετικό: λίγο πιο στρογγυλεμένες γωνίες */
    transition: transform 0.2s;
}

.store-img:hover {
    transform: scale(1.05); /* Εφέ όταν περνάει το ποντίκι */
}

/* Διόρθωση για κινητά */
@media (max-width: 480px) {
    .store-img {
        height: 55px;       /* Λίγο πιο μικρά στα κινητά για να χωράνε σίγουρα */
    }
}