/* ==========================================
   YOMIDAs CAVE - ABOUT ME EXACT LAYOUT
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

/* --- Base Page (Pitch Black & Stars) --- */
body {
    cursor: url("cursor.cur"), auto;
    background-color: #000000; 
    background-image: 
        radial-gradient(#ffffff 1px, transparent 1px),
        radial-gradient(#ffff00 1px, transparent 1px),
        radial-gradient(#00ffff 1px, transparent 1px);
    background-size: 50px 50px, 35px 35px, 60px 60px;
    background-position: 0 0, 15px 15px, 25px 25px;
    background-attachment: fixed;
    color: #ffffff; 
    font-family: 'Verdana', 'Tahoma', sans-serif;
    margin: 0;
    padding: 20px 10px;
}

/* --- Global Cursor Hover --- */
a, button, img, .navtitle, .aboutpage h1 {
    cursor: url("cursor.cur"), pointer;
}

/* --- Top Small Note (Tiny plain text centered at the top) --- */
.topthing {
    background: transparent;
    border: none;
    color: #ffffff;
    text-align: center;
    padding: 5px;
    font-family: 'Verdana', sans-serif;
    font-size: 11px;
    margin-bottom: 20px;
    opacity: 0.8;
}

/* --- Layout Grid --- */
.layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 15px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 850px) {
    .layout {
        grid-template-columns: 1fr;
    }
}

/* --- The Windows (Left Sidebar & One Long About Box) --- */
.sidebar,
.aboutpage {
    background-color: #111111; 
    border: 4px solid;
    border-image: linear-gradient(
        to bottom right,
        red, orange, yellow, green, cyan, blue, violet
    ) 1;
    margin-bottom: 20px;
}

/* --- Window Headers (Clean rainbow bars) --- */
.navtitle,
.aboutpage h1 {
    margin: 0;
    background: linear-gradient(
        to right,
        red, orange, yellow, lime, cyan, blue, purple
    );
    color: #ffffff;
    padding: 8px 12px;
    font-size: 1.3rem;
    font-family: 'VT323', monospace;
    text-transform: uppercase;
    text-shadow: 1px 1px 0px #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Emoticons */
.navtitle::after {
    content: 'x_x';
    font-family: 'Courier New', monospace;
    font-size: 16px;
}

.aboutpage h1::after {
    content: ':(';
    font-family: 'Courier New', monospace;
    font-size: 16px;
}

/* --- Content Inner Text Padding --- */
p, div {
    padding: 15px;
    line-height: 1.6;
    font-size: 12px;
    margin: 0;
}

/* --- Chunky Green Dashed Sidebar Buttons (From your Home Page) --- */
.sidebar a {
    display: block;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    padding: 8px;
    margin: 10px 15px;
    font-family: 'VT323', monospace;
    font-size: 16px;
    border: 2px dashed #00ff00;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
}

.sidebar a:hover {
    background: #00ff00;
    color: #000000;
}

.sidewords {
    text-align: center;
    font-size: 12px;
    padding: 10px 15px;
}

/* --- Images & Blinkies --- */
.sidebar img {
    display: block;
    margin: 15px auto;
    max-width: 88px;
}

.aboutpage img {
    display: block;
    margin: 15px auto;
    max-width: 90%;
    border: 3px dotted #ffff00;
    padding: 4px;
    background: #111111;
}

.aboutpage img.randomtiny {
    display: inline-block;
    margin: 15px;
    max-width: auto;
    border: none;
    background: transparent;
    padding: 0;
}

/* --- Footer --- */
.madeby {
    text-align: center;
    font-family: 'VT323', monospace;
    color: #888;
    margin-top: 20px;
}