/* ===========================
   BEGIN THEME — BRILLIANT CLASSICS
   =========================== */

body {
    font-family: "Georgia", serif;
    background: #0f1418;
    color: #e6ecf2;
    padding: 20px;
}

/* Title */
h1 {
    font-family: "Georgia", serif;
    font-weight: normal;
    color: #dfe6f0;
    letter-spacing: 0.04em;
    margin-bottom: 30px;
}

/* Track card */
.track {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 6px;
    background: #12171c;
    border: 1px solid #2f3a45;
    box-shadow: 0 0 18px rgba(0,0,0,0.35);
}

/* Cover */
.cover img {
    width: 120px;
    height: auto;
    border-radius: 4px;
    border: 1px solid #3a4650;
}

/* Info */
.info {
    flex: 1;
    font-family: "Georgia", serif;
}

.meta {
    font-size: 0.9em;
    color: #b8c3cc;
    margin-top: 6px;
}

/* Audio player */
audio {
    width: 100%;
    margin-top: 12px;
    filter: drop-shadow(0 0 4px rgba(0,0,0,0.4));
}

/* Search box */
.searchbox {
    text-align:center;
    margin:20px 0;
}

.searchbox input {
    padding:8px;
    width:260px;
    border-radius:4px;
    border:1px solid #3a4650;
    background:#1a2128 !important;
    color:#e6ecf2;
    font-family: "Georgia", serif;
}

.searchbox button {
    padding:8px 14px;
    margin-left:6px;
    border-radius:4px;
    border:1px solid #3a4650;
    background:#2d4a63;
    color:#e6ecf2;
    cursor:pointer;
    font-family: "Georgia", serif;
}

.searchbox button:hover {
    background:#3c5f7f;
}

.searchbox a {
    padding:8px 14px;
    margin-left:10px;
    border-radius:4px;
    background:#3a4650;
    color:#fff;
    text-decoration:none;
    font-family: "Georgia", serif;
}

.searchbox a:hover {
    background:#4a5863;
}

/* Pagination */
.pagination {
    text-align:center;
    margin-top:30px;
}

.pagination a {
    color:#e6ecf2;
    padding:8px 12px;
    margin:0 4px;
    background:#2d4a63;
    text-decoration:none;
    border-radius:4px;
    border:1px solid #3a4650;
    font-family: "Georgia", serif;
}

.pagination a.active {
    background:#3c5f7f;
}

.pagination a:hover {
    background:#4a6a85;
}

/* ===========================
   TRACK CARD HOVER EFFECT
   =========================== */

.track {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.track:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 26px rgba(0,0,0,0.55);
    border-color: #4a5a66;
}

/* ===========================
   TRACK CARD ICE GLOW
   =========================== */

.track:hover {
    box-shadow:
        0 0 26px rgba(0,0,0,0.55),
        0 0 14px rgba(180, 210, 230, 0.25),
        0 0 28px rgba(180, 210, 230, 0.15);
    border-color: #5f7a8a;
}

/* ===========================
   COVER ZOOM ON HOVER
   =========================== */

.cover img {
    transition: transform 0.35s ease, filter 0.35s ease;
}

.track:hover .cover img {
    transform: scale(1.04);
    filter: brightness(1.08);
}

/* ===========================
   LOGOUT BUTTON (TOP RIGHT)
   =========================== */

.logout-box {
    position: absolute;
    top: 20px;
    right: 20px;
}

.logout-box a {
    font-family: "Georgia", serif;
    padding: 6px 14px;
    background: #2d4a63;
    color: #e6ecf2;
    border-radius: 4px;
    border: 1px solid #3a4650;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.logout-box a:hover {
    background: #3c5f7f;
    border-color: #5f7a8a;
}

/* ===========================
   EXTRA BUTTONS (BOOKLET + SCORES)
   =========================== */

.extra-buttons {
    text-align:center;
    margin: 30px 0 10px 0;
}

.btn-extra {
    display:inline-block;
    margin: 6px 10px;
    padding: 10px 18px;
    font-family: "Georgia", serif;
    background: #2d4a63;
    color: #e6ecf2;
    border-radius: 4px;
    border: 1px solid #3a4650;
    text-decoration:none;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.btn-extra:hover {
    background:#3c5f7f;
    border-color:#5f7a8a;
    box-shadow:0 0 12px rgba(180,210,230,0.25);
}

/* ===========================
   FOOTER — BRILLIANT CLASSICS
   =========================== */

.bc-footer {
    margin-top: 60px;
    padding-top: 25px;
    padding-bottom: 20px;
    text-align: center;
    font-family: "Georgia", serif;
    color: #b8c3cc;
    font-size: 0.85em;
    opacity: 0.85;
}

.bc-footer-line {
    width: 120px;
    height: 1px;
    background: #3a4650;
    margin: 0 auto 15px auto;
    opacity: 0.6;
}

.bc-footer-text {
    line-height: 1.6;
    letter-spacing: 0.03em;
}

/* ===========================
   FADE HEADER → CONTENT
   =========================== */

.bc-fade-separator {
    width: 100%;
    height: 60px;
    margin-top: -10px;
    background: linear-gradient(
        to bottom,
        rgba(15, 20, 24, 1) 0%,
        rgba(15, 20, 24, 0.85) 30%,
        rgba(18, 23, 28, 0.6) 60%,
        rgba(18, 23, 28, 0) 100%
    );
}


/* ===========================
   END THEME — BRILLIANT CLASSICS
   =========================== */