body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: radial-gradient(#001d15, #000);
    color: white;
    font-family: 'Minecraft', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    user-select: none;
    position: relative;
}

.trail {
    position: fixed;
    pointer-events: none;
    width: 20px;
    height: 20px;
    z-index: 9999;
    transform-origin: center center;
    clip-path: polygon(50% 0%, 65% 35%, 100% 50%, 65% 65%, 50% 100%, 35% 65%, 0 50%, 35% 35%);
    background: #00ffb3;
    box-shadow: 0 0 10px rgba(255, 255, 0, 0.4),
                0 0 20px rgba(255, 255, 0, 0.2),
                0 0 30px rgba(255, 255, 0, 0.1);
    animation: fall 1s ease-in forwards;
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(200px) rotate(180deg);
        opacity: 0;
    }
}

h2 {
    transition: all 1s ease;
    white-space: nowrap;
    text-shadow: 2px 2px #3f3f3f;
}

p {
    transition: all 1s ease;
    white-space: nowrap;
    text-shadow: 1px 1.5px #3f3f3f;
}

a {
    text-shadow: 1px 1.5px #3f3f3f;
}

p:hover, h2:hover {
    letter-spacing: 0.5px;
}

.main-text {
    opacity: 0;
    cursor: pointer;
    text-align: center;
    position: relative;
    top: 15%;
    margin: auto;
    font-size: 70px;
    font-weight: bold;
    transition: all 1s ease;
    text-shadow: 0 0 10px #fff, 0 0 20px #00ffb3, 0 0 40px #00ffb3, 6px 6.5px #3f3f3f;
}

.main-text:hover {
    letter-spacing: 3px;
    text-shadow: 0 0 10px #fff, 0 0 20px #aaccff, 0 0 40px #aaccff, 6px 6.5px #3f3f3f;
}

.audio-controls {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(0deg, rgba(0, 255, 178, 0.2), rgba(0, 0, 0, 0.8));
    padding: 12px 20px;
    border-radius: 8px;
    border: 2px solid #00FFB2;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    backdrop-filter: blur(5px);
}

.play-pause-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    scale: 1.5;
    filter: drop-shadow(0 0 5px #00ffb3);
}

.play-pause-btn svg {
    width: 24px;
    height: 24px;
    fill: #00FFB2;
}

.pause-icon {
    display: none;
}

.audio-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.song-title {
    font-size: 20px;
    color: #fff;
    text-shadow: 0 0 5px #00FFB2;
}

.volume-slider {
    width: 150px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, #00FFB2 50%, #2a3a37 50%);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: #00FFB2;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px #00FFB2;
}

.volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: #00FFB2;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.volume-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px #00FFB2;
}

@keyframes gridScroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50px);
    }
}

.grid-overlay {
    position: fixed;
    top: 10;
    left: 10;
    width: 200vw;
    height: 200vh;
    background-image: linear-gradient(rgba(255, 255, 255, 1) 1px, transparent 1px),
                  linear-gradient(90deg, rgba(255, 255, 255, 1) 1px, transparent 1px);
    background-size: 50px 50px, 50px 50px, 100% 100%;
    background-repeat: repeat;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
    z-index: 1;
    transform-origin: center center;
    animation: gridScroll 2s linear infinite;
}

.content {
    display: none;
    max-width: 500px;
    width: 370px;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
    background: linear-gradient(0deg, rgba(0, 255, 178, 0.2), rgba(0, 0, 0, 0.8));
    border-radius: 15px;
    backdrop-filter: blur(10px);
    margin: 20px;
    border: 2px solid #00FFB2;
    border-radius: 8px;
    background: linear-gradient(0deg, rgba(0, 255, 178, 0.2), rgba(0, 0, 0, 0.8));
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.3s ease;
    overflow-x: hidden;
}

.content:active {
    transform: scale(0.98) translateY(50px);
    box-shadow: 0 0 15px rgba(0, 255, 178, 0.3);
    border-color: rgba(0, 255, 178, 0.8);
}

.click-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    cursor: pointer;
    z-index: 3;
    text-align: center;
    opacity: 1;
    transition: opacity 1s ease;
}

.bio-section {
    margin: 20px 0;
}

.bio-section h2 {
    margin-bottom: 15px;
}

.bio-section p {
    line-height: 0.5;
}

.hb {
    color: #5ff;
    text-shadow: 1px 1.5px #153f3f;
}

.hds {
    color: #0a0;
    text-shadow: 1px 1.5px #002a00;
}

.kr1 {
    color: #ff5555;
    text-shadow: 2px 2px #3f1515;
}

.kr2 {
    color: #5555ff;
    text-shadow: 2px 2px #15153f;
}

.tetrio {
    color: #aa00aa;
    text-shadow: 2px 2px #2a002a;
}

.u {
    color: #ff5555;
    text-shadow: 2px 2px #3f1515;
}

.social-section {
    margin: 30px 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: all 0.25s ease;
    padding: 10px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.05));
    border-radius: 8px;
}

.social-link:hover {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(255, 255, 255, 0.1));
    box-shadow: 0 0 20px #0009;
}

.social-link img {
    scale: 0.2;
    margin: -90px;
    color: white;
    transition: transform 0.25s;
}

.social-link:hover i {
    transform: scale(1.1);
}

.content:hover {
    transform: rotateX(5deg) rotateY(5deg) translateY(50px);
    box-shadow: -10px -10px 20px rgba(0, 255, 178, 0.1),
                10px 10px 20px rgba(0, 0, 0, 0.5);
}

.social-link:hover img {
    transform: scale(1.1);
}