/* ─── Outfit font – self-hosted ─── */
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../assets/fonts/Outfit-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
                   U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF,
                   U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
                   U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../assets/fonts/Outfit-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                   U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F,
                   U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
                   U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../assets/fonts/Outfit-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
                   U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF,
                   U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
                   U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../assets/fonts/Outfit-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                   U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F,
                   U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
                   U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../assets/fonts/Outfit-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
                   U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF,
                   U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
                   U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../assets/fonts/Outfit-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                   U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F,
                   U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
                   U+FEFF, U+FFFD;
}

:root {
    --primary-color: #ffffff;
    --secondary-color: #c8c8c8;
    --accent-color: #ff9900;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 8px 32px 0 #ff99005e;
    --font-family: 'Outfit', sans-serif;
}

/* SVG Icon Sizing (replaces FontAwesome) */
.icon-live,
.live-badge svg {
    width: 0.6rem;
    height: 0.6rem;
    flex-shrink: 0;
}

.icon-play,
.control-btn svg {
    width: 2rem;
    height: 2rem;
    display: block;
    pointer-events: none;
}

.icon-volume,
.volume-container svg {
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
    color: var(--secondary-color);
}

.icon-social,
.social-btn svg {
    width: 1.2rem;
    height: 1.2rem;
    display: block;
    pointer-events: none;
}

.icon-close,
.close-btn svg {
    width: 1.2rem;
    height: 1.2rem;
    display: block;
    pointer-events: none;
}

@media (max-height: 500px) and (orientation: landscape) {
    .icon-play {
        width: 1.5rem;
        height: 1.5rem;
    }
    .icon-social {
        width: 1.1rem;
        height: 1.1rem;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: #0f0f0f;
    color: var(--primary-color);
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer-container {
    margin-top: 15px;
    width: 100%;
    text-align: center;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.copyright-footer {
    font-size: 0.8rem;
    color: var(--secondary-color);
    opacity: 0.7;
}

.policy-links {
    font-size: 0.75rem;
    color: var(--secondary-color);
    opacity: 0.6;
}

.policy-links a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s;
}

.policy-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.policy-container-inline a {
    color: var(--accent-color);
    text-decoration: none;
    transition: opacity 0.2s;
}

.policy-container-inline a:hover {
    opacity: 1;
    text-decoration: underline;
}

.separator {
    margin: 0 5px;
    opacity: 0.5;
}

/* Dynamic Background */
.background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #0f0f0f;
}

#background-art {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(30px);
    transform: scale(1.1);
    /* Hide blurred edges */
    transition: opacity 0.5s ease;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    /* Darken for contrast */
    z-index: 1;
}

/* Player Container */
.player-container {
    width: 100%;
    max-width: 400px;
    margin-top: -15px;
    /* padding: 20px; */
}

.glass-card {
    /* background: var(--glass-bg); */
    /* backdrop-filter: blur(12px); */
    /* -webkit-backdrop-filter: blur(12px); */
    /* border: 1px solid var(--glass-border); */
    /* border-radius: 24px; */
    /* padding: 40px 30px; */
    /* box-shadow: var(--shadow); */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    /* For absolute positioning if needed */
}

/* Brand Header */
.brand-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
    width: 100%;
}

.brand-logo {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.brand-logo img {
    width: 100%;
    /* Increased size for standalone logo */
    height: auto;
    filter: drop-shadow(0 0 15px #ff990099);
    transition: transform 0.3s ease;
}

.brand-logo img:hover {
    transform: scale(1.05);
}

/* Album Art */
.album-art-container {
    width: 250px;
    height: 250px;
    border-radius: 20px;
    /* overflow: hidden; Removed to allow badges to stick out */
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    transition: transform 0.3s ease;
}

.art-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    /* Ensure it contains the image and vinyl effect */
    z-index: 1;
}

.album-art-container:hover {
    transform: scale(1.02);
}

#album-art {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Live Badge */
.live-badge {
    position: absolute;
    top: 20px;
    right: -12px;
    background: rgba(255, 0, 0, 0.8);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.3);
    animation: pulse-red 2s infinite;
}

.live-badge i {
    font-size: 0.6rem;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

/* Promo Badge */
.promo-badge {
    position: absolute;
    top: auto;
    bottom: 20px;
    right: -12px;
    background: #ff9900;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 10px rgba(255, 153, 0, 0.3);
}

/* Track Info */
.player-content {
    width: 100%;
    max-width: 100%;
    /* Ensure it doesn't exceed parent */
}

.track-info {
    margin-bottom: 30px;
    width: 100%;
    overflow: hidden;
    /* Mask the scrolling text */
}

.title-container,
.artist-container {
    display: flex;
    justify-content: flex-start;
    /* Start from left */
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    margin-bottom: 8px;
}

/* Default alignment (Mobile): Center if it fits */
.title-container.text-fits,
.artist-container.text-fits {
    justify-content: center;
}

/* Desktop Alignment: Always left */
@media (min-width: 768px) {

    .title-container.text-fits,
    .artist-container.text-fits {
        justify-content: center;
    }
}

/* Scrolling Animation */
.scrolling-wrapper {
    display: inline-block;
    white-space: nowrap;
    flex-shrink: 0;
    /* Animation will be applied via JS when needed */
}

.scrolling-wrapper.animate {
    /* ease-in-out for smooth start/stop */
    /* alternate for seamless back-and-forth */
    animation: scroll-pingpong var(--duration) ease-in-out infinite alternate;
}

.scrolling-wrapper span {
    white-space: nowrap;
    display: inline-block;
}

@keyframes scroll-pingpong {

    0%,
    10% {
        transform: translateX(0);
        /* Pause at start */
    }

    90%,
    100% {
        transform: translateX(calc(-1 * (var(--scroll-distance) - var(--container-width))));
        /* Scroll to end and pause */
    }
}

#track-title {
    font-size: 1.5rem;
    font-weight: 600;
}

#artist-name {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 300;
}

#track-title a,
#artist-name a {
    color: inherit;
    text-decoration: none;
    pointer-events: none;
    /* Disabled by default */
    cursor: default;
}

#track-title a.active,
#artist-name a.active,
#album-art-link.active {
    pointer-events: auto;
    cursor: pointer;
}

#track-title a.active:hover,
#artist-name a.active:hover {
    text-decoration: underline;
}

.license-info {
    font-size: 0.8rem;
    text-align: center;
    color: var(--secondary-color);
    margin-top: 5px;
    font-weight: 300;
    opacity: 0.8;
}

.license-info a {
    color: inherit;
    text-decoration: underline;
    transition: color 0.2s;
}

.license-info a:hover {
    color: var(--primary-color);
}

/* Controls */
.controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.control-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.2s ease;
}

.control-btn.primary.hero {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    color: #1a1a1a;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    margin: 0 auto;
    /* Center it */
}

.control-btn.primary.hero:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
}

.control-btn.primary.hero:active {
    transform: scale(0.95);
}



/* Volume */
.volume-container {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    color: var(--secondary-color);
}

#volume-slider {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    outline: none;
}

#volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.1s;
}

#volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    width: 100%;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hover effects only for devices that support hover */
@media (hover: hover) {
    .social-btn:hover {
        transform: translateY(-3px);
        background: rgba(255, 255, 255, 0.2);
    }

    .social-btn.telegram:hover {
        background: #0088cc;
        border-color: #0088cc;
        box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4);
    }

    .social-btn.whatsapp:hover {
        background: #25D366;
        border-color: #25D366;
        box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    }

    .social-btn.instagram:hover {
        background: #E1306C;
        border-color: #E1306C;
        box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
    }

    .social-btn.share:hover {
        background: #ff4b1f;
        border-color: #ff4b1f;
        box-shadow: 0 5px 15px rgba(255, 75, 31, 0.4);
    }

    .social-btn.history:hover {
        background: #FFD700;
        border-color: #FFD700;
        box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    }

    .social-btn.timer:hover {
        background: #ff9900;
        border-color: #ff9900;
        box-shadow: 0 5px 15px rgba(255, 153, 0, 0.4);
    }
}

/* Active state for touch feedback */
.social-btn:active {
    transform: scale(0.95);
    background: rgba(255, 255, 255, 0.2);
}

.social-btn.share {
    cursor: pointer;
}

.social-btn.timer.active {
    background: #ff9900;
    border-color: #ff9900;
    box-shadow: 0 0 15px #ff990099;
    animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 153, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 153, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 153, 0, 0);
    }
}

/* Modals */
.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 100;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: rgba(25, 25, 25, 0.9);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 25px;
    width: 90%;
    max-width: 320px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.modal-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    color: var(--secondary-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.2s;
}

.close-btn:hover {
    color: var(--primary-color);
}

/* History List */
.history-list {
    max-height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.history-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.history-art {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
}

.history-info {
    flex: 1;
    overflow: hidden;
}

.history-title {
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.history-artist {
    font-size: 0.8rem;
    color: var(--secondary-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Timer Options */
.timer-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.timer-option {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-family);
}

.timer-option:hover {
    background: rgba(255, 255, 255, 0.2);
}

.timer-option.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.timer-option.cancel {
    grid-column: span 2;
    background: rgba(255, 50, 50, 0.2);
    border-color: rgba(255, 50, 50, 0.3);
}

.timer-option.cancel:hover {
    background: rgba(255, 50, 50, 0.4);
}

.timer-status {
    text-align: center;
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-top: 10px;
}

/* Responsive Landscape / Desktop */
@media (min-width: 768px) {
    .player-container {
        max-width: 800px;
    }

    .glass-card {
        flex-direction: row;
        text-align: left;
        padding: 40px;
        gap: 40px;
        align-items: center;
        position: relative;
        /* For modal positioning */
        flex-wrap: wrap;
        /* Allow wrapping for brand header if needed, or we restructure */
        align-content: center;
    }

    /* On desktop, we might want the brand header to be full width at top, or on the left above art */
    /* On desktop, we might want the brand header to be full width at top, or on the left above art */
    .brand-header {
        flex-basis: 100%;
        /* Take full width */
        flex-direction: row;
        /* Horizontal logo + text */
        justify-content: center;
        /* Center the logo on desktop too */
        gap: 0;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .brand-logo {
        margin-bottom: 0;
        justify-content: center;
    }

    .brand-logo img {
        width: 340px;
        /* Slightly larger on desktop */
    }

    .album-art-container {
        width: 300px;
        height: 300px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    /* Wrapper for the right side content */
    .player-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        min-width: 0;
        /* Fix flexbox overflow issue */
    }

    .track-info {
        margin-bottom: 20px;
    }

    .controls {
        justify-content: flex-start;
        margin-bottom: 20px;
    }

    .volume-container {
        margin-bottom: 20px;
    }

    .social-links {
        justify-content: space-evenly;
        margin-top: 0;
        padding-top: 20px;
    }

    .footer-container {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin: 0;
    }

}

/* Mobile Responsive */
@media (max-width: 480px) {
    .glass-card {
        padding: 30px 20px;
    }

    .album-art-container {
        width: 200px;
        height: 200px;
    }
}

/* Mobile Landscape Optimization */
@media (max-height: 500px) and (orientation: landscape) {
    body {
        overflow-y: auto;
        height: auto;
        min-height: 100vh;
        padding: 20px 0;
        align-items: center;
        justify-content: flex-start;
    }

    .player-container {
        max-width: 750px;
        height: auto;
        padding: 10px;
    }

    .glass-card {
        flex-direction: row;
        padding: 107px 25px 25px 25px;
        /* Top padding for logo */
        gap: 30px;
        align-items: center;
        text-align: left;
        position: relative;
    }

    .brand-header {
        display: flex;
        position: absolute;
        top: 15px;
        left: 0;
        width: 100%;
        justify-content: center;
        margin-bottom: 0;
    }

    .brand-logo {
        width: 340px;
    }




    .album-art-container {
        width: 220px;
        height: 220px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .player-content {
        flex: 1;
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "controls info"
            "volume volume"
            "social social";
        column-gap: 20px;
        row-gap: 15px;
        align-items: center;
        width: 100%;
    }

    .track-info {
        grid-area: info;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow: hidden;
    }

    .title-container,
    .artist-container {
        justify-content: flex-start;
        width: 100%;
    }

    .title-container.text-fits,
    .artist-container.text-fits {
        justify-content: flex-start;
    }

    .license-info {
        text-align: start;
    }

    .controls {
        grid-area: controls;
        justify-content: center;
        gap: 0;
        margin-bottom: 0;
    }

    .control-btn.primary.hero {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0;
    }

    .volume-container {
        grid-area: volume;
        margin-bottom: 0;
        width: 100%;
    }

    .social-links {
        grid-area: social;
        justify-content: flex-start;
        margin-top: 0;
        padding-top: 10px;
        gap: 20px;
        border-top: 1px solid var(--glass-border);
    }

    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Policy Modal Specifics */
.policy-modal-content {
    max-width: 600px;
    /* Wider than other modals */
    height: 80vh;
    /* Fixed height to allow scrolling */
    display: flex;
    flex-direction: column;
}

.policy-body {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
    /* Space for scrollbar */
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--secondary-color);
}

.policy-body h2 {
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.policy-body ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.policy-body li {
    margin-bottom: 5px;
}

.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 100%;
    color: var(--secondary-color);
}

/* Scrollbar for policy modal */
.policy-body::-webkit-scrollbar {
    width: 6px;
}

.policy-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.policy-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.policy-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}