/* ==========================================================================
   X SMILE RECORDS - COMPONENTS & UI ELEMENTS (PRO LABEL EDITION)
   ========================================================================== */

/* --- Brand Logo Wrapper & Looping Neon Aura --- */
.logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    z-index: 1;
}

.logo-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.8) 0%, rgba(0, 240, 255, 0.5) 50%, rgba(34, 197, 94, 0.3) 75%, transparent 100%);
    filter: blur(20px);
    z-index: -1;
    animation: auraLoop 3s ease-in-out infinite alternate;
}

@keyframes auraLoop {
    0% {
        transform: translate(-50%, -50%) scale(0.85);
        opacity: 0.5;
        filter: blur(15px);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.95;
        filter: blur(25px);
    }
}

.profile-pic {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.9);
    object-fit: cover;
    display: block;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.6), inset 0 0 15px rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
}

/* --- Brand & Section Typography (Orbitron Pro Label) --- */
.brand-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 
                 0 0 20px rgba(255, 0, 0, 0.8), 
                 0 0 35px rgba(255, 0, 0, 0.5);
    margin-bottom: 15px;
}

.section-headline {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    margin-top: 55px;
    margin-bottom: 25px;
    border-bottom: 2px solid #22c55e;
    display: inline-block;
    padding-bottom: 6px;
    text-shadow: 0 0 12px rgba(34, 197, 94, 0.6), 0 0 25px rgba(0, 240, 255, 0.4);
}

/* --- Profile Visuals & Artists --- */
.artist-main-visual {
    margin-bottom: 25px;
}

.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-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 12px;
    margin-bottom: 4px;
}

.artist-main-genres {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    opacity: 0.6;
    letter-spacing: 1px;
}

/* --- Typing Slogan --- */
.description-container {
    min-height: 50px;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.description {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.88rem;
    opacity: 0.85;
    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;
}

/* --- Artist Selector Cards --- */
.artist-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    margin-bottom: 15px;
}

.artist-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.artist-card {
    text-decoration: none;
    color: white;
    width: 85px;
    transition: all 0.3s ease;
}

.artist-thumb {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.artist-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
    transition: all 0.3s ease;
}

/* --- Grids --- */
.grid-music {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

.grid-video {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 50px auto;
}

/* --- Media Containers (Iframe Wrappers) --- */
.video-box {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 0, 0.5);
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.music-box {
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255, 0, 0, 0.5);
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.music-box iframe {
    display: block;
    width: 100%;
    height: 352px;
    border: none;
}

.apple-box {
    border-radius: 10px;
    overflow: hidden;
    background: #000;
    width: 100%;
    max-width: 660px;
    margin: 0 auto 15px auto;
    border: 1px solid rgba(255, 0, 0, 0.5);
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.apple-box iframe {
    display: block;
    width: 100%;
    height: 175px;
    border: none;
}

/* --- Buttons --- */
.btn-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.btn {
    font-family: 'Space Grotesk', sans-serif;
    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;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.about-btn {
    font-family: 'Orbitron', sans-serif;
    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.35);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.back-home {
    font-family: 'Space Grotesk', sans-serif;
    margin-top: 40px;
    display: inline-block;
    color: #aaa;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

/* --- Futuristic Map Wrapper --- */
.map-wrapper {
    position: relative;
    max-width: 900px;
    margin: 35px auto 25px auto;
    padding: 3px;
    background: linear-gradient(135deg, #00f0ff, rgba(255, 0, 0, 0.8), #22c55e);
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.35), 0 0 35px rgba(255, 0, 0, 0.25);
    transition: all 0.4s ease;
}

.map-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 13px;
    background-color: #0b0b12;
}

/* --- Powered By Badge --- */
.powered-by-link {
    display: inline-block;
    padding: 6px 16px;
    font-family: monospace;
    text-decoration: none !important;
    color: #22c55e !important;
    background-color: transparent !important;
    border: 1px solid #22c55e !important;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* --- Social Footer & Glowing Multi-Color Icons --- */
.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;
}

.social-footer a {
    color: #ffffff;
    font-size: 1.6rem;
    opacity: 0.65;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

/* Custom Neon Drop-Shadow Hover per Platform ⚡ */
.youtube:hover { color: #ff0000; filter: drop-shadow(0 0 14px #ff0000); opacity: 1; }
.instagram:hover { color: #E1306C; filter: drop-shadow(0 0 14px #E1306C); opacity: 1; }
.facebook:hover { color: #1877f2; filter: drop-shadow(0 0 14px #1877f2); opacity: 1; }
.x-twitter:hover { color: #ffffff; filter: drop-shadow(0 0 14px #ffffff); opacity: 1; }
.tiktok:hover { color: #00f2ea; filter: drop-shadow(0 0 14px #00f2ea); opacity: 1; }
.email:hover { color: #fbbc05; filter: drop-shadow(0 0 14px #fbbc05); opacity: 1; }

.copyright {
    font-family: 'Space Grotesk', sans-serif;
    margin-top: 35px;
    font-size: 0.7rem;
    opacity: 0.4;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- SmileChat Widget Base --- */
#sc-chat-badge {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 0 20px;
    height: 50px;
    background-color: #00f0ff;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.4), 0 0 15px #00f0ff;
    z-index: 999999;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#sc-chat-window {
    position: fixed;
    bottom: 85px;
    right: 20px;
    width: 380px;
    max-width: 90%;
    height: 520px;
    background-color: transparent;
    border: none;
    display: none;
    z-index: 999999;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 240, 255, 0.3) !important;
    border: 1px solid rgba(0, 240, 255, 0.4) !important;
}

@media (max-width: 480px) {
    #sc-chat-window {
        width: calc(100% - 30px) !important;
        right: 15px !important;
        left: 15px !important;
        bottom: 80px !important;
        height: 60vh !important;
    }
    #sc-chat-badge {
        bottom: 15px !important;
        right: 15px !important;
        height: 45px !important;
    }
}

/* --- Additional Layouts for About & Artist Pages --- */
.header { text-align: center; margin-bottom: 50px; }
.header img { width: 80px; border-radius: 50%; margin-bottom: 20px; border: 2px solid #fff; box-shadow: 0 0 20px rgba(255, 255, 255, 0.1); }
.desc { font-family: 'Space Grotesk', sans-serif; opacity: 0.7; font-size: 0.9rem; margin-bottom: 25px; letter-spacing: 1px; }

.spotify-release { margin-bottom: 25px; width: 100%; }
.spotify-release h3 { font-family: 'Orbitron', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; color: #1DB954; text-shadow: 0 0 10px rgba(29, 185, 84, 0.3); }

.media-grid { margin-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
@media (max-width: 600px) { .media-grid { grid-template-columns: 1fr; } }

.media-link { background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); padding: 12px 15px; border-radius: 8px; color: #bbb; text-decoration: none; font-size: 0.85rem; display: flex; align-items: center; transition: all 0.3s ease; border: 1px solid rgba(255, 255, 255, 0.08); font-family: 'Space Grotesk', sans-serif; }
.media-link:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.3); color: #fff; transform: translateY(-3px); }
.media-link i { margin-right: 10px; font-size: 0.7rem; color: #fff; }

.footer-about { margin-top: 60px; text-align: center; border-top: 1px solid #222; padding-top: 30px; }