/* ============================================================
   qooqcord.com — shared stylesheet
   Comic Sans everywhere, geocities aero vibes
   ============================================================ */

/* ── RESET / BASE ── */
* { box-sizing: border-box; }

body {
    font-family: "Comic Sans MS", "Comic Sans", "arial", cursive !important;
    color: #ffff00;
    margin: 8px;
    background: #000033;
}

a            { color: #00ffff; }
a:visited    { color: #ff99ff; }
a:hover      { color: #ff0000; text-decoration: none; }

/* ── COLLAGE BACKGROUND ── */
#bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    display: grid;
    /* cols/rows set by inline style or JS so each page can vary */
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 25vh);
    overflow: hidden;
    pointer-events: none;
}
#bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.55) saturate(1.1);
}
#bg-overlay {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: rgba(0, 0, 30, 0.35);
    pointer-events: none;
}

/* ── MARQUEE BAR ── */
.marquee-bar {
    background: rgba(0, 0, 60, 0.75);
    border-top:    2px solid rgba(120, 180, 255, 0.5);
    border-bottom: 2px solid rgba(120, 180, 255, 0.5);
    padding: 3px 0;
    font-family: "Comic Sans MS", "Comic Sans", cursive;
}

/* ── AERO PANELS ── */
.aero {
    background: rgba(0, 20, 80, 0.82);
    border: 2px solid rgba(120, 180, 255, 0.6);
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(100, 160, 255, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    padding: 8px;
    margin-bottom: 10px;
}
.aero-title {
    background: linear-gradient(to bottom,
        rgba(80, 140, 255, 0.85),
        rgba(20,  60, 180, 0.85));
    border-radius: 5px 5px 0 0;
    margin: -8px -8px 8px -8px;
    padding: 4px 8px;
    font-size: 13px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 1px 1px 2px #000066;
    border-bottom: 1px solid rgba(120, 180, 255, 0.4);
    font-family: "Comic Sans MS", "Comic Sans", cursive;
}
.aero-red {
    background: rgba(60, 0, 0, 0.82);
    border: 2px solid rgba(255, 80, 80, 0.6);
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(255, 60, 60, 0.3);
    padding: 10px 12px;
    margin-bottom: 10px;
    text-align: center;
}

/* ── RAINBOW HR ── */
hr.rainbow {
    border: none;
    height: 5px;
    background: linear-gradient(to right,
        red, orange, yellow, lime, cyan, blue, violet, red);
    margin: 10px 0;
    border-radius: 3px;
}

/* ── LAYOUT TABLE ── */
table.layout {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 8px;
}
.col-main { vertical-align: top; }
.col-side  { vertical-align: top; width: 190px; }

/* ── LINK LIST (anime image backgrounds) ── */
ul.links {
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.links li {
    margin-bottom: 5px;
    border-radius: 5px;
    border: 2px outset rgba(200, 200, 255, 0.4);
    overflow: hidden;
}
ul.links li a {
    display: block;
    padding: 7px 10px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
    text-shadow: 1px 1px 3px #000, 0 0 8px #000;
    background-size: cover;
    background-position: center;
    font-family: "Comic Sans MS", "Comic Sans", cursive;
}
ul.links li a:hover { color: #ffff00; filter: brightness(1.2); }

.lnk-1 a { background-image: linear-gradient(rgba(0,0,0,0.42),rgba(0,0,0,0.42)), url("https://wallpapercave.com/wp/wp2380403.png"); }
.lnk-2 a { background-image: linear-gradient(rgba(0,0,0,0.42),rgba(0,0,0,0.42)), url("https://wallpapercave.com/wp/cN9FQSF.jpg"); }
.lnk-3 a { background-image: linear-gradient(rgba(0,0,0,0.42),rgba(0,0,0,0.42)), url("https://wallpapercave.com/wp/vE5sX9E.jpg"); }
.lnk-4 a { background-image: linear-gradient(rgba(0,0,0,0.42),rgba(0,0,0,0.42)), url("https://wallpapercave.com/wp/lQ3byCl.jpg"); }
.lnk-5 a { background-image: linear-gradient(rgba(0,0,0,0.42),rgba(0,0,0,0.42)), url("https://wallpapercave.com/wp/JwQ1L23.jpg"); }
.lnk-6 a { background-image: linear-gradient(rgba(0,0,0,0.42),rgba(0,0,0,0.42)), url("https://wallpapercave.com/wp/zjTcfpC.jpg"); }
.lnk-7 a { background-image: linear-gradient(rgba(0,0,0,0.42),rgba(0,0,0,0.42)), url("https://wallpapercave.com/wp/73OCl0x.jpg"); }
.lnk-8 a { background-image: linear-gradient(rgba(0,0,0,0.42),rgba(0,0,0,0.42)), url("https://wallpapercave.com/wp/wp2380404.png"); }
.lnk-9 a { background-image: linear-gradient(rgba(0,0,0,0.42),rgba(0,0,0,0.42)), url("https://wallpapercave.com/wp/vHpgfGA.jpg"); }

/* ── VIDEO ── */
video {
    width: 100%;
    border: 2px solid rgba(120, 180, 255, 0.5);
    border-radius: 4px;
    display: block;
}

/* ── BUTTONS ── */
input[type=button] {
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    font-size: 11px;
    background: linear-gradient(to bottom,
        rgba(80, 120, 255, 0.85),
        rgba(20,  60, 180, 0.85));
    color: #fff;
    border: 1px solid rgba(120, 180, 255, 0.7);
    border-radius: 4px;
    padding: 3px 10px;
    cursor: pointer;
}
input[type=button]:disabled { opacity: 0.4; cursor: default; }

/* ── MONERO ADDRESS ── */
.monero-addr {
    font-family: "Courier New", monospace;
    font-size: 9px;
    color: #00ff00;
    word-break: break-all;
    background: rgba(0, 20, 0, 0.6);
    border: 1px solid #00aa00;
    padding: 4px;
    border-radius: 3px;
    display: block;
    margin: 4px 0;
    text-align: left;
}

/* ── BLINK ── */
.blink { animation: blinker 0.9s step-start infinite; }
@keyframes blinker { 50% { opacity: 0; } }

/* ── SIDEBAR IMAGES ── */
.sidebar-img {
    width: 100%;
    border: 2px solid rgba(255, 180, 255, 0.6);
    border-radius: 6px;
}
.sidebar-caption {
    font-size: 10px;
    color: #ff99ff;
    margin-top: 2px;
    display: block;
    text-align: center;
    font-family: "Comic Sans MS", "Comic Sans", cursive;
}

/* ── COOKIE / XP DIALOG (cunny.html) ── */
#cookie-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: none; /* shown by JS only */
    align-items: center;
    justify-content: center;
    z-index: 999;
}
#cookie-dialog {
    background: #d4d0c8;
    border: 2px solid;
    border-color: #fff #404040 #404040 #fff;
    width: 340px;
    font-family: Tahoma, Arial, sans-serif;
    font-size: 12px;
}
#cookie-title {
    background: linear-gradient(to right, #000080, #1084d0);
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 3px 6px;
    display: flex;
    justify-content: space-between;
}
#cookie-body { padding: 12px; color: #000; line-height: 1.5; }
#cookie-body a { color: #0000cc; }
#cookie-btns { display: flex; gap: 6px; justify-content: center; padding: 8px; }
#cookie-btns button {
    font-family: Tahoma, sans-serif;
    font-size: 11px;
    background: #d4d0c8;
    border: 2px solid;
    border-color: #fff #404040 #404040 #fff;
    padding: 3px 18px;
    cursor: pointer;
    min-width: 72px;
}
#cookie-btns button:active { border-color: #404040 #fff #fff #404040; }

/* ── MEMORIAM (banocaust) ── */
.candle {
    font-size: 28px;
    display: inline-block;
    animation: flicker 1.5s infinite alternate;
}
.candle:nth-child(2) { animation-delay: .5s; }
.candle:nth-child(3) { animation-delay: 1s; }
@keyframes flicker { from { opacity: 1; } to { opacity: 0.3; } }

/* ── NIG LIST ── */
ul.niglist {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 2.1;
    font-size: 15px;
    font-family: "Comic Sans MS", "Comic Sans", cursive;
}
ul.niglist li::before { content: "♥ "; color: #ff99ff; }

/* ── BASED PAGE GRID ── */
.meme-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    max-width: 800px;
}
.meme-grid img {
    width: 175px;
    height: 145px;
    object-fit: cover;
    border: 2px outset rgba(255, 100, 100, 0.6);
    border-radius: 3px;
}

/* ── LUCKY STAR PLAYER ──────────────────────────────────── */
.lsv-wrap {
    background: #000;
    border-radius: 0;
    overflow: hidden;
    line-height: 0;
}
.lsv-wrap video {
    width: 100%;
    display: block;
    border: none;
    border-radius: 0;
}
/* top bar above the video — ep name + sub/dub */
.lsv-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    padding: 5px 8px;
    background: rgba(0,10,50,0.88);
    border: 1px solid rgba(120,180,255,0.3);
    border-bottom: none;
    border-radius: 4px 4px 0 0;
}
.lsv-epname {
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    font-size: 11px;
    color: #ddeeff;
    text-shadow: 1px 1px 2px #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}
.lsv-right { display: flex; gap: 4px; flex-shrink: 0; }
.lsv-btn {
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    font-size: 10px;
    font-weight: bold;
    background: rgba(0,0,60,0.75);
    color: #aac8ff;
    border: 1px solid rgba(120,180,255,0.5);
    border-radius: 3px;
    padding: 2px 7px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.lsv-btn:hover  { background: rgba(40,80,200,0.85); color: #fff; }
.lsv-btn.active { background: rgba(60,120,255,0.9); color: #fff;
                  border-color: rgba(180,220,255,0.9);
                  box-shadow: 0 0 5px rgba(100,160,255,0.7); }
/* CC button — yellow tint to distinguish from sub/dub */
.lsv-cc         { color: #ffe066; border-color: rgba(255,220,80,0.5); }
.lsv-cc.active  { background: rgba(160,120,0,0.85); color: #fff200;
                  border-color: rgba(255,230,80,0.9);
                  box-shadow: 0 0 5px rgba(255,220,0,0.6); }

/* episode list */
.lsv-eplist {
    max-height: 200px;
    overflow-y: auto;
    background: rgba(0,10,40,0.75);
    border: 1px solid rgba(120,180,255,0.3);
    border-top: none;
    border-radius: 0 0 4px 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(100,160,255,0.5) transparent;
}
.lsv-ep {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 8px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.1s;
    font-family: "Comic Sans MS", "Comic Sans", cursive;
}
.lsv-ep:hover   { background: rgba(60,100,255,0.25); }
.lsv-ep.active  { background: rgba(60,120,255,0.4);
                  border-left: 3px solid #7ab4ff; }
.lsv-epnum {
    font-size: 10px;
    color: #7ab4ff;
    min-width: 20px;
    text-align: right;
    flex-shrink: 0;
}
.lsv-eptitle {
    font-size: 11px;
    color: #ddeeff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
