* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'><path d='M15,4 h2 v11 h11 v2 h-11 v11 h-2 v-11 h-11 v-2 h11 v-11 z' fill='white' stroke='black' stroke-width='1'/></svg>") 16 16, crosshair !important;
}
body {
    background-color: #000;
    color: #fff;
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
#background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #050505 0%, #1a1a1a 50%, #000000 100%);
    background-size: 200% 200%;
    animation: gradientBG 30s linear infinite;
    z-index: -2;
    will-change: background-position;
}
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
#overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
    pointer-events: none;
}
#entrance-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    cursor: pointer;
    transition: opacity 0.8s ease-out;
}
#entrance-screen.hidden {
    opacity: 0;
    pointer-events: none;
    transform: none; 
}
.enter-text {
    font-size: 1.5rem;
    color: #ccc;
    font-family: 'Courier New', Courier, monospace !important;
    font-weight: 400;
}
.enter-text::after {
    content: '|';
    animation: blinkCursor 1s step-end infinite;
}
.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
}
#profile-container {
    transition: all 1s ease;
    transform: scale(1);
    opacity: 1;
}
.glass-card {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    width: 350px;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    will-change: transform;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
.avatar-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}
#avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
    position: relative;
}
.glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.3;
    animation: pulse 2s infinite alternate;
}
@keyframes pulse {
    from { transform: translate(-50%, -50%) scale(1); opacity: 0.2; }
    to { transform: translate(-50%, -50%) scale(1.1); opacity: 0.4; }
}
.username {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
.bio {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 25px;
    min-height: 2em;
    font-family: 'Courier New', Courier, monospace !important;
}
.bio::after {
    content: '|';
    animation: blinkCursor 1s step-end infinite;
}
@keyframes blinkCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.social-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.view-counter {
    margin-top: 25px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}
.view-counter svg {
    opacity: 0.7;
}
.glass-player {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    transition: opacity 0.5s ease;
    z-index: 50;
}
.player-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}
.player-btn:hover {
    transform: scale(1.1);
}
.progress-container {
    flex-grow: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.progress-bar {
    height: 100%;
    width: 0%;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 3px;
    transition: width 0.1s linear;
}
.volume-container {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
}
.volume-slider {
    width: 50px;
    height: 4px;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}
.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
}
.dashboard-card {
    width: 500px;
    margin: 0 auto;
    max-width: 100%;
}
.form-group {
    margin-bottom: 20px;
    text-align: left;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 600;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 10px;
    font-family: inherit;
    transition: border-color 0.3s, background 0.3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    outline: none;
}
.form-group input[type="file"] {
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    cursor: pointer;
    color: #ccc;
}
.form-group input[type="file"]::-webkit-file-upload-button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 15px;
    transition: background 0.3s;
}
.form-group input[type="file"]::-webkit-file-upload-button:hover {
    background: rgba(255, 255, 255, 0.2);
}
.btn-primary {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: white;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 800;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 10px;
}
.btn-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(150%);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
}
.toast.show {
    transform: translateY(0);
}
.toast.show {
    opacity: 1;
}

.particle {
    position: absolute;
    pointer-events: none;
    opacity: 0.5;
    animation: floatParticle linear infinite;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.8));
    color: rgba(60, 60, 60, 0.8);
    user-select: none;
}
@keyframes floatParticle {
    0% { transform: translateY(110vh) rotate(0deg) scale(0.8); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-20vh) rotate(360deg) scale(1.2); opacity: 0; }
}
