* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    
    body {
    background-color: #030303;
    color: #e5e5e5;
    font-family: 'Space Grotesk', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    }
    
    @media (pointer: fine) {
    * {
    cursor: none !important;
    }
    }
    
    .cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    }
    
    .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
    }
    
    .cursor-ring.hover {
    width: 56px;
    height: 56px;
    border-color: rgba(30, 215, 96, 0.6);
    background-color: rgba(30, 215, 96, 0.05);
    }
    
    #canvas-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
    }
    
    .content-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 540px;
    padding: 0 24px 40px 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    }
    
    .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    }
    
    .banner-container {
    width: 100%;
    height: 160px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
    border-radius: 0 0 40px 40px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    }
    
    .banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: blur(2px) grayscale(30%);
    }
    
    .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(3,3,3,0) 0%, #030303 100%);
    }
    
    .avatar-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin-top: 110px;
    margin-bottom: 20px;
    }
    
    .avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    filter: grayscale(20%);
    transition: filter 0.5s ease;
    border: 4px solid #030303;
    }
    
    .avatar:hover {
    filter: grayscale(0%);
    }
    
    .avatar-ring {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
    z-index: 1;
    animation: pulse 4s infinite alternate;
    }
    
    @keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.05); opacity: 1; }
    }
    
    .name {
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: -0.5px;
    color: #fff;
    margin-bottom: 6px;
    }
    
    .quote {
    font-size: 0.9rem;
    color: #777;
    font-weight: 300;
    letter-spacing: 0.5px;
    }
    
    .info-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    }
    
    .badge {
    padding: 6px 14px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    color: #aaa;
    }
    
    .countdown-wrapper {
    text-align: center;
    font-size: 0.8rem;
    color: #555;
    margin-top: -20px;
    height: 16px;
    }
    
    .interests {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .interest-item {
    font-size: 0.85rem;
    color: #ddd;
    }
    
    .separator {
    width: 4px;
    height: 4px;
    background: #444;
    border-radius: 50%;
    }
    
    .links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    }
    
    .minimal-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    position: relative;
    }
    
    .minimal-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
    }
    
    .minimal-link:hover::before {
    transform: translateX(0);
    }
    
    .link-text {
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.4s ease;
    }
    
    .arrow {
    position: relative;
    z-index: 1;
    width: 18px;
    height: 18px;
    fill: none;
    transition: all 0.4s ease;
    }
    
    .minimal-link:hover .link-text {
    color: #000;
    }
    
    .minimal-link:hover .arrow {
    stroke: #000;
    transform: translateX(4px);
    }
    
    .spotify-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    text-decoration: none;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    }
    
    .spotify-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 60%, rgba(30, 215, 96, 0.8) 80%, #1db954 100%);
    animation: rotateBorder 3s linear infinite;
    z-index: -2;
    }
    
    .spotify-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: #060606;
    border-radius: 11px;
    z-index: -1;
    transition: background 0.3s ease;
    }
    
    .spotify-card:hover {
    transform: scale(1.02);
    }
    
    .spotify-card:hover::after {
    background: #0a0a0a;
    }
    
    .spotify-card .link-text {
    color: #1db954;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(30, 215, 96, 0.2);
    }
    
    .spotify-card .arrow {
    stroke: #1db954;
    }
    
    @keyframes rotateBorder {
    100% { transform: rotate(360deg); }
    }
    
    .media {
    display: flex;
    flex-direction: column;
    gap: 16px;
    }
    
    .audio-player {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.01);
    transition: border-color 0.3s ease;
    }
    
    .audio-player:hover {
    border-color: rgba(255, 255, 255, 0.15);
    }
    
    .play-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    }
    
    .play-toggle:hover {
    background: #fff;
    color: #000;
    }
    
    .audio-track-name {
    font-size: 0.85rem;
    color: #aaa;
    }
    
    .spotify-embed iframe {
    border-radius: 12px;
    background: transparent;
    }
    
    .slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    
    .delay-1 { animation-delay: 0.1s; }
    .delay-2 { animation-delay: 0.2s; }
    .delay-3 { animation-delay: 0.3s; }
    .delay-4 { animation-delay: 0.4s; }
    
    @keyframes slideUpFade {
    to {
    opacity: 1;
    transform: translateY(0);
    }
    }
    
    .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
    }
    
    .modal-overlay.active {
    opacity: 1;
    visibility: visible;
    }
    
    .modal-content {
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    width: 90%;
    max-width: 320px;
    text-align: center;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    }
    
    .modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
    }
    
    .modal-header {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    }
    
    .modal-domain {
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 24px;
    word-break: break-all;
    }
    
    .timer-bar {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 16px;
    position: relative;
    }
    
    .timer-progress {
    height: 100%;
    width: 100%;
    background: #fff;
    transform-origin: left;
    }
    
    .timer-progress.animate {
    animation: shrinkBar 5s linear forwards;
    }
    
    @keyframes shrinkBar {
    from { transform: scaleX(1); }
    to { transform: scaleX(0); }
    }
    
    .modal-countdown {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 24px;
    color: #fff;
    line-height: 1;
    }
    
    .cancel-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 12px 24px;
    border-radius: 40px;
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    }
    
    .cancel-btn:hover {
    background: #fff;
    color: #000;
    }