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

body {
    background-color: #000;
    color: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.code{
    color: rgb(71, 151, 105);
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    
}

/* Section styles */
section {
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
}

/* Hero section */
.hero {
    position: relative;
    text-align: center;
    min-height: 100vh;
}

.hero-content {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}



.article {
    background: linear-gradient(180deg, #000 0%, #111 100%);
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.article h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    text-align: center;
}

.article-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.article-entry {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: #abaaaa;
}   

.article-entry p {
    font-size: 1rem;
    color: rgb(0, 255, 255);
    line-height: 1.8;
    position: relative;
    padding-left: 1.5rem;
    border-left: 2px solid rgba(0, 255, 255, 0.3);
    font-family: monospace;
}

.log{
    font-family: monospace;
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.8;
}

.log a{
    color: rgba(0, 255, 255, 0.367);
}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0ff;
    text-decoration: none;
    margin-top: 2rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background: rgba(0, 255, 255, 0.05);
    transition: all 0.3s ease;
}
.back-link:hover {
    color: #fff;
    text-shadow: 0 0 5px #0ff;
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-2px);
}