@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Comic+Neue:wght@400;700&display=swap');

/* =========================
   ROOT VARIABLES
========================= */
:root {
    --primary: #FFD600;
    --secondary: #FF3B3B;
    --accent: #00CFFF;
    --ink: #111111;
    --white: #FFFDF0;
    --panel-bg: #FFFDF0;
    --shadow: 5px 5px 0px #111;
    --shadow-lg: 8px 8px 0px #111;
    --radius: 6px;
    --transition: 0.15s ease;
}

body.dark {
    --panel-bg: #1e1e2e;
    --white: #1e1e2e;
    --ink: #ffffff;
    --shadow: 5px 5px 0px #fff;
    --shadow-lg: 8px 8px 0px #fff;
}

/* =========================
   GLOBAL RESET
========================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Comic Neue', cursive;
    background-color: var(--white);
    color: var(--ink);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: radial-gradient(circle, rgba(0,0,0,0.07) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    transition: background-color 0.3s, color 0.3s;
    overflow-x: hidden;
}

body.dark {
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1.5px, transparent 1.5px);
}

/* =========================
   HEADER / NAV
========================= */
header {
    background: var(--primary);
    border-bottom: 4px solid var(--ink);
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 4px 0 var(--ink);
}
body.dark header { border-bottom-color: #fff; box-shadow: 0 4px 0 #fff; }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 5%;
    gap: 20px;
}

.brand {
    font-family: 'Bangers', cursive;
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--ink);
    text-decoration: none;
    text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }

.nav-links a {
    font-family: 'Bangers', cursive;
    font-size: 17px;
    letter-spacing: 1.5px;
    color: var(--ink);
    text-decoration: none;
    padding: 6px 14px;
    border: 2.5px solid transparent;
    border-radius: var(--radius);
    transition: var(--transition);
    text-transform: uppercase;
}
.nav-links a:hover {
    border-color: var(--ink);
    background: var(--white);
    transform: translate(-2px, -2px);
    box-shadow: 3px 3px 0 var(--ink);
}

.toggle-btn {
    font-size: 18px;
    background: var(--ink);
    color: var(--primary);
    border: 2.5px solid var(--ink);
    border-radius: var(--radius);
    padding: 6px 12px;
    cursor: pointer;
    transition: var(--transition);
}
.toggle-btn:hover { transform: translate(-2px, -2px); box-shadow: 3px 3px 0 var(--ink); }
body.dark .toggle-btn { background: var(--primary); color: var(--ink); border-color: #fff; }

/* =========================
   HERO
========================= */
.hero {
    padding: 60px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    gap: 24px;
    flex: 1;
}

.hero-panel {
    background: var(--panel-bg);
    border: 4px solid var(--ink);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    padding: 48px 60px;
    max-width: 700px;
    position: relative;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    animation: slide-up 0.4s 0.15s ease both;
}
body.dark .hero-panel { border-color: #fff; box-shadow: 8px 8px 0 #fff; }

.hero-panel::before {
    content: "★";
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: #fff;
    font-size: 22px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--ink);
    border-radius: 50%;
    box-shadow: 3px 3px 0 var(--ink);
}

.hero-logo {
    width: 160px;
    border: 4px solid var(--ink);
    border-radius: 16px;
    box-shadow: var(--shadow);
    animation: pop-in 0.5s cubic-bezier(.34,1.56,.64,1) both;
    transition: var(--transition);
}
.hero-logo:hover { transform: rotate(-3deg) scale(1.05); box-shadow: 8px 8px 0 var(--ink); }
body.dark .hero-logo { border-color: #fff; box-shadow: 5px 5px 0 #fff; }

.hero-studio-name {
    font-family: 'Bangers', cursive;
    font-size: clamp(32px, 5vw, 56px);
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--primary);
    border: 4px solid var(--ink);
    border-radius: 14px;
    padding: 14px 32px;
    box-shadow: var(--shadow-lg);
    animation: pop-in 0.5s cubic-bezier(.34,1.56,.64,1) both;
    position: relative;
    line-height: 1.1;
}

.hero h1 {
    font-family: 'Bangers', cursive;
    font-size: clamp(36px, 6vw, 64px);
    letter-spacing: 3px;
    line-height: 1.1;
    text-transform: uppercase;
}
.hero h1 span { color: var(--secondary); }

.hero p { font-size: 18px; font-weight: 700; line-height: 1.6; max-width: 520px; }

.hero-burst {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    z-index: -1;
    pointer-events: none;
    opacity: 0.06;
}
.hero-burst::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-conic-gradient(#111 0deg 10deg, transparent 10deg 20deg);
    border-radius: 50%;
}

/* =========================
   BUTTONS
========================= */
.btn {
    display: inline-block;
    font-family: 'Bangers', cursive;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    background: var(--secondary);
    color: #fff;
    border: 3px solid var(--ink);
    border-radius: var(--radius);
    padding: 10px 22px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}
.btn:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-lg); background: var(--primary); color: var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
body.dark .btn { border-color: #fff; box-shadow: 5px 5px 0 #fff; }
body.dark .btn:hover { box-shadow: 8px 8px 0 #fff; }

.btn-play { background: #22c55e; }
.btn-play:hover { background: var(--primary); }

/* =========================
   SECTION TAG
========================= */
.section-tag {
    display: inline-block;
    font-family: 'Bangers', cursive;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--accent);
    color: var(--ink);
    border: 2.5px solid var(--ink);
    border-radius: 4px;
    padding: 4px 14px;
    box-shadow: 3px 3px 0 var(--ink);
    margin-bottom: 12px;
}
body.dark .section-tag { border-color: #fff; box-shadow: 3px 3px 0 #fff; }

/* =========================
   GAMES SECTION
========================= */
.games-section { padding: 60px 5%; flex: 1; }

.games-section-header { text-align: center; margin-bottom: 36px; }
.games-section-header h2 {
    font-family: 'Bangers', cursive;
    font-size: clamp(36px, 5vw, 56px);
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-block;
}
.games-section-header h2::after {
    content: "";
    display: block;
    height: 6px;
    background: var(--primary);
    border: 2.5px solid var(--ink);
    border-radius: 10px;
    margin-top: 4px;
}
body.dark .games-section-header h2::after { border-color: #fff; }

/* =========================
   FILTER BAR
========================= */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    font-family: 'Bangers', cursive;
    font-size: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 20px;
    border: 2.5px solid var(--ink);
    border-radius: var(--radius);
    background: var(--panel-bg);
    color: var(--ink);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 3px 3px 0 var(--ink);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--ink);
}
body.dark .filter-btn { border-color: #fff; box-shadow: 3px 3px 0 #fff; }
body.dark .filter-btn:hover, body.dark .filter-btn.active { box-shadow: 5px 5px 0 #fff; }

/* =========================
   GAMES GRID
========================= */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 32px;
}

/* =========================
   GAME CARD
========================= */
.game-card {
    background: var(--panel-bg);
    border: 3.5px solid var(--ink);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.15s, box-shadow 0.15s;
    animation: slide-up 0.4s ease both;
}
body.dark .game-card { border-color: #fff; box-shadow: 8px 8px 0 #fff; }
.game-card:hover { transform: translate(-5px, -5px) rotate(-1deg); box-shadow: 12px 12px 0 var(--ink); }
body.dark .game-card:hover { box-shadow: 12px 12px 0 #fff; }

.card-top-strip {
    height: 10px;
    border-bottom: 3px solid var(--ink);
}
body.dark .card-top-strip { border-color: #fff; }

.card-img-wrap { display: flex; justify-content: center; padding: 24px 24px 0; }
.card-img-wrap img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid var(--ink);
    border-radius: 20px;
    box-shadow: 4px 4px 0 var(--ink);
    background: #ddd;
}
body.dark .card-img-wrap img { border-color: #fff; box-shadow: 4px 4px 0 #fff; }

.card-body { padding: 16px 20px 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }

.card-body h3 {
    font-family: 'Bangers', cursive;
    font-size: 24px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.1;
}

.card-category {
    display: inline-block;
    font-family: 'Bangers', cursive;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--accent);
    color: var(--ink);
    border: 2px solid var(--ink);
    padding: 2px 10px;
    border-radius: 4px;
    width: fit-content;
}
body.dark .card-category { border-color: #fff; }

.card-body p { font-size: 14px; font-weight: 700; line-height: 1.5; flex: 1; }

.card-meta-row { display: flex; gap: 10px; }
.card-meta {
    font-size: 13px;
    font-weight: 700;
    background: rgba(255, 214, 0, 0.25);
    border: 2px solid var(--ink);
    border-radius: 4px;
    padding: 2px 8px;
}
body.dark .card-meta { border-color: #fff; background: rgba(255,255,255,0.1); }

.card-buttons { display: flex; gap: 8px; margin-top: 4px; }
.card-buttons .btn { flex: 1; text-align: center; font-size: 14px; padding: 8px 10px; }

/* =========================
   PAGE CONTENT
========================= */
.page-content { max-width: 780px; margin: 60px auto; padding: 0 5%; flex: 1; }

.page-panel {
    background: var(--panel-bg);
    border: 4px solid var(--ink);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 48px 52px;
}
body.dark .page-panel { border-color: #fff; box-shadow: 8px 8px 0 #fff; }

.page-panel h1 {
    font-family: 'Bangers', cursive;
    font-size: 52px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 28px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}
.page-panel h1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--secondary);
    border-radius: 4px;
}

.page-panel p {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.7;
    margin-bottom: 14px;
    padding: 0;
    border-left: none;
    background: none;
    border-radius: 0;
}
.page-panel p strong { color: var(--secondary); }

/* Highlighted intro paragraph style — used only on short legal pages */
.page-panel .intro-p {
    padding: 14px 18px;
    border-left: 5px solid var(--primary);
    background: rgba(255, 214, 0, 0.08);
    border-radius: 0 8px 8px 0;
    margin-bottom: 18px;
}

/* =========================
   MODAL
========================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    overflow-y: auto;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal-box {
    background: var(--panel-bg);
    border: 4px solid var(--ink);
    border-radius: 20px;
    box-shadow: 12px 12px 0 var(--ink);
    width: 100%;
    max-width: 760px;
    padding: 36px 40px;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.2s cubic-bezier(.34,1.56,.64,1);
}
body.dark .modal-box { border-color: #fff; box-shadow: 12px 12px 0 #fff; }
.modal-overlay.active .modal-box { transform: scale(1) translateY(0); }

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: 'Bangers', cursive;
    font-size: 15px;
    letter-spacing: 1px;
    background: var(--secondary);
    color: #fff;
    border: 2.5px solid var(--ink);
    border-radius: var(--radius);
    padding: 6px 14px;
    cursor: pointer;
    box-shadow: 3px 3px 0 var(--ink);
    transition: var(--transition);
}
.modal-close:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--ink); }
body.dark .modal-close { border-color: #fff; box-shadow: 3px 3px 0 #fff; }

/* Modal Header */
.modal-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 3px solid var(--ink);
}
body.dark .modal-header { border-color: #fff; }

.modal-icon {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid var(--ink);
    border-radius: 20px;
    box-shadow: 4px 4px 0 var(--ink);
    flex-shrink: 0;
    background: #ddd;
}
body.dark .modal-icon { border-color: #fff; box-shadow: 4px 4px 0 #fff; }

.modal-header-info { display: flex; flex-direction: column; gap: 8px; }

.modal-header-info h2 {
    font-family: 'Bangers', cursive;
    font-size: 36px;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
}

.modal-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.modal-meta span {
    font-size: 13px;
    font-weight: 700;
    background: rgba(255,214,0,0.2);
    border: 2px solid var(--ink);
    border-radius: 4px;
    padding: 2px 10px;
}
body.dark .modal-meta span { border-color: #fff; }

/* Modal Sections */
.modal-section { margin-bottom: 28px; }

.modal-section-title {
    font-family: 'Bangers', cursive;
    font-size: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.modal-section-title::after {
    content: "";
    flex: 1;
    height: 3px;
    background: var(--primary);
    border-radius: 4px;
}

.modal-desc {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
    padding: 16px 20px;
    border-left: 5px solid var(--primary);
    background: rgba(255,214,0,0.08);
    border-radius: 0 8px 8px 0;
}

/* Features list */
.modal-features-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.modal-features-list li {
    font-size: 15px;
    font-weight: 700;
    padding: 8px 14px;
    background: rgba(0,207,255,0.1);
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    box-shadow: 2px 2px 0 var(--ink);
}
body.dark .modal-features-list li { border-color: #fff; box-shadow: 2px 2px 0 #fff; }

/* Screenshots */
.screenshots-row {
    display: flex;
    flex-direction: row;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.screenshot-full {
    flex-shrink: 0;
    width: 160px;
    /*height: 110px;*/
    object-fit: cover;
    border: 3px solid var(--ink);
    border-radius: 10px;
    box-shadow: 4px 4px 0 var(--ink);
    display: block;
}
body.dark .screenshot-full { border-color: #fff; box-shadow: 4px 4px 0 #fff; }

/* Changelog */
.changelog { display: flex; flex-direction: column; gap: 12px; }
.changelog-entry {
    padding: 14px 18px;
    border: 2.5px solid var(--ink);
    border-radius: 10px;
    box-shadow: 3px 3px 0 var(--ink);
    background: var(--panel-bg);
}
body.dark .changelog-entry { border-color: #fff; box-shadow: 3px 3px 0 #fff; }

.changelog-header { display: flex; justify-content: space-between; margin-bottom: 6px; }
.changelog-version {
    font-family: 'Bangers', cursive;
    font-size: 18px;
    letter-spacing: 1.5px;
    color: var(--secondary);
}
.changelog-date {
    font-size: 13px;
    font-weight: 700;
    opacity: 0.6;
}
.changelog-entry p { font-size: 14px; font-weight: 700; line-height: 1.5; }

.modal-cta {
    text-align: center;
    padding-top: 20px;
    border-top: 3px solid var(--ink);
}
body.dark .modal-cta { border-color: #fff; }
.modal-cta .btn { font-size: 20px; padding: 14px 40px; }

/* =========================
   FOOTER
========================= */
footer {
    background: var(--ink);
    color: #fff;
    border-top: 4px solid var(--ink);
    margin-top: auto;
}
body.dark footer { background: #0d0d1a; border-top-color: #fff; }

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding: 50px 5% 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.footer-logo-text {
    font-family: 'Bangers', cursive;
    font-size: 36px;
    letter-spacing: 3px;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
}
.footer-tagline {
    font-size: 14px;
    font-weight: 700;
    opacity: 0.7;
    line-height: 1.6;
    max-width: 220px;
}

.footer-links-group h4 {
    font-family: 'Bangers', cursive;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 14px;
    border-bottom: 2px solid rgba(255,214,0,0.3);
    padding-bottom: 8px;
}
.footer-links-group a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    transition: var(--transition);
}
.footer-links-group a:hover { color: var(--primary); transform: translateX(4px); }

/* Social Buttons */
.social-links { display: flex; flex-direction: column; gap: 10px; }

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: var(--radius);
    font-family: 'Bangers', cursive;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-decoration: none;
    border: 2.5px solid rgba(255,255,255,0.25);
    transition: var(--transition);
    color: #fff;
    font-weight: normal;
}
.social-btn:hover {
    transform: translate(-3px, -3px);
    box-shadow: 4px 4px 0 rgba(255,255,255,0.3);
}

.social-btn.youtube { background: rgba(255, 0, 0, 0.25); }
.social-btn.youtube:hover { background: #FF0000; border-color: #FF0000; }

.social-btn.instagram { background: rgba(225, 48, 108, 0.25); }
.social-btn.instagram:hover { background: #E1306C; border-color: #E1306C; }

.social-btn.twitter { background: rgba(29, 155, 240, 0.25); }
.social-btn.twitter:hover { background: #1D9BF0; border-color: #1D9BF0; }

.social-btn.discord { background: rgba(88, 101, 242, 0.25); }
.social-btn.discord:hover { background: #5865F2; border-color: #5865F2; }

.footer-bottom {
    text-align: center;
    padding: 16px;
    border-top: 2px solid rgba(255,255,255,0.1);
    font-family: 'Bangers', cursive;
    font-size: 15px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
}

/* =========================
   DIVIDER
========================= */
.divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 40px;
    opacity: 0.3;
    font-family: 'Bangers', cursive;
    font-size: 28px;
    letter-spacing: 4px;
}
.divider::before, .divider::after { content: ""; flex: 1; height: 3px; background: var(--ink); }
body.dark .divider::before, body.dark .divider::after { background: #fff; }

/* =========================
   ANIMATIONS
========================= */
@keyframes pop-in {
    0% { transform: scale(0.6) rotate(-6deg); opacity: 0; }
    80% { transform: scale(1.06) rotate(2deg); }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

@keyframes slide-up {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
    .nav-inner { flex-wrap: wrap; }
    .hero-panel { padding: 32px 20px; }
    .page-panel { padding: 32px 20px; }
    .page-panel h1 { font-size: 38px; }
    .games-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 24px; }
    .modal-box { padding: 24px 20px; }
    .modal-header { flex-direction: column; align-items: center; text-align: center; }
    .card-buttons { flex-direction: column; }
    .filter-bar { gap: 8px; }
}

/* =========================
   POLICY PAGE — HEADINGS & LISTS
========================= */
.policy-heading {
    font-family: 'Bangers', cursive;
    font-size: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary);
    margin: 32px 0 12px;
    padding-bottom: 8px;
    border-bottom: 3px solid var(--primary);
    display: block;
}

.policy-subheading {
    font-family: 'Bangers', cursive;
    font-size: 22px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink);
    margin: 20px 0 10px;
    padding: 6px 12px;
    border-left: 4px solid var(--accent);
    background: rgba(0, 207, 255, 0.08);
    border-radius: 0 6px 6px 0;
    display: block;
}

body.dark .policy-subheading { color: #fff; }

.policy-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.policy-list li {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
    padding: 10px 14px 10px 14px;
    border-left: 4px solid var(--primary);
    background: rgba(255, 214, 0, 0.07);
    border-radius: 0 6px 6px 0;
}

.policy-list li::before {
    content: "▸";
    color: var(--secondary);
    margin-right: 8px;
    font-size: 13px;
}

/* =========================
   SCREENSHOT LIGHTBOX
========================= */
