/* === GLOBAL === */
body {
    margin: 0;
    padding: 0;
    background-color: #040006;
    color: #e0e0e0;
    font-family: 'Poppins', 'Arial', sans-serif;
    overflow-x: hidden;
    position: relative;
}

/* === PARTICLE CANVAS === */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, rgba(179,135,255,0.08), transparent 80%);
}

/* === SECTIONS === */
section {
    position: relative;
    z-index: 2;
    padding: 140px 20px;
    text-align: center;
}

.glow-text {
    font-size: 64px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 25px #b387ff, 0 0 50px rgba(179,135,255,0.6);
    animation: pulseGlow 4s infinite;
}
.glow-text span {
    color: #b387ff;
}

h2 {
    color: #b387ff;
    font-size: 36px;
    text-shadow: 0 0 20px rgba(179,135,255,0.4);
}

.intro, p {
    max-width: 800px;
    margin: 20px auto;
    font-size: 18px;
    line-height: 1.8;
    color: #d0cce5;
}

/* === VISUAL VARIATION SECTIONS === */
.about-section {
    background: transparent;
}
.vision-section {
    background: radial-gradient(circle at center, rgba(179,135,255,0.06), rgba(0,0,0,0.9));
}
.mission-section {
    background: linear-gradient(180deg, rgba(10,0,30,0.6), rgba(0,0,0,1));
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(145deg, #0a0012 0%, #000000 100%);
    padding: 120px 20px;
}
.cta-section h2 {
    font-size: 38px;
    color: #b387ff;
    text-shadow: 0 0 30px rgba(179,135,255,0.6);
}
.cta-section p {
    color: #bbb;
    margin-bottom: 40px;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Buttons */
.btn, .btn-outline {
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 18px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(179,135,255,0.2);
}

.btn {
    background: #b387ff;
    color: white;
}
.btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(179,135,255,0.7);
}

.btn-outline {
    border: 2px solid #b387ff;
    color: #b387ff;
    background: transparent;
}
.btn-outline:hover {
    background: #b387ff;
    color: white;
}

/* === FOOTER === */
.footer {
    background-color: #000;
    text-align: center;
    padding: 25px 0;
    color: #888;
    font-size: 14px;
    z-index: 3;
}

/* === ANIMATIONS === */
@keyframes pulseGlow {
    0%, 100% { text-shadow: 0 0 25px #b387ff, 0 0 40px rgba(179,135,255,0.6); }
    50% { text-shadow: 0 0 45px #c6a8ff, 0 0 80px rgba(179,135,255,0.9); }
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .glow-text { font-size: 44px; }
    h2 { font-size: 28px; }
    .intro, p { font-size: 16px; }
}
