* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-bg: #111111;
    --darker-bg: #0b0b0b;
    --green: #009933;
    --green-bright: #00ff41;
    --text-light: #e5e5e5;
    --text-muted: #9a9a9a;
}

body {
    font-family: 'Courier New', monospace;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

.background-grid {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0,153,51,0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,153,51,0.2) 1px, transparent 1px);
    background-size: 100px 100px;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(110deg, transparent 0%, transparent 25%, black 45%, black 55%, transparent 75%, transparent 100%);
    mask-image: linear-gradient(110deg, transparent 0%, transparent 25%, black 45%, black 55%, transparent 75%, transparent 100%);
    -webkit-mask-size: 300% 100%;
    mask-size: 300% 100%;
    animation: grid-sweep 8s linear infinite;
    z-index: 5;
    transform: translateZ(0);
}

/* =========================
   HERO
   ========================= */
.hero {
    position: relative;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
    z-index: 1;
}

.parallax-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
    filter: brightness(0.3) saturate(0.5);
    transform: translateZ(0);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(0,255,65,0.1) 0%, transparent 70%);
    z-index: 6;
    animation: overlay-pulse 5s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 5rem;
    font-weight: bold;
    color: var(--green);
    margin-bottom: 20px;
    letter-spacing: 3px;
    animation: text-glow-breathe 5s ease-in-out infinite;
}

.hero .tagline {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

/* =========================
   BUTTONS
   ========================= */
.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    width: 100%;
}

.button-group a {
    text-decoration: none;
    display: inline-block;
}

.cta-button,
.newsletter-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    background-color: var(--green);
    color: var(--darker-bg);
    border: 2px solid var(--green);
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 1.5px;
    transition: all 0.2s ease;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
}

.cta-button:hover,
.newsletter-btn:hover {
    background-color: transparent;
    color: var(--green);
    box-shadow: 0 0 15px rgba(0,255,65,0.4);
}

/* =========================
   SECTIONS
   ========================= */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.section-description {
    padding: 80px 20px;
    background-color: rgba(17,17,17,0.85);
    border-top: 2px solid var(--green);
}

.section-wishlist {
    padding: 80px 20px;
    background-color: rgba(11,11,11,0.85);
    text-align: center;
    border-top: 2px solid var(--green);
}

.section-wishlist h2 {
    color: var(--green);
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0;
    animation: flicker 1s infinite;
}

.section-discord,
.section-newsletter,
.section-socials {
    padding: 60px 20px;
    border-top: 2px solid var(--green);
}

.section-discord,
.section-socials {
    background-color: rgba(17,17,17,0.85);
}

.section-newsletter {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    background-color: rgba(11,11,11,0.85);
	padding: 60px 0 12px 0; 
}

.newsletter-form {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 500px;
    justify-content: center;
    position: relative;
    background-color: transparent;	
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    background-color: #000;
    border: 2px solid var(--green);
    color: var(--text-light);
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    border-radius: 4px;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(0,255,65,0.4);
}

.newsletter-message {
    margin-top: 15px;
    font-size: 0.9rem;
    min-height: 1.5em;
}

.newsletter-message.success { color: var(--green-bright); }
.newsletter-message.error { color: #ff3333; }
.newsletter-message.processing { color: var(--text-muted); }

/* =========================
   DESCRIPTION & GALLERY
   ========================= */
.description-text {
    max-width: 800px;
    margin: 0 auto 65px auto;
    text-align: center;
}

.description-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.description-text .divider {
    color: var(--green);
    font-size: 1.5rem;
    margin: 15px 0;
    line-height: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border: 1px solid #333;
    transition: transform 0.3s ease, border-color 0.3s ease, filter 0.3s ease;
    filter: brightness(0.8);
}

.gallery-item img:hover {
    transform: scale(1.02);
    border-color: var(--green);
    filter: brightness(1);
    box-shadow: 0 0 15px rgba(0,255,65,0.2);
}

/* =========================
   FOOTER
   ========================= */
.footer {
    padding: 30px 20px;
    background-color: rgba(11,11,11,0.85);
    border-top: 2px solid var(--green);
    text-align: center;
}

.footer p {
    margin: 5px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer a {
    color: var(--green);
    text-decoration: none;
}

/* =========================
   ANIMATIONS
   ========================= */
@keyframes grid-sweep {
    0% { -webkit-mask-position: 150% 0; mask-position: 150% 0; opacity: 0; }
    15% { opacity: 0.5; }
    85% { opacity: 0.8; }
    100% { -webkit-mask-position: -50% 0; mask-position: -50% 0; opacity: 0; }
}

@keyframes text-glow-breathe {
    0%, 100% { text-shadow: 0 0 15px rgba(0,255,65,0.3), 0 0 30px rgba(0,255,65,0.1); }
    50% { text-shadow: 0 0 30px rgba(0,255,65,0.6), 0 0 60px rgba(0,255,65,0.3); }
}

@keyframes overlay-pulse { 0%, 100% { opacity: 0.1; } 50% { opacity: 0.3; } }
@keyframes flicker { 0%, 88%, 100% { opacity: 1; } 94% { opacity: 0.5; } 97% { opacity: 1; } }

/* =========================
   MEDIA QUERIES
   ========================= */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .section-wishlist h2 { font-size: 2.5rem; }
    .newsletter-form { flex-direction: column; }
    .newsletter-btn { width: 100%; }

    .button-group {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .button-group a, .cta-button {
        width: 100%;
        text-align: center;
    }

    .parallax-bg { background-attachment: scroll; }
}

@media (max-width: 900px) and (orientation: landscape) {
    .hero { min-height: 100vh; }
    .hero h1 { font-size: 2.5rem; }
    .section-description { padding: 40px 20px; }
}
