body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: rgba(0,0,0,0);
    font-family: 'Courier New', monospace;
    height: 100vh;
    overflow: hidden;
    position: relative;
    cursor: none;
}

.content {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

h1 {
    color: #b38b6d;
    border-bottom: 1px solid #b38b6d;
    padding-bottom: 10px;
}

.notepad {
    background-color: #111;
    border: 1px solid #333;
    padding: 15px;
    margin-top: 30px;
}

.notepad h2 {
    color: #b38b6d;
    margin-top: 0;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

.flashlight {
    position: fixed;
    width: 80px;
    height: 80px;
    background: radial-gradient(
        circle,
        rgba(255,255,255,0.1) 0%,
        rgba(179,139,109,0.08) 30%,
        rgba(0,0,0,0) 70%
    );
    border-radius: 100%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1000;
    mix-blend-mode: screen;
}

.flashlight-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(
        circle at var(--x) var(--y),
        rgba(0,0,0,0) 30px,
        rgba(0,0,0,1) 85px
    );
    z-index: 99999;
}

.evidence-board {
    position: relative;
    width: 90%;
    height: 70vh;
    margin: 20px auto;
    background-color: #1a120b;
    border: 15px solid #3e2723;
    box-shadow: 0 0 30px rgba(0,0,0,0.7);
    overflow: hidden;
}

.photo {
    position: absolute;
    width: 200px;
    height: 250px;
    background-color: #333;
    border: 5px solid #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.main-photo {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRC4kOBi5tgwqFyxIok5iomEnFOxKZt8E-vYg&s');
    background-size: cover;
    background-position: center;
}

.post-it {
    position: absolute;
    width: 120px;
    height: 120px;
    padding: 10px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 2;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.post-it p {
    margin: 0;
    font-weight: bold;
}

.yellow { background-color: #fffacd; color: #8b4513; }
.pink { background-color: #ffd1dc; color: #c71585; }
.blue { background-color: #add8e6; color: #000080; }
.green { background-color: #98fb98; color: #006400; }
.black { background-color: #160e0e; color: #965959; }

.string {
    stroke: #ff0000;
    stroke-width: 2;
    stroke-dasharray: 5, 5;
}

body.light-on .evidence-board,
body.light-on .post-it,
body.light-on .photo {
    visibility: visible;
}
.right-board {
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 225px;
    height: auto;
    margin-left: auto;
    margin-top: 40px;
}