/* footer-style.css */
.main-footer-dark {
    background: #0b0b0b;
    color: #ffffff;
    padding: 60px 0 0 0;
    font-family: 'Segoe UI', Roboto, sans-serif;
    border-top: 3px solid #e81717;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    /* Forțăm coloana să își alinieze conținutul la stânga pe desktop */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-title {
    color: #ffffff;
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    /* SCHIMBARE CHEIE: inline-block face containerul exact cât textul */
    display: inline-block; 
}

.footer-title::after {
    content: '';
    position: absolute;
    /* Aliniere sub text */
    left: 0; 
    bottom: -10px;
    width: 45px;
    height: 3px;
    background: #e81717;
}

.footer-text {
    font-size: 17px; /* Text mărit conform cerinței */
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: left;
}
.footer-text {
    font-size: 16px !important;
    color: #ffffff !important;
}


.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: left;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #e81717;
    transform: translateX(8px);
}

.footer-contact-info {
    text-align: left;
}

.footer-contact-info p {
    font-size: 17px;
    color: #fff;
    margin: 10px 0;
}

.broadcast-box {
    background: #151515;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #e81717;
    margin-top: 20px;
    width: 100%;
    box-sizing: border-box;
}

.broadcast-bitrate {
    display: block;
    font-size: 22px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 5px;
}

.footer-bottom {
    background: #000000;
    padding: 25px 0;
    margin-top: 50px;
    border-top: 1px solid #222;
    text-align: center;
    width: 100%;
}

.footer-bottom p {
    font-size: 16px;
    color: #999;
    margin: 0;
}

/* Ajustări pentru Mobil */
@media (max-width: 768px) {
    .footer-col {
        align-items: center; /* Centrează totul pe mobil */
        text-align: center;
    }
    
    .footer-container {
        flex-direction: column;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-text, .footer-links, .footer-contact-info {
        text-align: center;
    }

    .footer-links a:hover {
        transform: none;
    }
}












/* Container pentru centrarea cardului în pagină */
  .page-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
      background-color: #fff; /* Culoare de fundal opțională */
    padding: 20px;
  }

  /* Containerul principal de tip Card */
  .retro-card {
    display: flex;
    align-items: stretch; /* Face ca ambele coloane să aibă aceeași înălțime */
    width: 100%;
    max-width: 900px; /* Ajustat pentru un aspect mai echilibrat */
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9e;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-decoration: none;
    color: #333;
  }

  /* Efectul la trecerea mouse-ului */
  .retro-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }

  /* Secțiunea Stânga (1/3) */
  .card-logo {
    flex: 1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px; /* Spațiu interior generos */
    border-right: 1px solid #eee;
  }

  /* Stil pentru imaginea Logo-ului - MĂRITĂ */
  .card-logo img {
    width: 100%;
    height: auto;
    max-width: 200px; /* Limită maximă pentru a nu deveni pixelată */
    object-fit: contain;
  }

  /* Secțiunea Dreapta (2/3) */
  .card-content {
    flex: 2;
    padding: 40px; /* Mai mult padding pentru un aspect premium */
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .card-content h3 {
    margin: 0 0 15px 0;
    font-size: 24px;
    color: #222;
  }

  .card-content p {
    margin: 0 0 25px 0;
    font-size: 18px;
    color: #444;
    line-height: 1.6;
  }

  /* Butonul */
  .btn-radio {
    display: inline-block;
    background: #d32f2f;
    color: #fff;
    text-align: center;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
    border: 2px solid #d32f2f;
  }

  .btn-radio:hover {
    background: #fff;
    color: #d32f2f;
    border: 2px solid #d32f2f;
  }

  /* Ajustare pentru ecrane mici (mobile) */
  @media (max-width: 600px) {
    .retro-card {
      flex-direction: column;
    }
    .card-logo {
      border-right: none;
      border-bottom: 1px solid #eee;
    }
  }
  
  
  
  
  
  
  
  
  
  
  
  .live-streaming-container {
        background: #ffffff;
        border-radius: 15px;
        padding: 40px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.05);
        margin: 40px auto;
        max-width: 1100px;
        border: 1px solid #f0f0f0;
    }

    .live-content-row {
        display: flex;
        gap: 40px;
        align-items: center;
        flex-wrap: wrap;
    }

    .live-details-col {
        flex: 1;
        min-width: 300px;
    }

    .live-image-col {
        flex: 1;
        min-width: 300px;
        text-align: center;
    }

    .live-main-title {
        color: #e81717;
        font-size: 24px;
        font-weight: 800;
        margin-bottom: 25px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .info-grid {
        display: grid;
        gap: 15px;
        margin-bottom: 25px;
    }

    .info-item {
        border-bottom: 1px solid #f5f5f5;
        padding-bottom: 10px;
    }

    .info-label {
        display: block;
        font-size: 11px;
        color: #333;
        font-weight: 700;
        margin-bottom: 4px;
    }

    .info-value {
        display: block;
        font-size: 16px; /* Font mare și clar */
        color: #222;
        font-family: 'Courier New', Courier, monospace;
        word-break: break-all;
    }

    .live-description {
        font-size: 15px;
        color: #222;
        margin-bottom: 30px;
    }

    /* Buton Winamp Modern */
    .winamp-btn {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: #333;
        color: #fff !important;
        text-decoration: none !important;
        padding: 12px 25px;
        border-radius: 50px;
        font-weight: 700;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .winamp-btn:hover {
        transform: translateY(-3px);
        background: #e81717; /* Se schimbă în roșu la hover */
        box-shadow: 0 6px 20px rgba(232, 23, 23, 0.4);
    }

    .winamp-icon {
        width: 20px;
        height: 20px;
        filter: brightness(0) invert(1);
    }

    .live-featured-img {
        width: 100%;
        max-width: 450px;
        border-radius: 12px;
        transition: transform 0.5s ease;
    }

    .live-featured-img:hover {
        transform: scale(1.02);
    }

    @media (max-width: 800px) {
        .live-content-row { flex-direction: column; }
        .live-streaming-container { padding: 25px; }
        .live-image-col { order: -1; } /* Imaginea trece sus pe mobil */
    }
