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

body {
    background-color: #0a0c10;  
    font-family: 'Courier New', Courier, monospace;  
    color: #b0f0b0;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: repeating-linear-gradient(0deg, 
        rgba(0, 255, 65, 0.02) 0px, 
        rgba(0, 0, 0, 0.3) 2px,
        transparent 3px);
    pointer-events: none;
    z-index: 0;
}

h1 {
    color: #b0ffb0;
    text-align: center;
    font-size: 500%;
    margin-top: 25px;
    font-weight: 600;
    text-shadow: 0 0 8px #2ecc71;
    letter-spacing: -2px;
    font-family: 'Courier New', Courier, monospace;
}

h2 {
    color: #9fdf9f;
    font-size: 300%;
    margin-top: 1px;
    margin-left: 30px;
    margin-bottom: 1px;
    border-left: 4px solid #2ecc71;
    padding-left: 20px;
}

h3 {
    color: #8fcf8f;
    font-size: 200%;
    margin-bottom: 1px;
    margin-left: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-container {
    color: #d0f0d0;
    text-align: left;
    font-size: 125%;
    margin-left: 40px;
    margin-top: 5px;
    background: #11161f;
    padding: 25px;
    border-left: 6px solid #2ecc71;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 10px 20px rgba(0,20,0,0.6);
    margin-bottom: 25px;
}

.hobbies-flex {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 15px 0;
}

.hobbies-flex ul {
    list-style: none;
}

.hobbies-flex ul li {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hobbies-flex ul li i {
    color: #2ecc71;
    width: 24px;
}

#zelda {
    width: 80px;
    height: 80px;
    border-radius: 0;   
    border: 2px solid #2ecc71;
    object-fit: cover;
    background: #1e1e2a;
}

.work-experience, .education {
    margin-top: 5px;
    width: fit-content;
    background: #1a212e;
    padding: 16px 20px;
    border: 1px solid #2ecc71;
    font-size: 1.1rem;
}

.AllButton {
    background-color: #1a2a1f;
    border: 2px solid #2ecc71;
    color: #d0f0d0;
    padding: 10px 22px;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 0px;   
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    transition: 0.15s;
}
.AllButton:hover {
    background-color: #2ecc71;
    color: #0a0c10;
    border-color: #1a4d1a;
    box-shadow: 0 0 15px #2ecc71;
}

.header-group {
    margin: 0px;
    display: flex;
    gap: 15px;
    border-radius: 0;
    padding: 10px 20px;
    overflow: hidden;
    background-color: #020304;
    border-bottom: 2px solid #2ecc71;
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 200;
    align-items: center;
}

#MDS {
    border-radius: 0;
    border: 1px solid #2ecc71;
}

.buttons-group {
    margin: 0px;
    display: flex;
    gap: 20px;
    border-radius: 0;
    padding: 15px 20px;
    overflow: hidden;
    background-color: #020304;
    border-top: 2px solid #2ecc71;
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    z-index: 200;
    justify-content: center;
}

.links {
    color: #2ecc71;
    text-decoration: underline wavy #2ecc71 1px;
    text-underline-offset: 6px;
    font-weight: 600;
    cursor: pointer;
}
.links:hover {
    color: #ffffff;
}

aside {
    flex: 1;
    text-align: right;
    margin-top: 30px;
    color: #5f8b5f;
}
.aside-content {
    background: #11161f;
    padding: 20px;
    border-left: 4px solid #2ecc71;
    font-size: 1.2rem;
    font-style: italic;
}

.section-label {
    color: #2ecc71;
    font-size: 1.5rem;
    margin: 20px 0 10px 0;
    border-bottom: 1px dashed #2ecc71;
    padding-bottom: 5px;
    font-weight: bold;
}

.skill-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}
.skill-tag {
    background: #1a2a1f;
    border: 1px solid #2ecc71;
    padding: 6px 18px;
    font-size: 1.2rem;
    display: inline-block;
    font-family: 'Courier New', monospace;
}

.greet-line {
    font-size: 1.8rem;
    font-weight: 600;
    color: #b0ffb0;
}

.code-comment {
    color: #6a8f6a;
    font-family: 'Courier New', monospace;
}

.page-content {
    padding-top: 80px;    
    padding-bottom: 90px; 
    flex: 1;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

article {
    flex: 3;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #b0f0b0;
    font-weight: bold;
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: -0.3px;
}
.required-star {
    color: #2ecc71;
    margin-left: 4px;
    font-size: 1.1rem;
}
input, textarea {
    width: 100%;
    background: #0f141c;
    border: 1.5px solid #2ecc71;
    padding: 12px 14px;
    font-family: 'Courier New', Courier, monospace;
    color: #d0f8d0;
    font-size: 1rem;
    border-radius: 0px;
    transition: all 0.2s ease;
}
input:focus, textarea:focus {
    outline: none;
    border-color: #6eff8e;
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.4);
    background: #0a0f16;
}
textarea {
    resize: vertical;
    min-height: 110px;
}
.form-submit {
    margin-top: 1.2rem;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.status-message {
    margin-top: 1.2rem;
    padding: 12px 18px;
    background: #11161f;
    border-left: 5px solid #2ecc71;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    color: #b0ffb0;
    word-break: break-word;
}
.status-message.error {
    border-left-color: #ff6b6b;
    color: #ffb7b7;
    background: #1f1818;
}
.status-message.success {
    border-left-color: #2ecc71;
    color: #b0ffb0;
    background: #112211;
}
.form-group i {
    margin-right: 8px;
    color: #2ecc71;
    width: 24px;
}
.form-group label i {
    margin-right: 6px;
}
/* subtle inline improvements */
.main-container form {
    margin-top: 8px;
}
.AllButton:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    filter: grayscale(0.1);
}


@media (max-width: 600px) {
    h1 {
        font-size: 2.5em;
        margin-top: 0px;
    }
    h2 {
        font-size: 1.8em;
        margin-left: 8px;
    }
    h3 {
        font-size: 1.4em;
        margin-left: 8px;
    }
    .main-container {
        font-size: 1em;
        margin-left: 8px;
        margin-right: 8px;
        padding: 15px;
    }
    .header-group,
    .buttons-group {
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
        padding: 8px;
    }
    .header-group img {
        margin: 0 auto 8px auto;
        display: block;
    }
    .hobbies-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    #zelda {
        width: 60px;
        height: 60px;
    }
    .buttons-group {
        width: 100vw;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 0;
        padding-bottom: 16px;
    }
    .AllButton {
        width: 100%;
        font-size: 1em;
        margin: 2px 0;
        justify-content: center;
    }
    .page-content {
        padding-top: 140px;   
        padding-bottom: 180px;
    }
    .skill-list {
        gap: 8px;
    }
    .form-submit {
        flex-direction: column;
        align-items: stretch;
    }
    .status-message {
        font-size: 0.85rem;
    }
}