/* Blackhole Bot Trap - Inline Styles */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    background: linear-gradient(135deg, #851507 0%, #b34334 100%);
    color: white;
    padding: 20px;
    border-radius: 8px 8px 0 0;
}

.header h1 {
    margin: 0;
    font-size: 24px;
}

.header .emoji {
    font-size: 32px;
    margin-right: 10px;
}

.content {
    background: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-top: none;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
}

.info-table th {
    background: #851507;
    color: white;
    padding: 12px;
    text-align: left;
    font-weight: 600;
}

.info-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.info-table tr:last-child td {
    border-bottom: none;
}

.info-table td:first-child {
    font-weight: 600;
    color: #666;
    width: 150px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #0a81bc;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin: 10px 10px 10px 0;
}

.btn:hover {
    background: #174070;
}

.whois-section {
    background: white;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
}

.whois-section h3 {
    margin-top: 0;
    color: #851507;
}

.whois-content {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    white-space: pre-wrap;
    word-wrap: break-word;
    max-height: 400px;
    overflow-y: auto;
}

.footer {
    background: #333;
    color: #ccc;
    padding: 15px;
    text-align: center;
    font-size: 12px;
    border-radius: 0 0 8px 8px;
}

.footer a {
    color: #0a81bc;
    text-decoration: none;
}

/* Alert/Warning box */
.alert-warning {
    margin-top: 20px;
    padding: 15px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.alert-warning strong {
    font-weight: 600;
}

/* Inline paragraph styles */
p.note {
    margin: 5px 0 0 0;
    opacity: 0.9;
}

p.action-required {
    margin-top: 20px;
    padding: 15px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

/* Action button container */
.button-group {
    margin: 20px 0;
}

/* Blackhole error page styles - Browser-facing trap page */
body.blackhole-trap {
    color: #fff;
    background-color: #851507;
    font: 14px/1.5 Helvetica, Arial, sans-serif;
}

#blackhole {
    margin: 20px auto;
    width: 700px;
}

#blackhole pre {
    padding: 20px;
    white-space: pre-line;
    border-radius: 10px;
    background-color: #b34334;
}

#blackhole a {
    color: #fff;
}
