/* GENERAL STYLES */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Bungee', cursive;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    cursor: none;
}

.container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 100px 20px 50px;
}

/* LANDING PAGE */
#landing {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Bungee', cursive;
    z-index: 9999;
    cursor: pointer;
    transition: opacity 0.8s ease;
}

#landing h1 { font-size: 3rem; margin-bottom: 20px; }
#landing .blink { animation: blink 1s infinite; }
@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}

/* PARTICLE CANVAS */
#particle-canvas {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index: 0;
}

/* SPEAKER ICON */
#speaker {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    z-index: 100;
}

/* VOLUME SLIDER */
#volume-slider {
    position: fixed;
    top: 25px;
    right: 70px;
    width: 100px;
    cursor: pointer;
    accent-color: #0ff;
    z-index: 100;
}

/* CUSTOM CURSOR */
#cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    box-shadow: 0 0 10px #fff, 0 0 20px #fff;
    transform: translate(-50%, -50%);
    transition: transform 0.05s ease-out;
    z-index: 10000;
}

/* PROFILE */
header {
    margin-bottom: 50px;
}
.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* GLASS CARD */
.glass-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 20px;
    border-radius: 15px;
    max-width: 500px;
    margin: 20px auto;
}

/* SOCIAL ICONS */
.social-icons a {
    color: #fff;
    font-size: 2rem;
    margin: 0 15px;
    transition: 0.3s;
    text-shadow: 0 0 5px #fff;
}
.social-icons a:hover {
    text-shadow: 0 0 15px currentColor;
}
.social-icons a[href*="youtube"]:hover { color: #FF0000; }
.social-icons a[href*="discord"]:hover { color: #5865F2; }
.social-icons a[href*="tiktok"]:hover { color: #69C9D0; }
.social-icons a[href*="mailto"]:hover { color: #fff; }

/* RESPONSIVE */
@media screen and (max-width: 600px){
    .profile-pic { width: 120px; height: 120px; }
    .social-icons a { font-size: 1.5rem; margin: 0 10px; }
    #volume-slider { width: 80px; right: 60px; }
}
