/* FONT & RESET */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

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

body {
    font-family: 'Poppins', sans-serif;
    background: #0f111a;
    color: #f1f1f1;
    line-height: 1.6;
}

/* HEADER + NAV */
nav {
    background: #10131f;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color: #f1f1f1;
    margin: 0 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover {
    color: #00bfff;
}

main {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    background: #1a1d2c;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    padding: 30px;
}

h1, h2, h3 {
    color: #00bfff;
    margin-bottom: 20px;
}

/* PLAYER */
audio {
    width: 100%;
    margin: 20px 0;
    border-radius: 8px;
}

/* FORM */
form input,
form textarea,
form button {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
}

form input, form textarea {
    background: #2a2e43;
    color: #f1f1f1;
}

form button {
    background: #00bfff;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

form button:hover {
    background: #009ad6;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #10131f;
    color: #888;
    font-size: 14px;
}

/* ECHIPA */
.echipa-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 40px auto;
}

.card-membru {
    background: #1c1f2c;
    color: white;
    padding: 20px;
    border-radius: 10px;
    width: 280px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.card-membru img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.card-membru h3 {
    margin: 10px 0 5px;
    color: #00bfff;
}

/* CHAT */
.chat-message {
    background: #22273d;
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 10px;
    color: #fff;
}

.logo {
    font-size: 28px;
    font-weight: 600;
    color: #00bfff;
    text-shadow: 0 0 5px #00bfff, 0 0 10px #0077cc;
    animation: pulseLogo 2s infinite ease-in-out;
}

@keyframes pulseLogo {
    0%, 100% { text-shadow: 0 0 5px #00bfff, 0 0 10px #0077cc; }
    50% { text-shadow: 0 0 15px #00ffff, 0 0 25px #0077cc; }
}

nav {
    background: linear-gradient(90deg, #0f111a, #10131f, #0f111a);
    background-size: 200% auto;
    animation: slideHeader 6s linear infinite;
}

@keyframes slideHeader {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}
/* SLIDESHOW GENERAL */
.slideshow {
    position: relative;
    max-width: 1200px;
    height: auto; /* ← lasă înălțimea naturală */
    aspect-ratio: 16/9; /* păstrează proporție video */
    margin: 30px auto;
    overflow: hidden;
    border-radius: 10px;
    background: #000;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.slide-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
}
.slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.custom-player {
    background: #1c1f2c;
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    margin: 40px auto;
    text-align: center;
    box-shadow: 0 0 12px rgba(0,0,0,0.4);
    color: white;
}

#playPauseBtn {
    background: #00bfff;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

#playPauseBtn:hover {
    background: #0099cc;
}

#statusText {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.8;
}


/* Responsivitate generală */
@media screen and (max-width: 768px) {
    main {
        padding: 20px;
        margin: 20px auto;
    }

    .logo {
        font-size: 20px;
    }

    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    nav a {
        margin: 5px 0;
        display: block;
    }

    .echipa-container {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .chat-message {
        font-size: 14px;
    }

    form input, form textarea, form button {
        font-size: 15px;
        padding: 10px;
    }
}



---------alege-----
form select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-top: 15px;
    border-radius: 6px;
    background: #2a2e43;
    color: #fff;
    border: 1px solid #444;
}

form button {
    margin-top: 10px;
}

/*BUTON DEDICATIE*/

.dedicatie {
    text-align: left;
    margin: 40px auto;
    padding: 20px;
    max-width: 900px;
    background: #1c1f2c;
    border-radius: 10px;
}

.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: #00bfff;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background: #0099cc;
}

/*STATISTICI RADIO*/

.statistici-radio {
    text-align: center;
    background: #1f2535;
    padding: 20px;
    margin: 30px auto;
    max-width: 600px;
    border-radius: 10px;
    color: #fff;
}
.statistici-radio strong {
    color: #00bfff;
}

/*INFO GRID*/

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1000px;
    margin: 40px auto;
}

.info-grid section {
    flex: 1 1 300px;
    padding: 20px;
    border-radius: 10px;
    background: #1c1f2c;
    color: #fff;
    text-align: center;
}

.info-grid .btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 25px;
    background: #00bfff;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

/*CONTACT*/

.formular-contact {
    max-width: 600px;
    margin: 30px auto;
    background: #1c1f2c;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
}

.formular-contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.formular-contact input,
.formular-contact textarea {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #444;
    background: #2e3248;
    color: #fff;
}

.formular-contact button {
    padding: 10px 20px;
    background: #00bfff;
    border: none;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

.formular-contact button:hover {
    background: #009ad6;
}

/*BANNER ADS*/

.banner-publicitar {
    background: linear-gradient(270deg, #ff4e50, #f9d423, #ff4e50);
    background-size: 400% 400%;
    animation: bannerGlow 6s ease infinite;
    padding: 20px;
    margin: 30px auto;
    border-radius: 10px;
    max-width: 1000px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.banner-publicitar a {
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    text-shadow: 0 0 5px #000;
}

@keyframes bannerGlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/*SHOUTCAST*/

.shoutcast-info {
    text-align: center;
    background: #2a2e43;
    color: white;
    padding: 20px;
    margin: 30px auto;
    border-radius: 10px;
    max-width: 900px;
}

/* VOTURI*/

.top-voturi {
    max-width: 700px;
    margin: 40px auto;
    padding: 20px;
    background: #1c1f2c;
    color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px #0005;
    text-align: center;
}

.top-voturi h2 {
    color: #00bfff;
    margin-bottom: 20px;
}

.top-voturi ol {
    text-align: left;
    padding-left: 30px;
}

.top-voturi li {
    padding: 8px 0;
    border-bottom: 1px solid #333;
}
/*DEDICATII*/
body {
    background: #0f111b;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
}

.dedicatie-wrapper {
    max-width: 600px;
    margin: 60px auto;
    background: #1c1f2c;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
}

.dedicatie-title {
    text-align: center;
    color: #00bfff;
    margin-bottom: 30px;
}

.dedicatie-form .form-group {
    margin-bottom: 20px;
}

.dedicatie-form input,
.dedicatie-form textarea {
    width: 100%;
    padding: 14px;
    background: #2a2f45;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    transition: box-shadow 0.3s ease;
}

.dedicatie-form input:focus,
.dedicatie-form textarea:focus {
    box-shadow: 0 0 10px #00bfff;
    outline: none;
}

.btn-trimite {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    background: #00bfff;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-trimite:hover {
    background: #009acc;
}

.alert {
    padding: 12px;
    border-radius: 6px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.alert.success {
    background: #2ecc71;
    color: #fff;
}

.alert.error {
    background: #e74c3c;
    color: #fff;
}

/*PANOU DJ*/

body {
    background: #0f111b;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
}

.dj-panel {
    max-width: 800px;
    margin: 50px auto;
    padding: 40px;
    background: #1c1f2c;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.dj-panel h2 {
    text-align: center;
    color: #00bfff;
    margin-bottom: 15px;
}

.dj-panel p {
    text-align: center;
    margin-bottom: 25px;
    color: #ccc;
}

.alert.info {
    background: #2a2e43;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    color: #ccc;
    font-weight: bold;
}

.dedicatii-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dedicatie-card {
    background: #2e3248;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #0005;
}

.dedicatie-card h3 {
    margin-bottom: 10px;
    color: #00bfff;
}

.dedicatie-card p {
    margin: 5px 0;
}

.btn-marca,
.btn-logout {
    display: inline-block;
    margin-top: 10px;
    background: #00bfff;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-marca:hover,
.btn-logout:hover {
    background: #009acc;
}

/* LOGIN DJ*/

.login-box {
    max-width: 400px;
    margin: 80px auto;
    background: #1c1f2c;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
    text-align: center;
}

.login-box h2 {
    margin-bottom: 25px;
    color: #00bfff;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form input {
    width: 100%;
    padding: 12px;
    background: #2a2e43;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
}

.login-form input::placeholder {
    color: #aaa;
}

.btn-trimite {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background: #00bfff;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-trimite:hover {
    background: #009acc;
}

/*OPRIRE DEDICATII*/

.alert.offline {
    background: #2e3248;
    padding: 20px;
    border-radius: 10px;
    color: #ff6666;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 0 10px #0005;
    font-size: 16px;
}

.alert.offline .subtext {
    display: block;
    font-size: 14px;
    color: #aaa;
    margin-top: 10px;
}

/*ADMIN DJ*/

.admin-box {
    max-width: 700px;
    margin: 50px auto;
    background: #1c1f2c;
    padding: 40px;
    border-radius: 12px;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.admin-box h2 {
    text-align: center;
    color: #00bfff;
    margin-bottom: 30px;
}

.add-dj-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: #2e3248;
    border: none;
    border-radius: 8px;
    color: #fff;
}

.add-dj-form input::placeholder {
    color: #bbb;
}

.btn-trimite {
    width: 100%;
    padding: 12px;
    background: #00bfff;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.btn-trimite:hover {
    background: #009acc;
}

.dj-tabel {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background: #2a2f45;
    color: #fff;
    text-align: left;
}

.dj-tabel th,
.dj-tabel td {
    padding: 12px;
    border-bottom: 1px solid #444;
}

.btn-sterge {
    background: #e74c3c;
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}

.btn-sterge:hover {
    background: #c0392b;
}

.btn-logout {
    display: inline-block;
    background: #666;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
}

.btn-logout:hover {
    background: #888;
}


.site-header {
  background: transparent;
  padding: 20px 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 200px;
  display: block;
}

.main-nav {
  display: flex;
  gap: 30px;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
iframe {
  border-radius: 10px;
  overflow: hidden;
}

.widget-box {
  background: #111;
  color: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
}
.widget-box h3 {
  margin-bottom: 15px;
  color: #00bfff;
}

.player-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: flex-start; /* ← Asta e modificarea */
  margin: 40px auto;
  max-width: 900px;
  padding: 0 20px;
}

.custom-player,
.player-extra-box {
  background: #111;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 280px;
  text-align: center;
}
.player-image {
  width: 100%;
  max-height: 270px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}
.main-nav a svg {
  transition: fill 0.3s ease;
}
.main-nav a:hover svg {
  fill: #00bfff;
}