* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #E0F4FF;
    --secondary: #1a1a2e;
    --dark: #0f0f1e;
    --darker: #050510;
    --light: #FFFFFF;
    --accent: #64B5F6;
    --cosmic-blue: #2196F3;
    --glow: rgba(224, 244, 255, 0.8);
    --gold-gradient: linear-gradient(135deg, #E0F4FF, #64B5F6, #2196F3);
}

body {
    font-family: 'Times New Roman', Georgia, serif;
    background: var(--darker);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animated Background */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker);
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.glow-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 20%, rgba(33, 150, 243, 0.15), transparent 50%),
                radial-gradient(ellipse at 80% 60%, rgba(100, 181, 246, 0.08), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 30, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(224, 244, 255, 0.2);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(33, 150, 243, 0.3);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary);
    text-shadow: 0 0 20px var(--glow), 0 0 40px rgba(33, 150, 243, 0.4);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 5px var(--primary);
    border-bottom: 2px solid var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 2rem;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 6px;
    margin-bottom: 1rem;
    color: var(--primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.4);
    font-family: 'Times New Roman', Georgia, serif;
}


@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 5px var(--primary);
    border-bottom: 2px solid var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 2rem;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 6px;
    margin-bottom: 1rem;
    color: var(--primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.4);
    font-family: 'Times New Roman', Georgia, serif;
}

.glitch {
    position: relative;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--light);
    opacity: 0.8;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.cta-button {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 0;
    box-shadow: 0 0 20px rgba(224, 244, 255, 0.3), inset 0 0 20px rgba(33, 150, 243, 0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    font-family: 'Times New Roman', Georgia, serif;
}

.cta-button:hover {
    transform: translateY(-2px);
    background: rgba(224, 244, 255, 0.1);
    box-shadow: 0 0 40px rgba(224, 244, 255, 0.6), inset 0 0 30px rgba(33, 150, 243, 0.2);
    text-shadow: 0 0 10px var(--glow);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

/* Mandala Visual */
.hero-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
    pointer-events: none;
}

.mandala {
    position: relative;
    width: 600px;
    height: 600px;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 30px var(--glow), inset 0 0 30px rgba(33, 150, 243, 0.2);
}

.ring:nth-child(1) {
    width: 500px;
    height: 500px;
    animation: pulse-ring 4s ease-in-out infinite;
}

.ring:nth-child(2) {
    width: 350px;
    height: 350px;
    animation: pulse-ring 4s ease-in-out infinite 0.5s;
}

.ring:nth-child(3) {
    width: 200px;
    height: 200px;
    animation: pulse-ring 4s ease-in-out infinite 1s;
}

@keyframes pulse-ring {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.05); }
}

.core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: var(--primary);
    text-shadow: 0 0 40px var(--primary);
}

/* Sections */
.section {
    position: relative;
    padding: 6rem 2rem;
    z-index: 10;
}

.section.dark {
    background: rgba(10, 14, 26, 0.6);
    backdrop-filter: blur(10px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 4px;
    color: var(--primary);
    font-family: 'Times New Roman', Georgia, serif;
    text-shadow: 0 0 20px var(--glow), 0 0 40px rgba(33, 150, 243, 0.4), 2px 2px 4px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
}

/* Pillars */
.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.pillar {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(15, 15, 30, 0.8);
    border: 1px solid rgba(224, 244, 255, 0.3);
    border-radius: 0;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7), inset 0 0 20px rgba(33, 150, 243, 0.05);
}

.pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(224, 244, 255, 0.3), inset 0 0 30px rgba(33, 150, 243, 0.1);
    border-color: var(--primary);
}

.pillar-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px var(--glow), 0 0 60px rgba(33, 150, 243, 0.4);
}

.pillar h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
    font-family: 'Times New Roman', Georgia, serif;
}

.pillar p {
    opacity: 0.85;
    line-height: 1.8;
}

/* Manifesto */
.manifesto {
    background: linear-gradient(180deg, rgba(15, 15, 30, 0.95) 0%, rgba(5, 5, 16, 0.95) 100%);
    padding: 6rem 2rem;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(224, 244, 255, 0.3);
    border-bottom: 1px solid rgba(224, 244, 255, 0.3);
    box-shadow: inset 0 0 100px rgba(33, 150, 243, 0.1);
}

.cosmic-quote {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.8rem;
    font-style: italic;
    text-align: center;
    line-height: 2;
    color: var(--light);
    position: relative;
    padding: 2rem;
    font-family: 'Times New Roman', Georgia, serif;
}

.cosmic-quote::before {
    content: '"';
    font-size: 6rem;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: -2rem;
    left: -1rem;
    text-shadow: 0 0 30px var(--glow);
}

cite {
    display: block;
    margin-top: 2rem;
    font-size: 1.2rem;
    color: var(--primary);
    font-style: normal;
    letter-spacing: 2px;
}

/* Path */
.path-list {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 4rem;
}

.step {
    padding: 2rem;
    background: rgba(15, 15, 30, 0.8);
    border-left: 2px solid var(--primary);
    border-radius: 0;
    transition: all 0.3s;
    margin-bottom: 2rem;
    box-shadow: inset 0 0 20px rgba(33, 150, 243, 0.05);
}

.step:hover {
    background: rgba(15, 15, 30, 0.95);
    border-left-width: 3px;
    box-shadow: 0 0 30px rgba(224, 244, 255, 0.2), inset 0 0 30px rgba(33, 150, 243, 0.1);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.step p {
    opacity: 0.8;
    line-height: 1.8;
}

/* Testimonials */
.testimonials {
    padding: 6rem 2rem;
    position: relative;
    z-index: 10;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: rgba(15, 15, 30, 0.8);
    padding: 2rem;
    border-radius: 0;
    border: 1px solid rgba(224, 244, 255, 0.2);
    transition: all 0.3s;
    box-shadow: inset 0 0 20px rgba(33, 150, 243, 0.05);
}

.testimonial:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 30px rgba(224, 244, 255, 0.3), inset 0 0 30px rgba(33, 150, 243, 0.1);
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    color: var(--primary);
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* Join Form */
.join-section {
    background: linear-gradient(180deg, rgba(15, 15, 30, 0.95) 0%, rgba(5, 5, 16, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(224, 244, 255, 0.3);
    padding: 6rem 2rem;
    position: relative;
    z-index: 10;
    box-shadow: inset 0 0 100px rgba(33, 150, 243, 0.1);
}

.join-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(15, 15, 30, 0.9);
    border: 1px solid rgba(224, 244, 255, 0.3);
    border-radius: 0;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8), inset 0 0 50px rgba(33, 150, 243, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary);
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    background: rgba(5, 5, 16, 0.8);
    border: 1px solid rgba(224, 244, 255, 0.2);
    border-radius: 0;
    color: var(--light);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(224, 244, 255, 0.4), inset 0 0 10px rgba(33, 150, 243, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    accent-color: var(--primary);
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(224, 244, 255, 0.3), inset 0 0 20px rgba(33, 150, 243, 0.1);
    margin-top: 1rem;
    text-transform: uppercase;
    font-family: 'Times New Roman', Georgia, serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    background: rgba(224, 244, 255, 0.1);
    box-shadow: 0 0 40px rgba(224, 244, 255, 0.6), inset 0 0 30px rgba(33, 150, 243, 0.2);
    text-shadow: 0 0 10px var(--glow);
}

.success-message {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(15, 15, 30, 0.95);
    border: 1px solid rgba(224, 244, 255, 0.4);
    border-radius: 0;
    text-align: center;
    box-shadow: 0 0 50px rgba(224, 244, 255, 0.3), inset 0 0 50px rgba(33, 150, 243, 0.1);
}

.success-icon {
    font-size: 5rem;
    color: var(--primary);
    text-shadow: 0 0 40px var(--primary);
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.success-message h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.success-message p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: rgba(15, 15, 30, 0.98);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(224, 244, 255, 0.2);
    position: relative;
    z-index: 10;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-section h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-section p {
    opacity: 0.7;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-section li:hover {
    opacity: 1;
}

.footer-section a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(224, 244, 255, 0.1);
    opacity: 0.6;
}

.disclaimer {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .mandala {
        width: 400px;
        height: 400px;
    }
    
    .cosmic-quote {
        font-size: 1.3rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(5, 5, 16, 0.95);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: linear-gradient(180deg, rgba(15, 15, 30, 0.98), rgba(5, 5, 16, 0.98));
    margin: 5% auto;
    padding: 3rem;
    border: 1px solid rgba(224, 244, 255, 0.3);
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 0 50px rgba(33, 150, 243, 0.5), inset 0 0 50px rgba(33, 150, 243, 0.05);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    color: var(--primary);
    float: right;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-close:hover {
    text-shadow: 0 0 20px var(--glow);
    transform: rotate(90deg);
}

.sacred-text {
    padding: 2rem 0;
}

.sacred-text .verse {
    margin: 2rem 0;
    padding-left: 2rem;
    border-left: 2px solid rgba(224, 244, 255, 0.3);
    line-height: 2;
}

.center-info {
    line-height: 1.8;
}

.center-info ul {
    list-style: none;
    padding-left: 0;
}

.center-info li::before {
    content: "◆ ";
    color: var(--primary);
    margin-right: 0.5rem;
}

.modal h3 {
    color: var(--primary);
    margin-bottom: 2rem;
    text-shadow: 0 0 20px var(--glow);
    font-size: 2rem;
}
