:root {
    --accent: #2d8268;
    --accent-hover: #236852;
}

body {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 10pt;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    background-color: #fafafa;
    color: #333333;
}

.layout {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 200px;
    background-color: #f0f0f0;
    padding: 30px 20px;
    border-right: 1px solid #e0e0e0;
    box-sizing: border-box;
}

.sidebar h2 {
    font-size: 14pt;
    font-weight: normal;
    margin: 0 0 20px 0;
    color: #333333;
}

.sidebar nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar nav li {
    margin: 8px 0;
}

.sidebar nav a {
    color: #666666;
    text-decoration: none !important;
    font-size: 10pt;
    display: block;
    padding: 4px 0;
    transition: color 0.2s ease;
}

.sidebar nav a:hover {
    color: var(--accent-hover);
}

.sidebar nav a.active {
    color: var(--accent);
}

.sidebar nav a.active {
    border-left: 3px solid var(--accent);
    padding-left: 8px;
}

.main-content {
    flex: 1;
    padding: 30px 40px;
    max-width: 700px;
}

h1 {
    font-size: 20pt;
    font-weight: normal;
    margin: 0 0 25px 0;
    color: #222222;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.h1-sub {
    font-size: 10pt;
    color: #888888;
    font-weight: normal;
    margin-left: 4px;
}

body.dark .h1-sub {
    color: #777777;
}

p {
    margin: 18px 0;
}

ul {
    margin: 5px 0;
    padding-left: 20px;
}

li {
    margin: 2px 0;
}

a {
    color: var(--accent);
    text-decoration: underline;
}

a:hover {
    color: var(--accent-hover);
}

hr {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 30px 0;
}

.quote-block {
    border-left: 3px solid #ddd;
    padding: 10px 0 10px 20px;
    margin: 35px 0;
}

.quote-text {
    font-size: 11pt;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.quote-author {
    font-size: 10pt;
    color: #666666;
    text-align: right;
    margin: 0;
    font-style: italic;
}

.quote-note {
    font-size: 9pt;
    color: #000000;
    background-color: #f9f9f9;
    padding: 10px 15px;
    margin-top: 15px;
    border-radius: 4px;
    border-left: 2px solid #992828;
}

small {
    font-size: 9pt;
}

.profile-photo {
    width: 240px;
    margin-top: 20px;
}

.mobile-header { display: none; }
.drawer-overlay { display: none; }
.drawer-close { display: none; }

.bookshelf-page {
    max-width: 1000px;
}

.bookshelf-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.book-card {
    background: #f6f6f6;
    border-radius: 6px;
    padding: 16px;
    display: flex;
    flex-direction: column;
}

body.dark .book-card {
    background: #252525;
}

.book-card-cover {
    display: none;
}

.book-type-label {
    display: block;
    font-size: 7.5pt;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
    margin-bottom: 6px;
}

body.dark .book-type-label {
    color: #666;
}

.book-title {
    font-size: 11pt;
    font-weight: bold;
    margin: 0 0 4px 0;
}

.book-title a {
    color: inherit;
    text-decoration: none;
}

body.dark .book-title {
    color: #e0e0e0;
}

.book-author {
    font-size: 9pt;
    color: #888888;
    margin: 0;
}

body.dark .book-author {
    color: #777777;
}

.main-content ul {
    list-style: none;
    margin: 5px 0;
    padding-left: 0;
}

.main-content li {
    margin: 2px 0;
    padding-left: 16px;
    position: relative;
    font-size: 9pt;
}

.main-content li::before {
    content: "·";
    position: absolute;
    left: 4px;
    color: #999999;
}

body.dark .main-content li::before {
    color: #666666;
}

@media (max-width: 768px) {
    .layout {
        display: block;
    }

    .mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: sticky;
        top: 0;
        z-index: 100;
        background-color: #f0f0f0;
        border-bottom: 1px solid #e0e0e0;
        padding: 10px 16px;
        height: 48px;
        box-sizing: border-box;
    }

    .mobile-header-title {
        font-size: 14pt;
        font-weight: normal;
        color: #333333;
    }

    .mobile-header .theme-toggle {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 0;
        opacity: 0.6;
    }

    .hamburger {
        background: none;
        border: none;
        outline: none;
        cursor: pointer;
        width: 44px;
        height: 44px;
        padding: 0;
        color: #333333;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 220px;
        max-width: 80vw;
        height: 100dvh;
        z-index: 200;
        transform: translateX(-100%);
        transition: transform 0.25s ease;
        will-change: transform;
        border-right: 1px solid #e0e0e0;
        padding: 30px 20px;
        overflow-y: auto;
        box-sizing: border-box;
    }

    .sidebar.drawer-open {
        transform: translateX(0);
    }

    .sidebar .theme-toggle {
        display: none;
    }

    .drawer-close {
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        outline: none;
        cursor: pointer;
        width: 44px;
        height: 44px;
        padding: 0;
        color: #333333;
        border-radius: 4px;
        position: absolute;
        top: 12px;
        right: 12px;
    }

    .drawer-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 150;
        cursor: pointer;
    }

    .drawer-overlay.active {
        display: block;
    }

    body.drawer-open-body {
        overflow: hidden;
    }

    .main-content {
        padding: 20px 16px;
        max-width: 100%;
    }

    .quote-block {
        margin: 24px 0;
        padding-left: 14px;
    }

    .profile-photo {
        max-width: 100%;
    }

    .bookshelf-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    h1 {
        font-size: 15pt;
    }

    .h1-sub {
        font-size: 8pt;
    }
}

.theme-toggle {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 4px 0;
    margin-top: 16px;
    display: block;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.theme-toggle:hover {
    opacity: 1;
}

.theme-toggle svg {
    width: 16px;
    height: 16px;
}

.theme-toggle .theme-icon-sun { display: none; }
body.dark .theme-toggle .theme-icon-moon { display: none; }
body.dark .theme-toggle .theme-icon-sun { display: block; }

body.dark .theme-toggle { color: #ffffff; }

body.dark {
    --accent: #5ec2a4;
    --accent-hover: #7dd4b8;
    background-color: #1e1e1e;
    color: #d4d4d4;
}

body.dark .sidebar {
    background-color: #262626;
    border-color: #333333;
}

body.dark .sidebar h2 {
    color: #d4d4d4;
}

body.dark .sidebar nav a {
    color: #999999;
}

body.dark .sidebar nav a:hover {
    color: var(--accent-hover);
}

body.dark .sidebar nav a.active {
    color: var(--accent);
}

body.dark .sidebar nav a.active {
    border-left-color: var(--accent);
}

body.dark .mobile-header {
    background-color: #262626;
    border-color: #333333;
}

body.dark .mobile-header-title {
    color: #d4d4d4;
}

body.dark .hamburger {
    color: #d4d4d4;
}

body.dark .drawer-close {
    color: #d4d4d4;
}

body.dark .drawer-overlay.active {
    background: rgba(0, 0, 0, 0.6);
}

body.dark h1 {
    color: #e0e0e0;
    border-bottom-color: #333333;
}

body.dark a {
    color: var(--accent);
}

body.dark hr {
    border-top-color: #333333;
}

body.dark .quote-block {
    border-left-color: #444;
}

body.dark .quote-author {
    color: #999999;
}

body.dark .quote-note {
    background-color: #2e2e2e;
    color: #d4d4d4;
    border-left-color: #cc4444;
}


body.dark .mobile-header .theme-toggle {
    color: #d4d4d4;
}

.gb-form {
    margin-bottom: 30px;
}

.gb-field {
    margin-bottom: 12px;
}

.gb-field label {
    display: block;
    margin-bottom: 4px;
    font-size: 9pt;
    color: #666666;
}

.gb-field input,
.gb-field textarea {
    width: 100%;
    padding: 8px 10px;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 10pt;
    border: 1px solid #ddd;
    border-radius: 3px;
    background: #fff;
    color: #333;
    box-sizing: border-box;
}

.gb-field textarea {
    resize: vertical;
}

.gb-field input:focus,
.gb-field textarea:focus {
    outline: none;
    border-color: #999;
}

.gb-submit {
    background: #333;
    color: #fff;
    border: none;
    padding: 8px 20px;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 10pt;
    border-radius: 3px;
    cursor: pointer;
}

.gb-submit:hover {
    background: #555;
}

.gb-status {
    font-size: 9pt;
    margin-top: 8px;
    min-height: 1.2em;
}

.gb-status-success {
    color: #2a7d2a;
}

.gb-status-error {
    color: #cc3333;
}

.gb-entry {
    border-left: 3px solid #ddd;
    padding: 10px 0 10px 16px;
    margin: 20px 0;
}

.gb-entry-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 4px;
}

.gb-entry-name {
    font-weight: bold;
    font-size: 10pt;
}

.gb-entry-date {
    font-size: 8pt;
    color: #999;
}

.gb-entry-message {
    font-size: 10pt;
    line-height: 1.5;
    white-space: pre-wrap;
}

.gb-delete {
    color: #cc3333;
    font-size: 8pt;
    margin-left: 8px;
}

.gb-delete:hover {
    text-decoration: underline;
}

body.dark .gb-field label {
    color: #999;
}

body.dark .gb-field input,
body.dark .gb-field textarea {
    background: #2e2e2e;
    border-color: #444;
    color: #d4d4d4;
}

body.dark .gb-field input:focus,
body.dark .gb-field textarea:focus {
    border-color: #777;
}

body.dark .gb-submit {
    background: #555;
    color: #eee;
}

body.dark .gb-submit:hover {
    background: #777;
}

body.dark .gb-status-success {
    color: #5cb85c;
}

body.dark .gb-status-error {
    color: #e74c3c;
}

body.dark .gb-entry {
    border-left-color: #444;
}

body.dark .gb-entry-date {
    color: #777;
}

body.dark .gb-delete {
    color: #e74c3c;
}

/* Music page */
.music-section-title {
    font-size: 13pt;
    font-weight: normal;
    color: #222;
    margin: 30px 0 15px 0;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 6px;
}

body.dark .music-section-title {
    color: #e0e0e0;
    border-bottom-color: #333;
}

/* Music page wider layout */
.music-page {
    max-width: 1000px;
}

/* Artist grid */
.artist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.artist-card {
    position: relative;
    aspect-ratio: 1;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.artist-card:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.artist-card a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.artist-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.artist-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 10px 8px 10px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #fff;
}

.artist-card-name {
    font-size: 10pt;
    font-weight: bold;
    display: block;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.radar-chart {
    width: 220px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

/* Tracks list */
.track-list {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 3;
    column-gap: 24px;
}

.track-list li {
    padding-left: 0;
}

.track-list li::before {
    content: none;
}

.track-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid #f0f0f0;
    break-inside: avoid;
}

body.dark .track-row {
    border-bottom-color: #2e2e2e;
}

.track-art {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
}

.track-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.track-name {
    font-size: 10pt;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-artist {
    font-size: 8pt;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.dark .track-artist {
    color: #777;
}

body.dark .artist-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

/* Video games page */
.games-page {
    max-width: 1000px;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.game-card {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game-card:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

body.dark .game-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.poster-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 10px 8px 10px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #fff;
}

.poster-card-title {
    font-size: 10pt;
    font-weight: bold;
    display: block;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.poster-card-year {
    font-size: 8pt;
    opacity: 0.85;
    display: block;
    margin-top: 1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}


/* Movies & TV page wider layout */
.movies-tv-page {
    max-width: 1000px;
}

/* Poster grid */
.poster-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.poster-card {
    position: relative;
    aspect-ratio: 2 / 3;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.poster-card:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.poster-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tmdb-attribution {
    text-align: center;
    font-size: 8pt;
    color: #999;
    margin-top: 20px;
}

body.dark .tmdb-attribution {
    color: #666;
}

body.dark .poster-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .poster-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .track-list {
        columns: 1;
    }

    .track-art {
        width: 80px;
        height: 80px;
    }

    .artist-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Travel page */
.travel-page {
    max-width: 1000px;
}

.travel-map-container {
    max-width: 100%;
    margin: 0 auto 30px auto;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    background: #fafafa;
    position: relative;
    touch-action: pan-x pan-y;
}

.travel-map-hint {
    position: absolute;
    bottom: 8px;
    right: 10px;
    font-size: 7.5pt;
    color: #999;
    pointer-events: none;
}

body.dark .travel-map-hint {
    color: #666;
}

.travel-map-container svg {
    width: 100%;
    height: auto;
    display: block;
}

.travel-map-container svg path {
    fill: #e0e0e0;
    stroke: #fff;
    stroke-width: 0.5;
    transition: fill 0.2s ease, opacity 0.2s ease;
}

.travel-map-container svg path.visited {
    fill: #7B9EBD;
    cursor: pointer;
}

.travel-map-container svg path.visited:hover {
    opacity: 0.75;
}

body.dark .travel-map-container {
    border-color: #333;
    background: #262626;
}

body.dark .travel-map-container svg path {
    fill: #333;
    stroke: #1e1e1e;
}

body.dark .travel-map-container svg path.visited {
    fill: #5A8A8D;
}

.travel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.travel-card {
    position: relative;
    aspect-ratio: 3 / 2;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.travel-card:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.travel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.travel-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 10px 8px 10px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #fff;
}

.travel-card-city {
    font-size: 10pt;
    font-weight: bold;
    display: block;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.travel-card-year {
    font-size: 8pt;
    opacity: 0.85;
    display: block;
    margin-top: 1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

body.dark .travel-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .travel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Trading dashboard */
.chart-wrap {
    --chart-green: #2a7d2a;
    --chart-red: #cc3333;
    --chart-text: #888;
    --chart-border: rgba(0,0,0,0.08);
    --chart-heading: #222;
    --chart-bg: #f6f6f6;
    --chart-panel-bg: #fff;
    background: var(--chart-bg);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.chart-wrap svg { display: block; }
.chart-wrap svg text { fill: var(--chart-text); font-family: 'SF Mono', Monaco, 'Courier New', monospace; font-size: 10px; }
.chart-wrap svg .chart-line { fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.chart-wrap svg .chart-baseline { stroke: var(--chart-text); stroke-width: 1; stroke-dasharray: 6 3; opacity: 0.5; }
.chart-wrap svg .chart-grid { stroke: var(--chart-border); stroke-width: 0.5; }

.chart-callout { display: flex; justify-content: center; align-items: flex-start; gap: 28px; margin-bottom: 12px; }
.chart-callout-item { text-align: center; }
.chart-callout-item:first-child { border-right: 1px solid var(--chart-border); padding-right: 28px; }
.chart-callout-value { font-family: 'SF Mono', Monaco, 'Courier New', monospace; font-size: 24px; font-weight: 700; color: var(--chart-heading); }
.chart-callout-change { font-family: 'SF Mono', Monaco, 'Courier New', monospace; font-size: 14px; margin-left: 6px; }
.chart-callout-label { font-size: 9px; color: var(--chart-text); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }

.chart-line-animated { animation: chart-draw 1.2s ease-out forwards; }
@keyframes chart-draw { from { stroke-dashoffset: var(--path-length); } to { stroke-dashoffset: 0; } }

.chart-area-animated { opacity: 0; animation: chart-area-fade 0.6s ease-out 0.6s forwards; }
@keyframes chart-area-fade { from { opacity: 0; } to { opacity: 1; } }

.chart-crosshair { stroke: var(--chart-text); stroke-width: 1; stroke-dasharray: 4 3; opacity: 0; pointer-events: none; }
.chart-hover-dot { fill: var(--chart-heading); stroke: var(--chart-bg); stroke-width: 2.5; opacity: 0; pointer-events: none; }

.chart-tooltip { position: absolute; pointer-events: none; opacity: 0; transition: opacity 0.15s;
                 background: var(--chart-panel-bg); border: 1px solid var(--chart-border); border-radius: 6px;
                 padding: 8px 12px; font-size: 12px; backdrop-filter: blur(8px);
                 box-shadow: 0 4px 12px rgba(0,0,0,0.15); z-index: 10; white-space: nowrap; }
.chart-tooltip-date { color: var(--chart-text); font-size: 11px; margin-bottom: 4px; }
.chart-tooltip-value { color: var(--chart-heading); font-weight: 600; font-family: 'SF Mono', Monaco, 'Courier New', monospace; }
.chart-tooltip-pnl { font-family: 'SF Mono', Monaco, 'Courier New', monospace; font-size: 11px; margin-top: 2px; }

.pnl-positive { color: var(--chart-green); }
.pnl-negative { color: var(--chart-red); }

.dashboard-updated { font-size: 8pt; color: #999; margin-top: 16px; }
.dashboard-empty { font-size: 10pt; color: var(--chart-text); text-align: center; padding: 40px 0; }

body.dark .chart-wrap {
    --chart-green: #5cb85c;
    --chart-red: #e74c3c;
    --chart-text: #666;
    --chart-border: rgba(255,255,255,0.08);
    --chart-heading: #e0e0e0;
    --chart-bg: #252525;
    --chart-panel-bg: #1e1e1e;
}

body.dark .dashboard-updated { color: #666; }

@media (max-width: 768px) {
    .chart-callout-value { font-size: 18px; }
    .chart-callout-change { font-size: 11px; }
}

/* Review modal (shared) */
.review-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.review-modal {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    max-width: 420px;
    width: 100%;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.review-modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    font-size: 20pt;
    cursor: pointer;
    color: #999;
    line-height: 1;
    padding: 0;
}

.review-modal-close:hover {
    color: #333;
}

.review-modal-title {
    font-size: 13pt;
    font-weight: bold;
    margin: 0 0 4px 0;
    padding-right: 30px;
}

.review-modal-meta {
    font-size: 9pt;
    color: #888;
    margin: 0 0 14px 0;
}

.review-modal-text {
    font-size: 10pt;
    line-height: 1.6;
    margin: 0;
    color: #555;
}

body.modal-open-body {
    overflow: hidden;
}

body.dark .review-modal-overlay {
    background: rgba(0, 0, 0, 0.7);
}

body.dark .review-modal {
    background: #2a2a2a;
}

body.dark .review-modal-close {
    color: #666;
}

body.dark .review-modal-close:hover {
    color: #d4d4d4;
}

body.dark .review-modal-title {
    color: #e0e0e0;
}

body.dark .review-modal-meta {
    color: #777;
}

body.dark .review-modal-text {
    color: #aaa;
}

@media (max-width: 768px) {
    .review-modal {
        max-width: 100%;
    }
}

