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

body {
    font-family: 'Courier New', monospace;
    background-color: #000000;
    color: #00ff00;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Ghost Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('OG_Ghost.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

/* Additional overlay for better text readability */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: -1;
    pointer-events: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid #00ff00;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
}

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

.nav-links a {
    color: #00ff00;
    text-decoration: none;
    transition: text-shadow 0.3s;
}

.nav-links a:hover {
    text-shadow: 0 0 5px #00ff00;
}

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

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.slogan {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px #00ff00, 0 0 40px #00ff00;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px #00ff00, 0 0 40px #00ff00;
    }
    to {
        text-shadow: 0 0 30px #00ff00, 0 0 60px #00ff00, 0 0 80px #00ff00;
    }
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #00cc00;
}

.intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: transparent;
    border: 2px solid #00ff00;
    color: #00ff00;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-family: 'Courier New', monospace;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-button:hover {
    background: #00ff00;
    color: #000000;
    box-shadow: 0 0 20px #00ff00;
}

/* Sections */
.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 0 10px #00ff00;
    border-bottom: 2px solid #00ff00;
    padding-bottom: 1rem;
}

.section p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

/* Access Form */
.access-note {
    text-align: center;
    color: #ffaa00;
    margin-bottom: 2rem;
    font-weight: bold;
}

.access-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #00ff00;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid #00ff00;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.submit-button {
    width: 100%;
    background: transparent;
    border: 2px solid #00ff00;
    color: #00ff00;
    padding: 1rem;
    font-size: 1.1rem;
    font-family: 'Courier New', monospace;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.submit-button:hover {
    background: #00ff00;
    color: #000000;
    box-shadow: 0 0 20px #00ff00;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid #00ff00;
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .slogan {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .section {
        padding: 3rem 1rem;
    }
}

