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

body {
    font-family: 'Courier New', monospace;
    background: #0a0a0f;
    color: #e0e0e0;
    overflow-x: hidden;
}

/* Animated background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 255, 127, 0.1) 0%, transparent 50%);
    z-index: -1;
    animation: bgShift 20s ease infinite;
}

@keyframes bgShift {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 40px 20px;
}

.hero-content {
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    color: #c77dff;
    text-shadow: 0 0 20px rgba(199, 125, 255, 0.5), 0 0 40px rgba(199, 125, 255, 0.3);
    margin-bottom: 30px;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 20px rgba(199, 125, 255, 0.5); }
    50% { text-shadow: 0 0 30px rgba(199, 125, 255, 0.8), 0 0 50px rgba(199, 125, 255, 0.5); }
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    color: #b8b8b8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    border: 2px solid;
    background: transparent;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    border-color: #c77dff;
    color: #c77dff;
}

.btn-primary:hover {
    background: #c77dff;
    color: #0a0a0f;
    box-shadow: 0 0 30px rgba(199, 125, 255, 0.6);
}

.btn-secondary {
    border-color: #00ff7f;
    color: #00ff7f;
}

.btn-secondary:hover {
    background: #00ff7f;
    color: #0a0a0f;
    box-shadow: 0 0 30px rgba(0, 255, 127, 0.6);
}

/* Sections */
section {
    padding: 100px 20px;
    position: relative;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #c77dff;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 0 0 15px rgba(199, 125, 255, 0.4);
}

/* Narrative Section */
.narrative-box {
    background: rgba(199, 125, 255, 0.05);
    border: 1px solid rgba(199, 125, 255, 0.3);
    padding: 50px;
    border-radius: 10px;
    max-width: 900px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(199, 125, 255, 0.1);
}

.narrative-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #d0d0d0;
}

.narrative-box .quote {
    font-size: 1.5rem;
    color: #00ff7f;
    text-align: center;
    margin: 40px 0;
    font-style: italic;
    text-shadow: 0 0 10px rgba(0, 255, 127, 0.5);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(199, 125, 255, 0.3);
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #c77dff;
    box-shadow: 0 10px 40px rgba(199, 125, 255, 0.3);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #c77dff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: #b8b8b8;
    line-height: 1.6;
}

/* Mission Pillars */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.mission-card {
    background: linear-gradient(135deg, rgba(199, 125, 255, 0.1) 0%, rgba(0, 255, 127, 0.05) 100%);
    border: 1px solid rgba(199, 125, 255, 0.4);
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(199, 125, 255, 0.4);
}

.mission-card h3 {
    color: #00ff7f;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mission-close {
    text-align: center;
    font-size: 1.3rem;
    color: #c77dff;
    font-style: italic;
    margin-top: 40px;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(0, 255, 127, 0.05);
    border: 2px solid rgba(0, 255, 127, 0.3);
    padding: 30px;
    text-align: center;
    border-radius: 10px;
}

.stat-card h3 {
    color: #00ff7f;
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.stat-card p {
    color: #e0e0e0;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Disclaimer */
.disclaimer {
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: 40px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer h3 {
    color: #ff6b6b;
    margin-bottom: 20px;
    text-align: center;
}

.disclaimer ul {
    list-style: none;
    padding-left: 0;
}

.disclaimer li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #d0d0d0;
}

.disclaimer li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.6);
    padding: 60px 20px 30px;
    text-align: center;
    border-top: 1px solid rgba(199, 125, 255, 0.3);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #c77dff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #00ff7f;
    text-shadow: 0 0 10px rgba(0, 255, 127, 0.6);
}

.contract {
    background: rgba(199, 125, 255, 0.1);
    padding: 15px;
    border-radius: 5px;
    margin: 20px auto;
    max-width: 600px;
    word-break: break-all;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    border: 1px solid rgba(199, 125, 255, 0.3);
}

footer p {
    color: #888;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .narrative-box {
        padding: 30px 20px;
    }
    
    section {
        padding: 60px 20px;
    }
}