/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Share Tech Mono', monospace;
    background-color: #0B0B0B;
    color: #00FF41;
    line-height: 1.8;
    overflow-x: hidden;
}

/* Cursor Animation */
@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}

.cursor {
    display: inline-block;
    margin-left: 5px;
    color: #FF00FF;
    animation: blink 1s infinite;
}

/* Glitch Effect for Header */
.glitch {
    position: relative;
    color: #00FF41;
    font-size: 2.5rem;
    text-align: center;
    animation: flicker 1.5s infinite alternate;
}

@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow: 0 0 5px #00FF41, 0 0 10px #00FF41, 0 0 20px #9B00FF, 0 0 30px #9B00FF;
    }
    20%, 24%, 55% {
        text-shadow: none;
    }
}

/* Container */
.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 50px;
}

/* Header */
header {
    padding: 40px 20px;
    text-align: center;
    border-bottom: 2px solid #00FF41;
    box-shadow: 0 0 25px #00FF41 inset;
}

header .header-img {
    max-width: 120px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px #00FF41);
}

/* Sections */
.section {
    background-color: #101010;
    border-left: 5px solid #9B00FF;
    padding: 25px 30px;
    margin: 25px 0;
    border-radius: 10px;
    box-shadow: 0 0 20px #00FF41 inset;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.section:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px #9B00FF inset, 0 0 20px #00FF41;
    background: #1A1A1A;
}

.section h2 {
    color: #9B00FF;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.section h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #00FF41;
    margin-top: 5px;
    border-radius: 3px;
}

.section p, .section li {
    font-size: 1.05rem;
    color: #A0FFA0;
}

.section ul {
    list-style-type: disc;
    padding-left: 25px;
    margin-top: 10px;
}

.section li {
    margin-bottom: 10px;
}



/* Responsive */
@media (max-width: 768px) {
    .section {
        padding: 20px 15px;
    }
    header h1 {
        font-size: 2rem;
    }
}
