/* Hacker Terminal Style */
body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #050505; /* Σχεδόν μαύρο */
    color: #00ff00; /* Κλασικό terminal πράσινο */
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

.terminal-badge {
    background-color: #111;
    color: #00ff00;
    padding: 5px 10px;
    border: 1px dashed #00ff00;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

header h1 {
    color: #ffffff; /* Λευκό για αντίθεση */
    margin: 5px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

header p {
    color: #888888;
    font-size: 0.9rem;
}

/* Container */
.links-container {
    width: 100%;
    max-width: 650px;
}

/* Κατηγορίες σαν Terminal Boxes */
.link-category {
    background-color: #0a0a0a;
    border: 1px solid #00ff00;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.1);
}

.link-category h2 {
    color: #00ff00;
    margin-top: 0;
    font-size: 1.1rem;
    text-transform: uppercase;
    border-bottom: 1px dashed #00ff00;
    padding-bottom: 8px;
}

/* Λίστες */
.link-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-category li {
    margin: 15px 0;
    color: #aaa; /* Γκριζωπό κείμενο για τις περιγραφές */
    font-size: 0.95rem;
}

/* Links */
.link-category a {
    color: #00ff00;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.2s ease;
}

/* Glitch/Glow εφέ στο hover */
.link-category a:hover {
    color: #ffffff;
    background-color: #00ff00;
    color: #000000;
    padding: 2px 5px;
}

footer {
    margin-top: 40px;
}

footer a {
    color: #888888;
    text-decoration: none;
}

footer a:hover {
    color: #00ff00;
    text-decoration: underline;
}
