/* --- RESET & FONTS & BACKGROUND --- */
:root {
    --bg: #050510;
    --glass: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
    --neon-purple: #b026ff;
    --neon-blue: #00d4ff;
    --text: #ffffff;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg);
    background-image: 
        linear-gradient(rgba(176, 38, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(176, 38, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

/* --- BACKGROUND BLOBS --- */
.background-blobs {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -2;
    pointer-events: none;
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 10s infinite alternate;
}
.blob-1 { width: 300px; height: 300px; background: var(--neon-purple); top: -50px; left: -50px; }
.blob-2 { width: 250px; height: 250px; background: var(--neon-blue); bottom: -50px; right: -50px; animation-delay: 2s; }

/* --- AI CHATBOT STYLES (NEW) --- */
.chat-toggle {
    position: fixed; bottom: 20px; right: 20px;
    width: 60px; height: 60px;
    background: var(--neon-blue);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 1.8rem; color: #000;
    cursor: pointer; z-index: 1001;
    box-shadow: 0 0 15px var(--neon-blue);
    transition: 0.3s;
}
.chat-toggle:hover { transform: scale(1.1); box-shadow: 0 0 25px var(--neon-blue); }

.chat-box {
    position: fixed; bottom: 90px; right: 20px;
    width: 300px; height: 400px;
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--neon-blue);
    border-radius: 15px;
    display: flex; flex-direction: column;
    z-index: 1000;
    transform: scale(0); /* Hidden by default */
    transform-origin: bottom right;
    transition: transform 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.chat-box.active { transform: scale(1); }

.chat-header {
    background: var(--neon-blue); color: #000;
    padding: 10px 15px; border-radius: 15px 15px 0 0;
    display: flex; justify-content: space-between; align-items: center;
    font-weight: bold;
}

.chat-body {
    flex: 1; padding: 15px; overflow-y: auto;
    font-size: 0.9rem;
}

.bot-msg, .user-msg {
    padding: 8px 12px; border-radius: 10px;
    margin-bottom: 10px; max-width: 80%;
}
.bot-msg { background: rgba(255,255,255,0.1); color: white; border-top-left-radius: 0; }
.user-msg { background: var(--neon-purple); color: white; margin-left: auto; border-top-right-radius: 0; }

.chat-input-area {
    padding: 10px; border-top: 1px solid rgba(255,255,255,0.1);
    display: flex; gap: 5px;
}
.chat-input-area input {
    flex: 1; background: transparent; border: 1px solid rgba(255,255,255,0.2);
    padding: 8px; border-radius: 20px; color: white;
}
.chat-input-area button {
    background: var(--neon-blue); border: none; padding: 8px 12px;
    border-radius: 50%; cursor: pointer; color: black;
}

/* --- MUSIC PLAYER --- */
.music-container {
    position: fixed; bottom: 20px; left: 20px; width: 60px; height: 60px;
    background: rgba(0, 0, 0, 0.8); border-radius: 50%;
    border: 2px solid var(--border); display: flex; justify-content: center;
    align-items: center; z-index: 1000; cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,0.5); transition: 0.3s;
}
.disk {
    position: absolute; width: 100%; height: 100%; border-radius: 50%;
    background: radial-gradient(circle, #333 10%, #111 20%, #000 70%);
    border: 2px solid var(--neon-purple); box-shadow: 0 0 15px var(--neon-purple);
}
.disk-center {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 15px; height: 15px; background: var(--neon-blue); border-radius: 50%; z-index: 2;
}
#playIcon { z-index: 3; font-size: 1.2rem; color: white; }
.rotate {
    animation: spin 3s linear infinite;
    box-shadow: 0 0 25px var(--neon-purple), 0 0 50px var(--neon-blue);
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* --- TYPOGRAPHY & SECTIONS --- */
section { padding: 60px 20px; max-width: 800px; margin: 0 auto; }
.section-title { font-family: 'Orbitron', sans-serif; font-size: 2rem; text-align: center; margin-bottom: 40px; text-transform: uppercase; letter-spacing: 2px; }
.neon-purple { color: var(--neon-purple); text-shadow: 0 0 15px var(--neon-purple); }
.neon-blue { color: var(--neon-blue); text-shadow: 0 0 15px var(--neon-blue); }

/* --- HERO SECTION --- */
.hero { height: 90vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.main-title { font-size: 3.5rem; margin: 10px 0; line-height: 1.1; font-family: 'Orbitron', sans-serif; }
.tagline { font-size: 1.2rem; color: #ccc; margin-bottom: 20px; }
.roles span { color: var(--neon-blue); font-weight: bold; }

/* --- CARDS & BADGE --- */
.glass-panel, .glass-card {
    background: var(--glass); backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); border: 1px solid var(--border);
    border-radius: 16px; padding: 20px; margin-bottom: 20px; transition: transform 0.3s ease;
}
.glass-card:hover { transform: translateY(-5px); box-shadow: 0 0 20px rgba(176, 38, 255, 0.2); border-color: var(--neon-purple); }
.grid-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 15px; }
.icon-glow { font-size: 2rem; color: var(--neon-blue); margin-bottom: 10px; text-shadow: 0 0 10px var(--neon-blue); }
.badge { display: inline-block; background: rgba(176, 38, 255, 0.2); color: var(--neon-purple); font-size: 0.8rem; font-weight: bold; padding: 5px 12px; border-radius: 20px; margin-top: 10px; border: 1px solid var(--neon-purple); }

/* --- BUTTONS --- */
.btn-neon { display: inline-block; padding: 12px 30px; background: transparent; border: 2px solid var(--neon-purple); color: var(--text); text-decoration: none; font-weight: bold; border-radius: 30px; margin-top: 20px; transition: 0.3s; text-shadow: 0 0 5px var(--neon-purple); box-shadow: 0 0 10px var(--neon-purple); }
.btn-neon:hover { background: var(--neon-purple); color: #000; box-shadow: 0 0 25px var(--neon-purple); }
.btn-insta { display: inline-block; padding: 12px 35px; background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d); color: white; text-decoration: none; font-weight: bold; border-radius: 30px; border: none; font-size: 1.1rem; box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4); transition: 0.3s; }
.btn-insta:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(225, 48, 108, 0.6); }
.neon-input { width: 100%; background: rgba(0,0,0,0.3); border: 1px solid var(--border); padding: 12px; margin-bottom: 10px; color: white; border-radius: 8px; box-sizing: border-box; }
.neon-input:focus { outline: none; border-color: var(--neon-blue); box-shadow: 0 0 10px var(--neon-blue); }

/* --- GALLERY --- */
.gallery-wrapper { display: flex; gap: 15px; }
.gallery-col { display: flex; flex-direction: column; gap: 15px; width: 50%; }
.gallery-img { width: 100%; height: auto; border-radius: 15px; border: 2px solid rgba(255, 255, 255, 0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; filter: brightness(0.9); display: block; }
.gallery-img:hover { transform: scale(1.03); border-color: var(--neon-purple); box-shadow: 0 0 15px var(--neon-purple); filter: brightness(1); }

/* --- VIBE METER --- */
.meter-box { margin-bottom: 15px; }
.meter-box label { display: block; margin-bottom: 5px; font-weight: bold; }
.progress-bar { width: 100%; height: 10px; background: rgba(255,255,255,0.1); border-radius: 5px; overflow: hidden; }
.fill { height: 100%; border-radius: 5px; }
.fill.purple { background: var(--neon-purple); box-shadow: 0 0 10px var(--neon-purple); }
.fill.blue { background: var(--neon-blue); box-shadow: 0 0 10px var(--neon-blue); }
.fill.red { background: #ff2626; box-shadow: 0 0 10px #ff2626; }

/* --- SOCIALS & FOOTER --- */
.social-links { display: flex; flex-direction: column; gap: 15px; }
.social-btn { padding: 15px; background: var(--glass); border: 1px solid var(--border); color: white; text-decoration: none; border-radius: 12px; display: flex; align-items: center; gap: 10px; font-size: 1.1rem; transition: 0.3s; }
.social-btn:hover { transform: scale(1.02); border-color: var(--neon-blue); background: rgba(0, 212, 255, 0.1); }
footer { text-align: center; padding: 40px 20px; border-top: 1px solid var(--border); margin-top: 40px; }
.faded { color: #666; font-size: 0.8rem; }

/* --- ANIMATIONS & PARTICLES --- */
@keyframes float { 0% { transform: translate(0, 0); } 100% { transform: translate(20px, 40px); } }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }
.circles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: -1; }
.circles li { position: absolute; display: block; list-style: none; width: 20px; height: 20px; background: rgba(255, 255, 255, 0.05); animation: animate 25s linear infinite; bottom: -150px; border-radius: 4px; box-shadow: 0 0 5px var(--neon-blue); }
.circles li:nth-child(1){ left: 25%; width: 80px; height: 80px; animation-delay: 0s; }
.circles li:nth-child(2){ left: 10%; width: 20px; height: 20px; animation-delay: 2s; animation-duration: 12s; }
.circles li:nth-child(3){ left: 70%; width: 20px; height: 20px; animation-delay: 4s; }
.circles li:nth-child(4){ left: 40%; width: 60px; height: 60px; animation-delay: 0s; animation-duration: 18s; }
.circles li:nth-child(5){ left: 65%; width: 20px; height: 20px; animation-delay: 0s; }
@keyframes animate { 0% { transform: translateY(0) rotate(0deg); opacity: 1; border-radius: 0; } 100% { transform: translateY(-1000px) rotate(720deg); opacity: 0; border-radius: 50%; } }

/* --- CURSOR (PC Only) --- */
@media (min-width: 768px) {
    .cursor { width: 10px; height: 10px; border: 2px solid var(--neon-blue); border-radius: 50%; position: fixed; pointer-events: none; z-index: 999; transition: 0.1s; transform: translate(-50%, -50%); }
    .cursor2 { width: 30px; height: 30px; border: 1px solid var(--neon-purple); border-radius: 50%; position: fixed; pointer-events: none; z-index: 999; transition: 0.15s; transform: translate(-50%, -50%); }
    body { cursor: none; }
}
@media (max-width: 768px) { .cursor, .cursor2 { display: none; } body { cursor: auto; } }
