body {
    background-color: #0d0d0d;
    color: #b180ff;
    font-family: Courier New, monospace;
    margin: 0px;
    padding: 0;
    background-image: url('https://www.transparenttextures.com/patterns/asfalt-light.png');
    cursor: url('https://cur.cursors-4u.net/cursors/cur-11/cur1043.cur'), auto;
}

header {
    background: #bb88ff;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 0px 10px #bb88ff;
}

nav {
    flex-wrap: wrap;
}

nav a {
    color: black;
    text-decoration: none;
    margin: 0px 15px;
    font-weight: bold;
    font-size: 1.2em;
    transition: 0.3s ease;
}

nav a:hover {
    color: white;
    text-shadow: 0 0 5px #fff;
}

.main {
    padding: 40px 20px;
    text-align: center;
}

.logo {
    font-family: 'Press Start 2P', cursive;
    font-size: 2em;
    font-weight: bold;
    color: #d87fff;
    text-shadow: 0 0 10px #bb88ff;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 10px #bb88ff, 0 0 20px #bb88ff;
    }
    100% {
        text-shadow: 0 0 20px #ff66ff, 0 0 30px #ff66ff;
    }
}

.tagline {
    font-size: 1.3em;
    margin-top: 20px;
    margin-bottom: 40px;
    color: #9966ff;
}

.box {
    border: 2px double #bb88ff;
    padding: 30px;
    background-color: #111;
    max-width: 800px;
    margin: 20px auto 0;
    box-shadow: 0 0 10px #8844ee;
}

.guestbook {
    margin-top: 40px;
    padding: 20px;
    background: #1b001b;
    border: 2px dashed #ff99ff;
    color: #ffccff;
    font-size: 0.9em;
}

.guestbook textarea {
    width: 100%;
    max-width: 100%;
    height: 100px;
    background: #0d0d0d;
    color: #ffccff;
    border: 1px solid #bb88ff;
    font-family: monospace;
    padding: 10px;
}

.guestbook button {
    margin-top: 10px;
    padding: 10px 20px;
    background: #bb88ff;
    color: black;
    font-weight: bold;
    cursor: pointer;
}

footer {
    text-align: center;
    margin-top: 60px;
    color: #bb88ff;
    font-size: 0.9em;
    font-weight: bold;
}

.dollar {
    color: #bb88ff;
    font-size: 2em;
}

.blink {
    animation: blink-animation 1s steps(2, start) infinite;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

marquee {
    color: #ff99ff;
    background: #1a001a;
    padding: 5px;
    font-weight: bold;
    border-top: 1px solid #bb88ff;
    border-bottom: 1px solid #bb88ff;
}

.netscape-icon {
    margin-top: 30px;
    display: inline-block;
}

.netscape-icon img {
    width: 88px;
    height: 31px;
    border: 1px solid #bb88ff;
}

.middle {
    position: absolute;
    bottom: 350px;
    right: 650px;
}

* {
    cursor: url('https://cur.cursors-4u.net/cursors/cur-11/cur1043.cur'), auto !important;
}

.member-box {
    background: #111;
    border: 2px double #bb88ff;
    padding: 30px;
    margin: 40px auto 0;
    max-width: 600px;
    box-shadow: 0 0 10px #8844ee;
}

.member-box h3 {
    color: #ffccff;
    margin-bottom: 15px;
}

.member-box ul {
    list-style: none;
    padding: 0;
    color: #d87fff;
    font-size: 0.9em;
}

.member-box li {
    margin: 6px 0;
}

.moneychat-center {
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.moneychat-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.6em;
    color: #ff99ff;
    text-shadow: 0 0 8px #bb88ff, 0 0 20px #ff66ff;
    margin-bottom: 20px;
}

.moneychat-sub {
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8em;
    color: #bb88ff;
    text-shadow: 0 0 6px #8844ee;
}

.fullscreen-message {
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.title-line {
    color: #d87fff;
    font-family: 'Press Start 2P', cursive;
    text-shadow: 0 0 10px #bb88ff;
    animation: glow 2s infinite alternate;
    font-size: 1.2em;
    margin-bottom: 20px;
}

.subtitle-line {
    color: #bb88ff;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.7em;
    text-shadow: 0 0 6px #8844ee;
}

.music-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(27, 0, 27, 0.9);
    padding: 10px 18px;
    border-radius: 30px;
    border: 2px solid #bb88ff;
    color: #ffccff;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.6em;
    text-decoration: none;
    box-shadow: 0 0 10px #8844ee;
    transition: 0.3s ease;
    text-shadow: 0 0 3px #bb88ff;
}

.badge img {
    height: 20px;
    width: 20px;
    filter: brightness(0.9);
}

.badge:hover {
    transform: scale(1.05);
    background-color: #bb88ff;
    color: black;
    box-shadow: 0 0 16px #ff66ff;
}

.badge.soundcloud { border-color: #ff7700; }
.badge.youtube    { border-color: #ff0000; }
.badge.spotify    { border-color: #1db954; }

        /* mobile shit */
        @media (max-width: 768px) {
            .logo {
                font-size: 1.2em;
            }

            nav a {
                display: inline-block;
                margin: 10px 8px;
                font-size: 1em;
            }

            .tagline {
                font-size: 1em;
                padding: 0 10px;
            }

            .box,
            .guestbook {
                width: 90%;
                padding: 20px;
            }

            .guestbook textarea {
                width: 100%;
            }

            .netscape-icon img {
                width: 70px;
                height: auto;
            }

            .title-line {
                font-size: 1em;
            }

            .subtitle-line {
                font-size: 0.8em;
            }

            marquee {
                font-size: 0.6em;
            }
        }

        @media (max-width: 480px) {
            .badge {
                font-size: 0.5em;
                padding: 8px 14px;
            }

            .badge img {
                height: 16px;
                width: 16px;
            }
        }