* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: #000;
    font-family: 'Inter', -apple-system, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: white;
    overflow-x: hidden;
}

#bg-video {
    position: fixed;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    filter: brightness(35%);
}

.container {
    width: 95%;
    max-width: 450px;
    text-align: center;
    padding: 40px 0;
}

.profile-pic {
    width: 110px; height: 110px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-bottom: 15px;
    object-fit: cover;
    box-shadow: 0 0 25px rgba(255,255,255,0.2);
}

h1 { font-size: 1.8rem; margin-bottom: 10px; letter-spacing: 4px; font-weight: 800; text-transform: uppercase; }

/* --- Slogan Typing Effect --- */
.description-container {
    min-height: 50px; 
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.description {
    font-size: 0.85rem;
    opacity: 0.8;
    letter-spacing: 0.5px;
    line-height: 1.6;
    font-weight: 400;
    padding: 0 20px;
    border-right: 2px solid rgba(255,255,255,0.75); 
    white-space: normal;
    overflow: hidden;
    transition: opacity 1s ease;
}

.fade-out { opacity: 0; }

/* --- X SMILE Artist Specific Profile Visual --- */
.artist-main-visual {
    margin-bottom: 25px;
    animation: fadeIn 1s ease forwards;
}

.artist-main-thumb {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
    box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.artist-main-name {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 12px;
    margin-bottom: 4px;
}

.artist-main-genres {
    font-size: 0.8rem;
    opacity: 0.6;
    letter-spacing: 1px;
}

/* --- X SMILE Main Music Buttons --- */
.btn-list { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
    margin-bottom: 40px;
    animation: fadeIn 1.2s ease forwards;
}

.btn {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    padding: 14px; border: 1px solid rgba(255,255,255,0.4);
    color: #fff; text-decoration: none; border-radius: 50px;
    background: rgba(255,255,255,0.05); backdrop-filter: blur(5px);
    transition: all 0.3s ease; font-weight: 600; font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn:hover {
    transform: scale(1.03); background: rgba(255,255,255,0.2);
    border-color: #fff; box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

/* --- Artist Menu Section --- */
.artist-title {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 15px;
    animation: fadeIn 1.5s ease forwards;
}

.artist-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    animation: fadeIn 1.7s ease forwards; 
}

.artist-card {
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease;
    width: 85px;
}

.artist-card:hover { transform: translateY(-5px); }

.artist-thumb {
    width: 70px; height: 70px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    margin-bottom: 8px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.artist-card:hover .artist-thumb {
    border-color: #fff;
    box-shadow: 0 0 15px rgba(255,255,255,0.5);
}

.artist-card:hover .artist-name {
    opacity: 1;
}

.artist-name {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

/* --- About Button & Footer --- */
.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    padding: 14px 40px;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    animation: fadeIn 2s ease forwards; 
}

.about-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.1);
}

.social-footer {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    animation: fadeIn 2.3s ease forwards; 
}

.social-footer a {
    color: white;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    opacity: 0.6;
    text-decoration: none;
}

.social-footer a:hover { opacity: 1; transform: scale(1.2); }

.youtube:hover { color: #ff0000; }
.instagram:hover { color: #E1306C; }
.facebook:hover { color: #1877f2; }
.x-twitter:hover { color: #fff; }
.tiktok:hover { color: #00f2ea; }
.email:hover { color: #fbbc05; }

.copyright {
    margin-top: 35px;
    font-size: 0.7rem;
    opacity: 0.4;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes blink {
    50% { border-color: transparent; }
}

.typing-cursor {
    animation: blink 0.7s step-end infinite;
}