/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    image-rendering: pixelated;
}

/* Body */
body {
    cursor: none;
    background-color: #0a0a0a;
    color: #e5e5e5;
    font-family: 'Press Start 2P', monospace;
    font-size: 12px;
    line-height: 1.8;
    padding: 30px;
    text-transform: uppercase; /* RPG menu vibe */
}

/* Custom Y2K RPG Cursor */
.custom-cursor {
    width: 32px;
    height: 32px;
    background: url("cursor.png") no-repeat center;
    background-size: contain;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
}


/* Main container */
.container {
    max-width: 800px;
    margin: auto;
    border: 2px solid #ff4da6;
    padding: 25px;
    background: #111;
    box-shadow: 0 0 15px #ff4da644;
}

/* Headings */
h1 {
    font-size: 20px;
    color: #ff4da6;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 0 0 5px #ff4da6;
}

h2 {
    font-size: 14px;
    color: #00ffff;
    margin-top: 25px;
    margin-bottom: 10px;
}

/* Navigation */
nav {
    text-align: center;
    margin-bottom: 25px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 10px 0;
}

nav a {
    color: #00ffff;
    text-decoration: none;
    margin: 0 12px;
    transition: 0.15s;
}

nav a:hover {
    color: #ff4da6;
    text-shadow: 0 0 5px #ff4da6;
}

/* Links */
a {
    color: #00ffff;
}

a:hover {
    color: #ff4da6;
}

/* Blog entries */
.post {
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 2px dotted #333;
}

.post-date {
    font-size: 10px;
    color: #888;
    margin-bottom: 8px;
}

/* Images */
img {
    max-width: 100%;
    margin: 15px 0;
    border: 2px solid #333;
}

/* HR */
hr {
    border: none;
    border-top: 2px solid #333;
    margin: 25px 0;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 50px;
    font-size: 10px;
    color: #666;
    border-top: 1px solid #222;
    padding-top: 15px;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: #ff4da6;
    border: 2px solid #111;
}

/* Retro blinking text */
.blink {
    animation: blink-animation 1s steps(2, start) infinite;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

/* RPG UI Box */
.box {
    border: 2px solid #00ffff;
    padding: 20px;
    margin-bottom: 25px;
    background: #0f0f0f;
    box-shadow: inset 0 0 10px #000;
}

/* Pixel Button */
.pixel-button {
    display: inline-block;
    padding: 8px 14px;
    background: #000;
    border: 2px solid #ff4da6;
    color: #ff4da6;
    font-size: 10px;
    text-decoration: none;
    transition: 0.1s;
}

.pixel-button:hover {
    background: #ff4da6;
    color: #000;
    box-shadow: 0 0 10px #ff4da6;
}
/* Particle Trail Container */
#cursor-trail {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
}

/* Individual Particle */
.particle {
    position: fixed;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #301934
 0%, #301934
 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: fadeOut 0.6s linear forwards;
    box-shadow: 0 0 8px #301934
, 0 0 15px #301934
;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: scale(0.3);
    }
}
