/*
 Theme Name: Dark Web Index
 Author: Dark Web Index
 Description: A custom theme for Dark Web Index
 Version: 1.0
*/
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    background: #333; /* Fondo gris medio oscuro */
    color: #fff; /* Letras blancas */
    line-height: 1.6;
}
header {
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    text-align: center;
}
header h1 {
    margin: 0;
    font-size: 2.5em;
}
header h1 a {
    color: #1e90ff; /* Enlaces en azul */
    text-decoration: none;
}
header h1 a:hover {
    text-decoration: underline;
}
header p {
    margin: 10px 0;
    font-style: italic;
    font-size: 1.1em;
}
#searchform {
    margin: 15px 0;
}
#searchform input[type="text"] {
    padding: 10px;
    width: 70%;
    max-width: 500px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #444;
    color: #fff;
}
#searchform button {
    padding: 10px 20px;
    background: #1e90ff; /* Botón en azul */
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
#searchform button:hover {
    background: #0056b3;
}
nav {
    background: #222;
    padding: 15px;
}
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}
nav ul li {
    margin: 0 20px;
}
nav ul li a {
    color: #1e90ff; /* Enlaces en azul */
    text-decoration: none;
    font-weight: 500;
}
nav ul li a:hover {
    text-decoration: underline;
}
.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
}
.content {
    flex: 3;
    background: #444; /* Fondo más claro para el contenido */
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
aside {
    flex: 1;
    background: #444;
    padding: 25px;
    margin-left: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.update {
    font-style: italic;
    color: #ccc;
    margin-bottom: 15px;
}
section h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #fff;
}
section h3 {
    font-size: 1.4em;
    margin: 20px 0 10px;
    color: #fff;
}
section ul {
    list-style: none;
    padding: 0;
}
section ul li {
    margin: 10px 0;
}
section ul li a {
    color: #1e90ff; /* Enlaces en azul */
    text-decoration: none;
}
section ul li a:hover {
    text-decoration: underline;
}
section ul li a.onion-link {
    color: #1e90ff; /* Direcciones .onion en azul */
    font-family: monospace;
    font-size: 0.9em;
}
.guide {
    margin-top: 30px;
    padding: 20px;
    background: #555;
    border-radius: 8px;
}
.guide h2 {
    font-size: 1.8em;
    color: #fff;
}
.guide img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 15px 0;
}
footer {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 15px;
}
footer a {
    color: #1e90ff; /* Enlaces en azul */
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    aside {
        margin-left: 0;
        margin-top: 20px;
    }
    nav ul {
        flex-direction: column;
        text-align: center;
    }
    nav ul li {
        margin: 10px 0;
    }
    #searchform input[type="text"] {
        width: 100%;
    }
}