/* ==========================
   General Body
========================== */
body {
    font-family: 'Inter', Arial, sans-serif;
    background-color: #f9fafb; /* light theme background */
    color: #1f2933;           /* primary text color */
    line-height: 1.6;
    margin: 0;
    padding: 20px;
}

/* ==========================
   Container / Page Width
========================== */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* ==========================
   Headings
========================== */
h1 {
    font-size: 2rem;
    margin-bottom: 0.5em;
    color: #2563eb; /* blue accent for title */
    text-align: center;
}

h2 {
    font-size: 1.5rem;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    border-left: 4px solid #2563eb;
    padding-left: 10px;
}

h3 {
    font-size: 1.2rem;
    margin-top: 1em;
    margin-bottom: 0.3em;
}

/* ==========================
   Paragraphs
========================== */
p {
    margin-bottom: 1em;
}

/* ==========================
   Lists (for handshake steps, etc.)
========================== */
ol, ul {
    margin-left: 20px;
    margin-bottom: 1em;
}

/* ==========================
   Monospace / Logs / IPs
========================== */
.mono {
    font-family: 'Courier New', monospace;
    background-color: #f3f4f6;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
    color: #111827;
    word-break: break-word;
}

/* ==========================
   Evidence / Images
========================== */
img {
    display: block;
    max-width: 90%;
    height: auto;
    margin: 20px auto;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Optional caption under images */
figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 5px;
}

/* ==========================
   Links
========================== */
a {
    color: #2563eb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ==========================
   Section Blocks (optional subtle background)
========================== */
.section {
    padding: 15px 20px;
    margin-bottom: 20px;
    background-color: #f3f4f6;
    border-left: 4px solid #2563eb;
    border-radius: 4px;
}

/* ==========================
   Optional: responsive tweaks
========================== */
@media (max-width: 600px) {
    h1 {
        font-size: 1.5rem;
    }
    h2 {
        font-size: 1.2rem;
    }
    .container {
        padding: 15px;
    }
}