body {
    background: #050214 url('./Light_2.png') no-repeat center center fixed;
    background-size: 100% auto;
    color: white;
    overflow-x: hidden;
    font-family: 'Hind Madurai', sans-serif;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

@media (max-width: 768px) {
    body {
        background-image: url('./Mobile.png');
        background-size: 100% auto;
    }
}

/* 3D Background Canvas */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.8;
}

/* Glassmorphism */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.glass-nav {
    background: #d22581;
    backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 10px 0;
    margin-top: 10px;
}

/* Text Glow */
.text-glow {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #050214;
}
::-webkit-scrollbar-thumb {
    background: #FFD700;
    border-radius: 4px;
}

/* Loader */
.loader-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, #162447 0%, #050214 100%);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Click Glow Effect */
.click-effect {
    position: fixed;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.8) 0%, rgba(169, 16, 121, 0.4) 50%, transparent 100%);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: click-ripple 0.5s ease-out forwards;
}

@keyframes click-ripple {
    0% { width: 0; height: 0; opacity: 1; }
    100% { width: 150px; height: 150px; opacity: 0; }
}

@media (max-width: 768px) {
    .glass-nav {
        padding: 5px 0;
        margin-top: 5px;
    }
}