html {
    scroll-behavior: smooth;
}

body {
    background-color: #000000;
    color: #ff007f;
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.banner {
    width: 100%;
    height: auto;
    display: block;
}

.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    text-align: center; 
}

h1 {
    font-size: 5rem;
    font-weight: 800;
    color: #00ff00;
    text-shadow: 0 0 6px #00ff00, 0 0 12px #00ff00, 2px 2px 0px #000, 3px 3px 0px #ff0000;
    margin: 0 0 6px 0; 
}


.main-menu {
    margin: 6px 0 12px 0; 
}

.main-menu summary {
    font-size: 1.1rem;
    color: #00ff00;
    letter-spacing: 3px;
    list-style: none;
    padding: 8px 25px;
    border: 1px solid #00ff00;
    background: #000;
    cursor: pointer;
}

.main-menu summary:hover {
    background: #00ff00;
    color: #000;
}

.dropdown-content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #050505;
    border: 1px solid #1a1a1a;
    padding: 10px;
    z-index: 10;
}

.dropdown-content a {
    color: #c8ffc8;
    text-decoration: none;
}

h2 {
    font-size: 2.2rem;
    color: #c8ffc8; 
    letter-spacing: 2px;
    margin: 12px 0 16px 0; 
}

h3 {
    font-size: 1.1rem;
    color: #e0e0e0;
    max-width: 750px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.manifest-wrapper {
    width: 100%;
    max-width: 750px;
    margin-bottom: 20px;
}

.manifest-footer summary {
    font-size: 1rem;
    color: #00ff00;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px dashed #00ff00;
    display: inline-block;
    padding-bottom: 5px;
}

.manifest-content {
    text-align: left;
    background: #050505;
    border: 1px solid #1a1a1a;
    padding: 20px;
    margin-top: 15px;
}

.manifest-content ul {
    list-style: none;
    padding: 0;
}

.manifest-content li a {
    color: #ff007f;
    text-decoration: none;
    font-size: 0.95rem;
}

.manifest-content li a:hover {
    color: #00ff00;
    text-decoration: underline;
}

.social-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.social-icon {
    width: 48px;
    transition: transform 0.1s;
}

.social-icon:hover {
    transform: scale(1.1);
}

footer {
    padding: 20px;
    text-align: center;
}

.email-line {
    color: #0db221;
    font-size: 0.8rem;
    text-decoration: none;
}

@media (max-width: 800px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.5rem; }
}