/* assets/css/style.css */

/* Google Fonts - Futuristic Look */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700&family=Space+Grotesk:wght@300;400;600&display=swap');

:root {
    /* 2050 Color Palette */
    --bg-dark: #0f172a;
    --bg-deep: #020617;
    --neon-blue: #0ea5e9;
    --neon-purple: #8b5cf6;
    --neon-green: #10b981;
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --text-glow: 0 0 10px rgba(14, 165, 233, 0.5);
}

body {
    background-color: var(--bg-deep);
    color: #e2e8f0;
    font-family: 'Space Grotesk', sans-serif;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(14, 165, 233, 0.15), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(139, 92, 246, 0.15), transparent 25%);
    background-attachment: fixed;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

/* --- Glassmorphism Effect (கண்ணாடி போன்ற தோற்றம்) --- */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* --- Neon Glow Effects (நியான் ஒளி) --- */
.text-neon-blue {
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(14, 165, 233, 0.7);
}

.text-neon-purple {
    color: var(--neon-purple);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.7);
}

.border-glow:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.3);
    transition: all 0.3s ease;
}

/* --- Buttons --- */
.btn-future {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid var(--glass-border);
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.btn-future:hover {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.4), rgba(139, 92, 246, 0.4));
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
    transform: translateY(-2px);
}

/* --- Inputs --- */
.input-future {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--glass-border);
    color: white;
    transition: all 0.3s;
}

.input-future:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.2);
}

/* --- Bento Grid Layout --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* --- Animations --- */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark); 
}
::-webkit-scrollbar-thumb {
    background: #334155; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-blue); 
}