 .mobile-menu {
            position: fixed; /* Έτσι καλύπτει όλη την οθόνη */
            top: 0;
            left: 0;
            width: 100%;
            height: 100%; /* Καλύπτει όλο το ύψος */
            background-color: rgba(0, 0, 0, 0.95); /* Ελαφρώς διαφανές μαύρο */
            padding: 1.5rem 1rem; /* Εσωτερικό περιθώριο */
            z-index: 50; /* Να είναι πάνω από όλα τα άλλα στοιχεία */
            overflow-y: auto; /* Αν το περιεχόμενο είναι πολύ μεγάλο */
        }
        .mobile-menu-close-btn {
            position: absolute;
            top: 1rem;
            left: 1rem;
            font-size: 2.5rem; /* Μεγαλύτερο X */
            color: white;
            cursor: pointer;
            z-index: 60;
        }
        .fa-square-facebook{
         background: rgba(0, 0, 255, 0);
          color: rgb(0, 0, 0);
        }
        .proradio-caption{
            background: #1c9ded;
            border-radius: 0px 0px 30px;
            padding: 10px;
             color: aliceblue;
             position: relative;
        }
        .proradio-caption::before{
            z-index: 2;
            border: 2px dotted;
            content: '';
            width: calc(100% - 0.3em);
         margin: -5px auto 0 auto;
         display: block;
         max-width: 100%;
         bottom: 0;
        }
        .proradio-caption::after{
            border-color:#ed1c24;
            border-style: double;
            height: 0.7em;
            border-width: 2px 0;
            top: 53%;
}
    
@media (max-width: 768px) {
    .mobile-position {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
    }
}

.contact-form {
    max-width: 450px;
    margin: 0 auto;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
  }

  .contact-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 5px;
  }

  .contact-form textarea {
    min-height: 120px;
    resize: vertical;
  }

  .contact-form button {
    background: #000;
    color: #fff;
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
  }

  .contact-form button:hover {
    background: #333;
  }
  
.now-playing-bar {
  width: 100%;
  overflow: hidden;
  background: rgba(0,0,0,0.65);
  padding: 6px 0;
}

.now-playing-track {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: marquee 18s linear infinite;
}

#nowPlayingText {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@media (max-width: 768px) {
  .mobile-position {
    position: absolute;
    bottom: 50px;   /* <- άλλαξε αυτό για πιο κάτω/πάνω */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 16px;
  }
}

.radio-layout {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* Αριστερά: ραδιόφωνο */
.radio-main {
  flex: 1;
}

/* Δεξιά: κάμερα */
.radio-video {
  width: 260px;          /* μικρό, elegant */
  aspect-ratio: 9 / 16;  /* σωστή αναλογία */
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.radio-video iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .radio-layout {
    flex-direction: column;
  }

  .radio-video {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
}

.chat-video-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 40px auto;
}

/* Αριστερά: Chat */
.live-chat-box {
  flex: 1.2;   /* λίγο πιο μεγάλο */
}

/* Δεξιά: YouTube */
.youtube-box {
  flex: 1;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.youtube-box iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .chat-video-row {
    flex-direction: column;
  }

  .youtube-box {
    width: 100%;
  }
}