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

html, body {
    min-height: 100vh;
}

body {
    background-color: #0a0012;
    background-image: 
        /* Vaporwave grid pattern */
        linear-gradient(90deg, 
            #4B0082 0%, #4B0082 25%, 
            #1a0033 25%, #1a0033 50%, 
            #4B0082 50%, #4B0082 75%, 
            #1a0033 75%, #1a0033 100%
        ),
        linear-gradient(0deg,
            #1a0033 0%, #1a0033 25%,
            #2d004d 25%, #2d004d 50%,
            #1a0033 50%, #1a0033 75%,
            #2d004d 75%, #2d004d 100%
        );
    background-size: 32px 32px, 32px 32px;
    background-position: 0 0, 0 0;
    background-attachment: fixed;
    font-family: 'Comic Sans MS', 'Arial', cursive;
    color: #FFFFFF;
    font-size: 11px;
    cursor: url('data:image/cur;base64,'), auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Subtle purple pixel details */
        repeating-conic-gradient(from 0deg at 8px 8px, 
            transparent 0deg, 
            transparent 90deg, 
            rgba(102, 0, 153, 0.1) 90deg, 
            rgba(102, 0, 153, 0.1) 180deg,
            transparent 180deg,
            transparent 270deg,
            rgba(255, 0, 255, 0.05) 270deg,
            rgba(255, 0, 255, 0.05) 360deg
        );
    background-size: 16px 16px;
    pointer-events: none;
    z-index: -1;
}

.main-layout {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    background: linear-gradient(180deg, #1a0033 0%, #4B0082 100%);
    border: 3px ridge #40E0D0;
    box-shadow: 0 0 30px rgba(64, 224, 208, 0.5);
    flex: 1;
    margin-bottom: 0;
}

.sidebar-left, .sidebar-right {
    width: 200px;
    background: linear-gradient(180deg, #9400D3 0%, #4B0082 50%, #1a0033 100%);
    vertical-align: top;
    padding: 10px;
    border: 1px dashed #FF6EC7;
}

.main-content {
    background: linear-gradient(180deg, rgba(75, 0, 130, 0.9) 0%, rgba(138, 43, 226, 0.7) 100%);
    padding: 15px;
    vertical-align: top;
    border-left: 2px solid #40E0D0;
    border-right: 2px solid #40E0D0;
}

.widget {
    margin-bottom: 15px;
    border: 2px groove #40E0D0;
    background: linear-gradient(180deg, rgba(192, 192, 192, 0.2), rgba(64, 224, 208, 0.1));
    box-shadow: inset 0 0 10px rgba(255, 110, 199, 0.2);
}

.widget-header {
    background: linear-gradient(90deg, #FF6EC7 0%, #40E0D0 50%, #FF6EC7 100%);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    color: #FFFFFF;
    padding: 5px;
    font-weight: bold;
    text-align: center;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid #C0C0C0;
    text-shadow: 2px 2px 4px #4B0082;
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.widget-content {
    padding: 10px;
    background: rgba(26, 0, 51, 0.9);
    border-top: 1px solid #40E0D0;
}

/* Compact Winamp Player */
.winamp-compact {
    background: #000;
    border: none !important;
    padding: 0 !important;
    font-family: 'Arial', sans-serif;
}

.winamp-main {
    background: #000;
    border: 1px solid #404040;
}

.winamp-title-bar {
    background: linear-gradient(to bottom, #3a4da6 0%, #1e3a8a 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px 2px;
    height: 14px;
}

.winamp-title {
    color: #fff;
    font-size: 8px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.winamp-buttons {
    display: flex;
    gap: 1px;
}

.winamp-btn {
    background: #c0c0c0;
    border: 1px outset #fff;
    padding: 0 2px;
    font-size: 7px;
    line-height: 9px;
    cursor: pointer;
}

.winamp-display {
    background: #000;
    border: 1px inset #808080;
    padding: 2px;
    margin: 1px;
}

.winamp-top-info {
    display: flex;
    justify-content: space-between;
    padding: 0 2px;
    margin-bottom: 2px;
}

.winamp-bitrate, .winamp-khz {
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 7px;
}

.winamp-info-display {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: 3px;
}

.winamp-status {
    color: #00ff00;
    font-size: 8px;
    line-height: 1;
}

.winamp-viz-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
}

.winamp-mini-viz {
    display: flex;
    align-items: flex-end;
    height: 14px;
    gap: 1px;
    flex: 1;
}

.viz-bar {
    width: 2px;
    background: linear-gradient(to top, #00ff00, #ffff00, #ff0000);
    display: block;
    transform-origin: bottom;
}

.viz-bar:nth-child(1) { animation: vizBounce1 0.18s linear infinite; }
.viz-bar:nth-child(2) { animation: vizBounce2 0.22s linear infinite; }
.viz-bar:nth-child(3) { animation: vizBounce3 0.16s linear infinite; }
.viz-bar:nth-child(4) { animation: vizBounce4 0.24s linear infinite; }
.viz-bar:nth-child(5) { animation: vizBounce5 0.19s linear infinite; }
.viz-bar:nth-child(6) { animation: vizBounce6 0.21s linear infinite; }
.viz-bar:nth-child(7) { animation: vizBounce7 0.17s linear infinite; }
.viz-bar:nth-child(8) { animation: vizBounce8 0.23s linear infinite; }
.viz-bar:nth-child(9) { animation: vizBounce9 0.15s linear infinite; }

@keyframes vizBounce1 {
    0% { transform: scaleY(0.2); }
    10% { transform: scaleY(0.8); }
    20% { transform: scaleY(0.4); }
    30% { transform: scaleY(0.9); }
    40% { transform: scaleY(0.3); }
    50% { transform: scaleY(0.7); }
    60% { transform: scaleY(0.5); }
    70% { transform: scaleY(1); }
    80% { transform: scaleY(0.6); }
    90% { transform: scaleY(0.4); }
    100% { transform: scaleY(0.2); }
}

@keyframes vizBounce2 {
    0% { transform: scaleY(0.5); }
    15% { transform: scaleY(1); }
    30% { transform: scaleY(0.3); }
    45% { transform: scaleY(0.8); }
    60% { transform: scaleY(0.4); }
    75% { transform: scaleY(0.9); }
    90% { transform: scaleY(0.6); }
    100% { transform: scaleY(0.5); }
}

@keyframes vizBounce3 {
    0% { transform: scaleY(0.3); }
    20% { transform: scaleY(0.6); }
    40% { transform: scaleY(0.2); }
    60% { transform: scaleY(0.7); }
    80% { transform: scaleY(0.4); }
    100% { transform: scaleY(0.3); }
}

@keyframes vizBounce4 {
    0% { transform: scaleY(0.7); }
    12% { transform: scaleY(1); }
    25% { transform: scaleY(0.5); }
    37% { transform: scaleY(0.9); }
    50% { transform: scaleY(0.4); }
    62% { transform: scaleY(0.8); }
    75% { transform: scaleY(0.3); }
    87% { transform: scaleY(0.6); }
    100% { transform: scaleY(0.7); }
}

@keyframes vizBounce5 {
    0% { transform: scaleY(0.4); }
    25% { transform: scaleY(0.8); }
    50% { transform: scaleY(0.3); }
    75% { transform: scaleY(0.9); }
    100% { transform: scaleY(0.4); }
}

@keyframes vizBounce6 {
    0% { transform: scaleY(0.6); }
    16% { transform: scaleY(0.9); }
    33% { transform: scaleY(0.4); }
    50% { transform: scaleY(1); }
    66% { transform: scaleY(0.5); }
    83% { transform: scaleY(0.7); }
    100% { transform: scaleY(0.6); }
}

@keyframes vizBounce7 {
    0% { transform: scaleY(0.3); }
    30% { transform: scaleY(0.7); }
    60% { transform: scaleY(0.4); }
    90% { transform: scaleY(0.6); }
    100% { transform: scaleY(0.3); }
}

@keyframes vizBounce8 {
    0% { transform: scaleY(0.5); }
    14% { transform: scaleY(0.9); }
    28% { transform: scaleY(0.3); }
    42% { transform: scaleY(0.7); }
    57% { transform: scaleY(0.4); }
    71% { transform: scaleY(1); }
    85% { transform: scaleY(0.6); }
    100% { transform: scaleY(0.5); }
}

@keyframes vizBounce9 {
    0% { transform: scaleY(0.2); }
    33% { transform: scaleY(0.5); }
    66% { transform: scaleY(0.3); }
    100% { transform: scaleY(0.2); }
}

.winamp-time {
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 8px;
}

.winamp-song-title {
    color: #00ff00;
    font-family: 'Arial', sans-serif;
    font-size: 9px;
    display: block;
}

.winamp-volume-balance {
    display: flex;
    justify-content: space-around;
    padding: 2px 4px;
    margin-top: 2px;
}

.winamp-slider {
    color: #00ff00;
    font-size: 6px;
    font-family: monospace;
    letter-spacing: -1px;
}

.winamp-controls {
    background: linear-gradient(to bottom, #e0e0e0, #b0b0b0);
    display: flex;
    justify-content: center;
    gap: 1px;
    padding: 2px;
    border-top: 1px solid #fff;
}

.winamp-ctrl {
    background: linear-gradient(to bottom, #fff, #c0c0c0);
    border: 1px outset #d0d0d0;
    padding: 0 3px;
    font-size: 7px;
    cursor: pointer;
    font-family: 'Webdings', 'Arial', sans-serif;
    line-height: 11px;
    min-width: 14px;
    text-align: center;
}

.winamp-ctrl:active {
    border: 1px inset #808080;
    background: #a0a0a0;
}

.winamp-ctrl.eject {
    margin-left: 3px;
}

.winamp-extra-controls {
    background: #000;
    display: flex;
    justify-content: space-between;
    padding: 2px 3px;
    border: 1px inset #404040;
    margin: 1px;
}

.winamp-mini-btn {
    background: #202020;
    border: 1px solid #404040;
    color: #808080;
    font-size: 6px;
    padding: 0 2px;
    cursor: pointer;
}

.winamp-toggle {
    color: #404040;
    font-size: 8px;
    cursor: pointer;
}

.winamp-toggle.active {
    color: #00ff00;
}

.winamp-ctrl.play {
    color: #008000;
}

.winamp-playlist-section {
    border: 1px solid #404040;
    margin: 1px;
    margin-top: 2px;
    background: #0a0a0a;
}

.winamp-pl-title-bar {
    background: linear-gradient(to bottom, #3a4da6 0%, #1e3a8a 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px 2px;
    height: 12px;
}

.winamp-pl-title {
    color: #fff;
    font-size: 7px;
    font-weight: bold;
}

.winamp-pl-buttons {
    display: flex;
    gap: 1px;
}

.winamp-pl-buttons .winamp-btn {
    font-size: 6px;
    line-height: 7px;
    padding: 0 2px;
}

.winamp-pl-window {
    background: #0a0a0a;
    color: #00ff00;
    font-family: 'Arial', sans-serif;
    font-size: 7px;
    padding: 1px;
    max-height: 50px;
    overflow-y: auto;
    border: 1px inset #202020;
}

.pl-track {
    display: flex;
    padding: 0 2px;
    cursor: pointer;
    line-height: 1.3;
}

.track-num {
    color: #808080;
    margin-right: 3px;
    min-width: 12px;
}

.track-name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.track-time {
    color: #808080;
    margin-left: 3px;
    min-width: 20px;
    text-align: right;
}

.pl-track:hover {
    background: #1e3a8a;
}

.pl-track.active {
    background: #1e3a8a;
}

.pl-track.active .track-name {
    color: #fff;
}

.winamp-pl-bottom {
    background: #000;
    border-top: 1px solid #404040;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px 3px;
}

.pl-info {
    color: #808080;
    font-size: 6px;
}

.winamp-pl-controls {
    display: flex;
    gap: 2px;
}

.pl-btn {
    background: #202020;
    border: 1px solid #404040;
    color: #808080;
    font-size: 6px;
    padding: 0 2px;
    cursor: pointer;
    line-height: 9px;
}

.pl-btn:hover {
    background: #303030;
    color: #a0a0a0;
}

.glitter-text {
    background: linear-gradient(45deg, #FF6EC7, #40E0D0, #C0C0C0, #FF6EC7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glitter 2s linear infinite;
    font-weight: bold;
}

@keyframes glitter {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

@keyframes glitchFlicker {
    0%, 100% { 
        opacity: 1;
        transform: scale(1) skew(0deg);
        text-shadow: 
            0 0 10px #FF00FF,
            0 0 20px #FF00FF,
            0 0 30px #FF00FF;
    }
    20% { 
        opacity: 0.8;
        transform: scale(1.01) skew(1deg);
        text-shadow: 
            2px 2px 0 #00FFFF,
            -2px -2px 0 #FFFF00;
    }
    40% {
        opacity: 1;
        transform: scale(1) skew(-0.5deg);
        text-shadow: 
            0 0 10px #FF00FF,
            0 0 20px #FF00FF;
    }
    60% {
        opacity: 0.9;
        transform: scale(0.99) skew(0deg);
        text-shadow: 
            -2px 0 #00FFFF,
            2px 0 #FF00FF;
    }
    80% {
        opacity: 1;
        transform: scale(1.01) skew(0.5deg);
        text-shadow: 
            0 0 15px #FF00FF,
            0 0 25px #FF00FF,
            1px 1px 0 #00FFFF;
    }
}

.visitor-counter {
    background: linear-gradient(180deg, #C0C0C0, #808080);
    border: 2px inset #40E0D0;
    padding: 5px;
    font-family: 'Courier New', monospace;
    color: #FF6EC7;
    text-shadow: 1px 1px 0 #000;
}

#counter {
    font-size: 16px;
    color: #40E0D0;
    text-shadow: 0 0 5px #FF6EC7;
    animation: counterFlicker 0.5s infinite;
}

@keyframes counterFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.mood-icon {
    font-size: 36px;
    color: #FF6EC7;
    text-shadow: 0 0 10px #40E0D0;
    animation: moodBounce 2s infinite;
}

@keyframes moodBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.mood-dropdown {
    background: #000;
    color: #FF00FF;
    border: 1px solid #FF00FF;
    padding: 3px;
    margin-top: 5px;
}

.stamps {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.stamp {
    background: linear-gradient(135deg, #FF0066, #9900FF);
    color: #FFF;
    padding: 3px 6px;
    font-size: 9px;
    border: 1px solid #FFF;
    transform: rotate(-2deg);
}

.stamp:nth-child(even) {
    transform: rotate(2deg);
}

.header-banner {
    background: #000;
    border: 3px double #FF00FF;
    padding: 10px;
    margin-bottom: 20px;
    box-shadow: inset 0 0 20px rgba(255, 0, 255, 0.5);
}

.rainbow {
    background: linear-gradient(90deg, #FF6EC7, #40E0D0, #FFD700, #FF6EC7, #40E0D0);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbowShift 4s linear infinite;
}

@keyframes rainbowShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.blog-post {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.95) 0%, rgba(26, 0, 51, 0.95) 100%);
    border: 2px ridge #40E0D0;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(255, 110, 199, 0.5), inset 0 0 20px rgba(64, 224, 208, 0.2);
}

.post-header {
    background: linear-gradient(90deg, #FF6EC7, #40E0D0, #FF6EC7);
    background-size: 200% 100%;
    animation: shimmer 5s linear infinite;
    padding: 8px;
    color: #FFF;
    font-size: 10px;
    border-bottom: 1px solid #000;
}

.post-title {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.datetime {
    color: #00FFFF;
}

.mood-text {
    color: #FF69B4;
    font-weight: bold;
}

.post-content {
    padding: 15px;
    background: rgba(26, 0, 51, 0.8);
    color: #FFC1CC;
}

.ascii-art {
    font-family: monospace;
    color: #00FF00;
    font-size: 8px;
    line-height: 1;
    text-shadow: 0 0 5px #00FF00;
}

.journal-entry {
    font-family: 'Georgia', serif;
    font-size: 12px;
    line-height: 1.6;
    color: #EEE;
}

.drop-cap {
    float: left;
    font-size: 48px;
    line-height: 40px;
    padding-right: 5px;
    font-family: 'Times New Roman';
    color: #FF00FF;
    text-shadow: 2px 2px 4px #000;
}

.highlight {
    background: #FFFF00;
    color: #000;
    padding: 0 3px;
}

.code-text {
    font-family: 'Courier New', monospace;
    background: #000;
    color: #00FF00;
    padding: 5px;
    display: inline-block;
    border: 1px solid #00FF00;
}

.glitch-text {
    animation: glitchText 0.3s infinite;
    color: #FF0000;
    font-weight: bold;
}

@keyframes glitchText {
    0% { text-shadow: 2px 0 #00FFFF, -2px 0 #FF00FF; }
    50% { text-shadow: -2px 0 #00FFFF, 2px 0 #FF00FF; }
    100% { text-shadow: 2px 0 #00FFFF, -2px 0 #FF00FF; }
}

.emo-quote {
    font-style: italic;
    color: #FF69B4;
    font-size: 14px;
    text-shadow: 1px 1px 2px #000;
    margin: 20px 0;
}

.divider {
    text-align: center;
    margin: 20px 0;
}

.evidence-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Courier New', monospace;
    font-size: 10px;
}

.evidence-table td {
    padding: 5px;
    border: 1px solid #333;
}

.threat-high { color: #FF0000; font-weight: bold; }
.threat-medium { color: #FFFF00; }
.threat-low { color: #00FF00; }

.chat-box {
    background: #FFF;
    border: 2px solid #000;
    margin-top: 15px;
}

.chat-header-2005 {
    background: linear-gradient(180deg, #0066CC, #003366);
    color: #FFF;
    padding: 5px;
    font-size: 11px;
    font-weight: bold;
}

.chat-content {
    background: #FFF;
    color: #000;
    padding: 10px;
    height: 150px;
    overflow-y: scroll;
    font-family: 'Arial', sans-serif;
    font-size: 11px;
}

.screen-name-fbi {
    color: #FF0099;
    font-weight: bold;
}

.screen-name-user {
    color: #0066CC;
    font-weight: bold;
}

.chat-input {
    width: 100%;
    padding: 5px;
    border: none;
    border-top: 1px solid #CCC;
    font-size: 11px;
}

.button-2005 {
    background: linear-gradient(180deg, #C0C0C0, #808080);
    color: #FF6EC7;
    border: 2px outset #40E0D0;
    padding: 5px 10px;
    margin: 5px;
    cursor: pointer;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 1px 1px 0 #000;
    box-shadow: 0 0 10px rgba(64, 224, 208, 0.5);
}

.button-2005:hover {
    background: linear-gradient(180deg, #ff99cc, #ffb3d9);
    border: 2px inset #e6ccff;
}

.button-2005:active {
    transform: translateY(1px);
}

.avatar-frame {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    position: relative;
}

.avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FF00FF, #00FFFF);
    border: 3px solid #FFF;
    box-shadow: 0 0 10px #FF00FF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pixel-face {
    font-size: 24px;
    font-family: monospace;
    color: #000;
    animation: faceChange 3s infinite;
}

@keyframes faceChange {
    0% { content: '@_@'; }
    33% { content: 'O_O'; }
    66% { content: '>_<'; }
    100% { content: '@_@'; }
}

.online-now {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #00FF00;
    color: #000;
    padding: 2px 5px;
    font-size: 9px;
    font-weight: bold;
    border: 1px solid #000;
}

.profile-info {
    margin-top: 25px;
    font-size: 10px;
    line-height: 1.4;
}

.friend-box {
    background: #222;
    border: 1px solid #666;
    padding: 10px;
    margin: 10px 0;
}

.friend-pic {
    width: 50px;
    height: 50px;
    background: #FF00FF;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-weight: bold;
}

.friend-name {
    text-align: center;
    margin-top: 5px;
    color: #FF69B4;
}

.quiz-results {
    font-size: 10px;
}

.quiz-result {
    background: #1a1a1a;
    border-left: 3px solid #FF00FF;
    padding: 5px;
    margin: 5px 0;
}

.quiz-result b {
    color: #00FFFF;
}

.links a {
    color: #FF00FF;
    text-decoration: none;
    display: block;
    padding: 2px 0;
}

.links a:hover {
    color: #00FFFF;
    text-decoration: underline;
}

.footer {
    background: linear-gradient(180deg, #4B0082 0%, #9400D3 100%);
    border-top: 3px double #40E0D0;
    padding: 20px;
    margin-top: 50px;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -5px 20px rgba(255, 179, 217, 0.3);
    clear: both;
}

.copyright {
    font-size: 9px;
    color: #666;
}

marquee {
    font-size: 10px;
    color: #FF00FF;
    font-weight: bold;
}

.popup-2005 {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #C0C0C0;
    border: 2px outset #FFF;
    box-shadow: 2px 2px 5px #000;
    z-index: 9999;
    min-width: 300px;
}

.popup-2005.hidden {
    display: none;
}

.popup-header {
    background: linear-gradient(180deg, #0000FF, #000080);
    color: #FFF;
    padding: 3px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: bold;
}

.popup-header button {
    background: #C0C0C0;
    border: 1px outset #FFF;
    color: #000;
    padding: 0 5px;
    cursor: pointer;
    font-weight: bold;
}

.popup-body {
    padding: 15px;
    background: #C0C0C0;
    color: #000;
}

.ascii-heart {
    font-family: monospace;
    color: #FF0099;
    font-size: 12px;
    margin-bottom: 10px;
}

blink {
    animation: blink 1s step-start infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

center {
    text-align: center;
}

.cursor-trail {
    position: fixed;
    pointer-events: none;
    z-index: 10000;
}

.sparkle {
    position: fixed;
    pointer-events: none;
    animation: sparkleFloat 1s ease-out forwards;
    z-index: 10000;
}

@keyframes sparkleFloat {
    0% { 
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-20px) scale(0);
        opacity: 0;
    }
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #000;
    border: 1px solid #333;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #FF00FF, #00FFFF);
    border: 1px solid #000;
}

::selection {
    background: #FF00FF;
    color: #FFF;
}

::-moz-selection {
    background: #FF00FF;
    color: #FFF;
}