@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&display=swap');

/* Core layout */
.taboo-now-playing {
    background-color: #0a0a0a;
    color: #ff4ec8;
    font-family: 'Orbitron', sans-serif;
    border: 2px solid #ff4ec8;
    border-radius: 12px;
    padding: 20px;
    max-width: 700px;
    margin: 20px auto;
    box-shadow: 0 0 20px #ff4ec8;
    text-align: center;
}

/* Section headers */
.taboo-header {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 0 0 12px #ff4ec8;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.taboo-header.upcoming {
    margin-top: 30px;
    color: #c186f9;
    text-shadow: 0 0 10px #c186f9;
}

/* Track block */
.taboo-track {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px;
    border-bottom: 1px dashed rgba(255, 78, 200, 0.4);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.taboo-track:last-child {
    border-bottom: none;
}

.taboo-track:hover {
    background-color: rgba(255, 78, 200, 0.07);
    box-shadow: 0 0 15px #ff4ec8;
}

.taboo-track .artist,
.taboo-track .title {
    font-size: 1.3em;
    font-weight: bold;
    color: #ffffff;
}

.taboo-track .separator {
    color: #ff4ec8;
    font-weight: bold;
    margin: 0 5px;
}

.taboo-track .duration {
    font-size: 1em;
    color: #c186f9;
    margin-left: 10px;
}
.taboo-request-form {
    max-width: 600px;
    margin: 30px auto;
    background: #0a0a0a;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 20px #ff4ec8;
    font-family: 'Orbitron', sans-serif;
    color: #ff4ec8;
}

.taboo-request-form input[type="text"],
.taboo-request-form textarea {
    width: 100%;
    background: transparent;
    border: 2px solid #ff4ec8;
    border-radius: 8px;
    padding: 14px 12px 6px;
    color: #fff;
    font-size: 1em;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.taboo-request-form input[type="text"]:focus,
.taboo-request-form textarea:focus {
    outline: none;
    box-shadow: 0 0 10px #ff4ec8;
}

.taboo-request-form label {
    position: absolute;
    margin-left: 12px;
    margin-top: -35px;
    font-size: 0.9em;
    color: #c186f9;
    pointer-events: none;
    transition: 0.2s ease all;
}

.taboo-field {
    position: relative;
    margin-bottom: 2.5em;
}

.taboo-request-form input[type="submit"] {
    background: linear-gradient(90deg, #ff4ec8, #c186f9);
    color: #0a0a0a;
    font-weight: bold;
    border: none;
    padding: 15px 30px;
    font-size: 1.1em;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 0 15px #ff4ec8;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.taboo-request-form input[type="submit"]:hover {
    background: linear-gradient(90deg, #c186f9, #ff4ec8);
    color: #fff;
    box-shadow: 0 0 25px #ff4ec8;
}
.taboo-request-table {
    max-width: 800px;
    margin: 30px auto;
    font-family: 'Orbitron', sans-serif;
}

.taboo-request-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 10px;
    background-color: #141414;
    border-left: 5px solid #ff4ec8;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.taboo-request-row:hover {
    background-color: rgba(255, 78, 200, 0.1);
    box-shadow: 0 0 15px #ff4ec8;
}

.taboo-track-info {
    color: #fff;
    font-size: 1.1em;
}

.taboo-track-info .separator {
    color: #ff4ec8;
    margin: 0 6px;
}

.taboo-track-info .duration {
    font-size: 0.9em;
    color: #c186f9;
    margin-left: 10px;
}

.taboo-request-button a {
    background: linear-gradient(90deg, #ff4ec8, #c186f9);
    color: #0a0a0a;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    box-shadow: 0 0 10px #ff4ec8;
    transition: all 0.3s ease;
}

.taboo-request-button a:hover {
    background: linear-gradient(90deg, #c186f9, #ff4ec8);
    color: #ffffff;
    box-shadow: 0 0 20px #ff4ec8;
}

/* Search Bar */
.taboo-search-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    font-family: 'Orbitron', sans-serif;
}

.taboo-search-form input[type="text"] {
    background: #1a1a1a;
    border: 2px solid #ff4ec8;
    color: #ff4ec8;
    padding: 10px;
    border-radius: 6px;
    width: 300px;
}

.taboo-search-form input[type="submit"] {
    background: linear-gradient(90deg, #ff4ec8, #c186f9);
    border: none;
    color: #0a0a0a;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 0 10px #ff4ec8;
    transition: all 0.3s ease;
}

.taboo-search-form input[type="submit"]:hover {
    background: linear-gradient(90deg, #c186f9, #ff4ec8);
    color: #ffffff;
}
/* Success Message */
.noticediv {
    background: #0a0a0a;
    border-left: 5px solid #00ffcc;
    color: #00ffcc;
    font-family: 'Orbitron', sans-serif;
    padding: 20px;
    margin: 30px auto;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 0 15px #00ffcc;
    text-align: center;
    font-size: 1.1em;
    text-shadow: 0 0 6px #00ffcc;
}

/* Error Message */
.errordiv {
    background: #1a0008;
    border-left: 5px solid #ff4ec8;
    color: #ff4ec8;
    font-family: 'Orbitron', sans-serif;
    padding: 20px;
    margin: 30px auto;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 0 15px #ff4ec8;
    text-align: center;
    font-size: 1.1em;
    text-shadow: 0 0 6px #ff4ec8;
}
.taboo-listen-button {
  display: inline-block;
  padding: 12px 24px;
  margin: 40px auto;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #e60073, #ff00cc);
  border: 2px solid #ff00cc;
  border-radius: 50px;
  box-shadow: 0 0 20px rgba(255, 0, 204, 0.6);
  transition: all 0.3s ease-in-out;

  /* Centering */
  display: block;
  width: fit-content;
  text-align: center;
}

.taboo-listen-button:hover {
  background: #111;
  color: #ff00cc;
  box-shadow: 0 0 30px rgba(255, 0, 204, 0.8);
}
#taboo-request-form {
    background-color: #1a1a1a;
    border: 2px solid #e60073;
    border-radius: 16px;
    padding: 20px;
    max-width: 500px;
    margin: 20px auto;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 0 15px rgba(230, 0, 115, 0.5);
}

#taboo-request-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #e60073;
}

#taboo-request-form input[type="text"],
#taboo-request-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 16px;
    border: none;
    border-radius: 10px;
    background-color: #2c2c2c;
    color: #fff;
    font-size: 16px;
}

#taboo-request-form input[type="text"]::placeholder {
    color: #bbb;
}

#submit-request {
    background-color: #e60073;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#submit-request:hover {
    background-color: #ff3399;
}

.taboo-request-status {
    margin-top: 15px;
    font-weight: bold;
    color: #00ffcc;
    text-align: center;
}

.taboo-nowplaying-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: flex-start;
    flex-wrap: wrap;
    text-align: left;
}

.taboo-request-heading {
    font-size: 2rem;
    color: #e60073;
    font-family: 'Segoe UI', sans-serif;
    margin-bottom: 20px;
    text-shadow: 0 0 12px #e60073;
    text-align: center;
}

.taboo-nowplaying-wrapper {
    gap: 30px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.taboo-nowplaying-artwork {
    flex-shrink: 0;
    width: 200px !important;
    height: 200px !important;
    background-color: #1a1a1a;
    border: 2px solid #ff4ec8;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px #ff4ec8;
}

.taboo-nowplaying-artwork img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

.taboo-nowplaying-info {
    flex: 1;
    min-width: 0;
}

.taboo-nowplaying-info .taboo-header {
    text-align: center !important;
    margin-bottom: 10px;
    font-size: 1.5em;
    color: #ffffff;
    text-shadow: 0 0 12px #ff4ec8;
}

.taboo-track.current {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    box-shadow: none;
    gap: 5px;
    text-align: center;
}

.taboo-track.current .artist {
    font-size: 1.5em;
    font-weight: bold;
    color: #ffffff;
}

.taboo-track.current .title {
    font-size: 1.3em;
    color: #c186f9;
}

.taboo-track.current .separator {
    color: #ff4ec8;
    font-weight: bold;
    margin: 0 6px;
}
.taboo-track.current .artist {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 5px;
    color: #ffffff;
}

.taboo-track.current .title {
    font-size: 1.3em;
    color: #c186f9;
}
.taboo-box { /* … */ }
.taboo-box__title { /* … */ }
.taboo-current-dj__photo { width:300px; height:300px; /* … */ }
.taboo-current-dj__show { /* … */ }
.taboo-current-dj__name { /* … */ }
.taboo-current-dj-box {
  background: #1a1a1a;
  border: 2px solid #ff4ec8;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
}

.taboo-current-dj-box .taboo-header {
  font-size: 1.5rem;
  color: #e60073;
  text-align: center;
  margin: 0 0 15px;
}


