/* --- FONTS --- */
@font-face { font-family: 'font1'; src: url('https://file.garden/aXUfWdPgtglShqRb/fonts/Go%20around%20the%20books%202022.ttf')}
@font-face { font-family: 'font2'; src: url('https://file.garden/aXUfWdPgtglShqRb/fonts/Mikey.ttf')}
@font-face { font-family: 'font3'; src: url('https://file.garden/aXUfWdPgtglShqRb/fonts/imWeird.ttf')}
@font-face { font-family: 'font4'; src: url('https://file.garden/aXUfWdPgtglShqRb/fonts/SF-Pro.ttf')}

* {
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: #ffb7c5 #fff0f5;
}

body {
    margin: 0;
    padding: 40px 20px;
    background-color: #ffeef5; 
    background-image: url('https://file.garden/aXUfWdPgtglShqRb/music/ariana%20grande/1.gif');
    background-size: cover;
    background-attachment: fixed;
    font-family: 'font4', sans-serif;
    color: #555;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- BACK BUTTON --- */
.back-btn {
   position: fixed; top: 10px; left: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    color: rgba(51, 51, 51, 0.47); 
    padding: 6px 12px; /* Smaller padding */
    border-radius: 20px;
    text-decoration: none; 
    font-weight: 700; 
    font-size: 11px; /* Smaller text */
    border: 2px solid rgba(255, 183, 197, 0.53);
    box-shadow: 0 2px 5px rgba(255, 183, 197, 0.3);
    transition: all 0.2s ease;
    display: flex; align-items: center; gap: 5px; 
    z-index: 1000;
    backdrop-filter: blur(5px);
}
.back-btn:hover {
    background: rgba(255, 238, 245, 0.39);
    color: #ffc1e3;
    transform: translateY(-2px);
}

/* --- MAIN CONTAINER --- */
.review-container {
    width: 100%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.63);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 3px solid #fff;
    box-shadow: 0 10px 30px rgba(226, 172, 185, 0.3);
    padding: 40px;
}

/* --- HEADER SECTION --- */
.review-header {
    display: flex;
    gap: 30px;
    align-items: center;
}

.review-cover {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid #ffb7c5;
    box-shadow: 4px 4px 15px rgba(255, 183, 197, 0.5);
}

.review-info {
    flex-grow: 1;
}

.r-type {
    font-family: 'font4', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #aaa;
    margin-bottom: 5px;
}

.review-info h1 {
    font-family: 'font4', serif;
    font-size: 45px;
    color: #d88998;
    margin: 0 0 5px 0;
    line-height: 1;
}

.review-info h2 {
    font-family: 'font4', sans-serif;
    font-size: 26px;
    color: #ffc1e3;
    margin: 0 0 15px 0;
    font-weight: normal;
}

.r-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.r-meta span {
    background: #fff0f5;
    color: #d48ba8;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    border: 1px solid #ffc1e3;
}

.r-rating-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px 15px;
    border-radius: 12px;
    border: 2px solid #ffc1e3;
}
.r-stars { font-size: 15px; color: #ffc1e3;}
.r-score { font-family: 'font4', sans-serif; font-weight: bold; color: #d88998;}

.cute-divider {
    border: none;
    border-top: 2px solid #ffc1e3;
    margin: 35px 0;
    opacity: 0.6;
}

/* --- TRACKLIST SECTION --- */
.tracklist-section h3, .review-body h3 {
    font-family: 'font4', serif;
    font-size: 28px;
    color: #d88998;
    margin-top: 0;
    margin-bottom: 20px;
}

.track-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5px;
    border-bottom: 1px solid #ffeef5;
    transition: 0.2s;
}
.track-item:hover {
    background: #fafafa;
    border-radius: 5px;
    transform: translateX(5px);
}

.track-left { font-family: 'font4', sans-serif; font-size: 14px;}
.track-num { color: #aaa; font-weight: bold; margin-right: 8px; width: 20px; display: inline-block;}
.track-name { color: #ecbcc5; font-weight: bold; margin-right: 10px;}
.track-thoughts { color: #888; font-style: italic;}
.track-rating { color: #d88998; font-size: 12px;}

/* --- REVIEW BODY --- */
.review-body {
    margin-top: 40px;
}
.review-body p {
    font-family: 'font4', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

/* --- FAVORITES BOX --- */
.favorites-box {
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.57) 0%, rgba(255, 255, 255, 0.56) 100%);
    border: 2px solid rgba(255, 183, 197, 0.45);
    border-radius: 15px;
    padding: 20px 25px;
    margin-top: 40px;
    box-shadow: 4px 4px 0 #ffeef5;
}

.favorites-box h4 {
    font-family: 'font4', sans-serif;
    color: #d88998;
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.favorites-box ul {
    margin: 0;
    padding-left: 20px;
}

.favorites-box li {
    font-family: 'font4', sans-serif;
    color: #d88998;
    margin-bottom: 8px;
    line-height: 1.4;
}
.favorites-box li strong {
    color: rgba(218, 153, 189, 0.69);
}

/* Make it look good on mobile screens too! */
@media (max-width: 600px) {
    .review-header { flex-direction: column; text-align: center; }
    .r-meta { justify-content: center; }
    .track-item { flex-direction: column; align-items: flex-start; gap: 5px;}
}