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

body {
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #e8f4f8;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    pointer-events: none;
    z-index: -1;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    padding: 20px;
}

.box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 150, 0.1);
    border-radius: 16px;
    padding: 30px;
    width: 360px;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 60px rgba(0, 255, 150, 0.03);
    transition: all 0.3s ease;
}

.box:hover {
    transform: scale(1.03);
    box-shadow: 0 0 100px rgba(0, 255, 150, 0.1);
    border-color: rgba(0, 255, 150, 0.15);
}

.profile-pic {
    margin-bottom: 20px;
}

.profile-pic img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 150, 0.2);
    box-shadow: 0 0 20px rgba(0, 255, 150, 0.05);
}

h1 {
    font-size: 2em;
    margin: 10px 0 5px 0;
    background: linear-gradient(135deg, #00ff96 0%, #00d4aa 50%, #0099ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}

p {
    font-size: 1em;
    opacity: 0.7;
    line-height: 1.5;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 20px;
}

.social-link {
    width: 32px;
    height: 32px;
    transition: transform 0.2s ease;
}

.social-link img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

.social-link:hover {
    transform: scale(1.15);
}

.music-player {
    position: fixed;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 150, 0.15);
    padding: 18px 28px;
    border-radius: 12px;
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 340px;
    box-shadow: 0 0 40px rgba(0, 255, 150, 0.04);
    z-index: 10;
}

.controls {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.control-button {
    background: transparent;
    border: none;
    color: #e8f4f8;
    font-size: 1.4em;
    cursor: pointer;
    transition: color 0.2s;
}

.control-button:hover {
    color: #00ff96;
}

.song-info {
    font-size: 0.85em;
    text-align: center;
    color: #e8f4f8;
    opacity: 0.7;
    letter-spacing: 0.5px;
}

#volumeSlider {
    margin-top: 10px;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    outline: none;
    transition: opacity 0.2s;
}

#volumeSlider::-webkit-slider-thumb {
    appearance: none;
    width: 14px;
    height: 14px;
    background: #00ff96;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(0, 255, 150, 0.1);
}

#customCursor {
    position: fixed;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 150, 0.8);
    background: rgba(0, 255, 150, 0.1);
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.08s ease-out;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    text-align: center;
    font-size: 0.75em;
    padding: 8px 0;
    color: rgba(232, 244, 248, 0.6);
    border-top: 1px solid rgba(0, 255, 150, 0.05);
    z-index: 5;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6em;
    z-index: 100;
    text-align: center;
    color: #e8f4f8;
}

.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease;
}