/*
Theme Name: The AI Community
Theme URI: https://www.theaicommunity.org/
Author: Ashish Kothari
Author URI: https://kotharitechnotrick.com/
Description: A futuristic theme for The AI Community, inspired by the Neural Nexus concept.
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: theaicommunity
*/

/* --- Custom Styles from HTML file --- */
body {
    background-color: #121212;
    color: #E0E0E0;
    font-family: 'Inter', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}
.font-poppins { font-family: 'Poppins', sans-serif; }
.font-inter { font-family: 'Inter', sans-serif; }

/* --- Custom Colors --- */
.bg-deep-charcoal { background-color: #121212; }
.text-electric-violet { color: #8A2BE2; }
.bg-electric-violet { background-color: #8A2BE2; }
.hover\:bg-electric-violet-dark:hover { background-color: #7324b8; }
.border-electric-violet { border-color: #8A2BE2; }
.text-cyber-teal { color: #00F5D4; }
.bg-cyber-teal { background-color: #00F5D4; }
.border-cyber-teal { border-color: #00F5D4; }
.text-amber-glow { color: #FFC700; }
.bg-amber-glow { background-color: #FFC700; }

/* --- Glassmorphism Effect --- */
.glassmorphism {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 43, 226, 0.2);
}

/* --- Hero Background Animation --- */
.animated-gradient {
    background: linear-gradient(-45deg, #1A1A2E, #8A2BE2, #121212, #00F5D4);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}
@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Subtle scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #1A1A2E; }
::-webkit-scrollbar-thumb { background: #8A2BE2; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #7324b8; }
