:root {
    --bg-color: #f4f7f6;      /* Lunar/Off-white */
    --accent-magic: #88a9c3;  /* Ethereal blue */
    --text-color: #2f3640;
    --white: #ffffff;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Figtree", sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    min-height: 100vh;
    scroll-behavior: smooth;
}

/* Main Layout Wrapper */
.review-container {
    display: flex;
    flex-direction: row;
    max-width: 1000px;
    margin-top: 80px;
    padding: 40px 20px;
    gap: 50px;
}

/* Character Sidebar (Sticky so it stays as you scroll) */
.character-sidebar {
    flex: 0 0 300px;
    text-align: center;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.image-box img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.image-box img:hover {
    transform: scale(1.03) rotate(1deg);
}

.article-title h1 {
    font-family: "Google Sans", sans-serif;
    font-size: 1.8rem;
    margin-top: 25px;
    color: var(--text-color);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Article Styling */
.review-content {
    max-width: 600px;
}

.review-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    font-weight: 400;
}

/* Floating Back Button */
.floating-back-btn {
    position: fixed;
    top: 25px;
    left: 25px;
    z-index: 1000;
    font-family: 'Google Sans', sans-serif;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.1);
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    font-weight: 600;
}

.floating-back-btn:hover {
    transform: translateX(-5px);
    background-color: var(--white);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Responsive Fix for Mobile */
@media (max-width: 850px) {
    .review-container {
        flex-direction: column;
        align-items: center;
        margin-top: 100px;
    }
    .character-sidebar {
        position: static;
        flex: none;
    }
}

#comment-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

#comment-form input, #comment-form textarea {
    font-family: 'Figtree', sans-serif;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s;
}

#comment-form input:focus, #comment-form textarea:focus {
    border-color: #88a9c3;
}

#comment-form button {
    background-color: #2f3640;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-family: 'Google Sans';
    font-weight: bold;
    cursor: pointer;
    width: fit-content;
    transition: background 0.3s;
}

#comment-form button:hover {
    background-color: #88a9c3;
}