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

body {
    background-color: #050505; 
    color: #a8a8a8; 
    font-family: "Courier New", Courier, monospace;
    overflow-x: hidden;
    cursor: crosshair; 
}
/* --- BACK BUTTON --- */
.back-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    font-family: "Courier New", monospace;
    font-size: 0.8rem;
    color: #555;
    text-decoration: none;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.back-btn:hover {
    color: #e0e0e0;
    border: 1px solid #333;
    background: #000;
    text-shadow: 0 0 5px #8a0000; /* Subtle red glow */
}
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 999;
}

/* --- HEADER --- */
header {
    padding: 120px 20px;
    text-align: center;
    border-bottom: 1px solid #1a1a1a;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)),
                url('https://file.garden/aXUfWdPgtglShqRb/me/13.jpg');
    background-size: cover;
    background-position: center 30%; 
    background-repeat: no-repeat;
    text-shadow: 0 2px 15px rgba(0,0,0,0.9);
}

h1 {
    font-size: 3rem;
    letter-spacing: -2px;
    color: #e0e0e0;
    text-transform: lowercase;
    position: relative;
    display: inline-block;
}


h1:hover {
    animation: shake 0.5s infinite;
    color: #8a0000; /* Blood red on hover */
}

.subtitle {
    font-size: 0.8rem;
    margin-top: 10px;
    opacity: 0.5;
    letter-spacing: 4px;
}

/* --- GALLERY --- */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 40px;
    padding: 60px 10%;
    max-width: 1200px;
    margin: 0 auto;
}

.photo-item {
    position: relative;
    border: 1px solid #1a1a1a;
    transition: transform 0.2s ease;
}

.photo-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: grayscale(100%) contrast(120%) brightness(80%);
    transition: filter 0.4s ease;
}


.photo-item:hover img {
    filter: grayscale(0%) contrast(110%) brightness(100%);
}

.photo-item:hover {
    border-color: #8a0000;
}

.caption {
    padding: 8px;
    font-size: 0.7rem;
    background: #000;
    color: #555;
    border-top: 1px solid #1a1a1a;
    text-align: right;
}

/* --- MEDIA PLAYER --- */
.player-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 220px;
    background: #000;
    border: 1px solid #333;
    padding: 15px;
    z-index: 1000;
    box-shadow: 0 0 10px rgba(0,0,0,0.8);
}

.track-info {
    font-size: 0.7rem;
    margin-bottom: 10px;
    color: #e0e0e0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.controls {
    display: flex;
    justify-content: space-between;
}

button {
    background: transparent;
    border: 1px solid #333;
    color: #888;
    font-family: "Courier New", monospace;
    cursor: pointer;
    font-size: 0.7rem;
    padding: 4px 8px;
}

button:hover {
    background: #111;
    color: #fff;
    border-color: #555;
}

/* --- ANIMATIONS --- */
@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}

@media (max-width: 600px) {
    .gallery { padding: 40px 20px; }
    h1 { font-size: 2rem; }
}

.thoughts-container {
    max-width: 600px;
    margin: 40px auto;
    border: 1px dashed #333;
    padding: 5px;
    background: #020202;
    position: relative;
}

.terminal-header {
    background: #111;
    color: #8a0000; /* Dark red text */
    padding: 10px;
    font-size: 0.8rem;
    border-bottom: 1px solid #333;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.scroll-box {
    max-height: 250px; /* Keeps the blog from getting too long */
    overflow-y: auto;  /* Adds a scrollbar if you write a lot */
    padding: 0 15px 15px 15px;
}

/* Custom Scrollbar Styling (Webkit only) */
.scroll-box::-webkit-scrollbar {
    width: 5px;
}
.scroll-box::-webkit-scrollbar-thumb {
    background: #333; 
}
.scroll-box::-webkit-scrollbar-track {
    background: #000; 
}

.entry {
    margin-bottom: 25px;
    border-left: 2px solid #222;
    padding-left: 15px;
}

.entry:last-child {
    margin-bottom: 0;
}

.meta {
    font-size: 0.6rem;
    color: #555;
    margin-bottom: 5px;
    font-family: monospace;
}

.date {
    margin-right: 10px;
    color: #4a4a4a;
}

.entry p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #a8a8a8;
}


.blink {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% { opacity: 0; }
}