:root {
    --primary-color: #ffffff;
    --accent-color: #888888;
    --bg-dark: #000000;
    --glass-bg: rgba(0, 0, 0, 0.6);
    --glass-border: rgba(255, 255, 255, 0.05);
    --text-main: #ffffff;
    --text-dim: #888888;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    cursor: none;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Section */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #000;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.2) grayscale(100%);
    opacity: 0.3;
}

/* Click to Enter Overlay */
#entry-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: opacity 1s ease-out, visibility 1s;
}

#entry-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.entry-text {
    font-size: 0.9rem;
    letter-spacing: 5px;
    color: #fff;
    text-transform: uppercase;
    animation: glow-pulse 2s infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes glow-pulse {
    0% { opacity: 0.4; text-shadow: 0 0 5px rgba(255, 255, 255, 0.2); }
    50% { opacity: 1; text-shadow: 0 0 15px rgba(255, 255, 255, 0.8); }
    100% { opacity: 0.4; text-shadow: 0 0 5px rgba(255, 255, 255, 0.2); }
}

/* Cursor Trailer */
#cursor-trailer {
    height: 8px;
    width: 8px;
    background-color: white;
    border-radius: 50%;
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease-out;
    opacity: 0;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Main Container */
.container {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.glass-card {
    padding: 2rem;
    text-align: center;
}

.avatar-wrapper {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 1.5rem;
}

.profile-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
    filter: grayscale(100%);
}

.name {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    letter-spacing: 2px;
}

.tagline {
    color: var(--text-dim);
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: lowercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    font-style: italic;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn {
    text-decoration: none;
    color: #444;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Footer & Clock */
.footer {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    text-align: left;
    z-index: 10;
}

.clock {
    font-size: 0.75rem;
    color: #333;
    letter-spacing: 3px;
    font-family: monospace;
}

/* Music Player Bottom Right */
.music-player {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 200px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.8rem;
    border-radius: 12px;
    z-index: 100;
    font-family: monospace;
}

.player-info {
    font-size: 0.6rem;
    color: #555;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.controls-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.icon-btn {
    background: none;
    border: none;
    color: #444;
    font-size: 0.65rem;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s;
}

.icon-btn:hover {
    color: #fff;
}

.progress-bar {
    flex-grow: 1;
    height: 2px;
    -webkit-appearance: none;
    appearance: none;
    background: #222;
    outline: none;
    cursor: pointer;
}

.progress-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 480px) {
    .name {
        font-size: 1.5rem;
    }
    .music-player {
        width: 160px;
        right: 1rem;
        bottom: 1rem;
    }
    .footer {
        left: 1rem;
        bottom: 1rem;
    }
}
