:root {
    --bg-dark: #050505;
    --text-main: #e0e0e0;
    --gold: #FFD700;
    --blue-neon: #00FFFF;
    --glass-bg: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(255, 215, 0, 0.2);
    --font-ancient: 'Cinzel', serif;
    --font-tech: 'Rajdhani', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-tech);
    overflow-x: hidden;
    line-height: 1.6;
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.6; /* Slight fade so text is readable */
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 3rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.logo-container .logo {
    height: 60px;
    filter: drop-shadow(0 0 5px var(--gold));
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text-main);
    font-family: var(--font-ancient);
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s, text-shadow 0.3s;
}

nav a:hover {
    color: var(--gold);
    text-shadow: 0 0 10px var(--gold);
}

/* Main Layout */
main {
    padding-top: 80px; /* Space for fixed header */
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hanuman-image-wrapper {
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite;
}

.hanuman-hero-img {
    max-width: 400px;
    width: 100%;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4));
}

.hero h1 {
    font-family: var(--font-ancient);
    font-size: 4rem;
    background: linear-gradient(to right, var(--gold), var(--blue-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    color: #ccc;
}

.cta-button {
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), rgba(0, 255, 255, 0.2));
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-family: var(--font-tech);
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 20px var(--gold);
}

/* Sections */
.content-section {
    padding: 6rem 0;
    margin-bottom: 4rem;
}

h2 {
    font-family: var(--font-ancient);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-family: var(--font-tech);
    font-size: 1.8rem;
    color: var(--blue-neon);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Glassmorphism Panels */
.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(255, 215, 0, 0.1);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    color: #888;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero .subtitle { font-size: 1.2rem; }
    header { padding: 1rem; flex-direction: column; gap: 1rem; }
    main { padding-top: 140px; }
    .glass-panel { padding: 1.5rem; }
}
