body {
    background-color: #0d0d0d;
    color: #c5c5c5;
    font-family: "Consolas", "Roboto", "Segoe UI", sans-serif;
    margin: 0;
    padding: 0;
    font-size: 16px; /* Tăng cỡ chữ cơ sở */
    -webkit-font-smoothing: antialiased;
}

.main-wrapper {
    min-height: 100vh;
    background-image: radial-gradient(circle at top, #1a1a1a 0%, #0d0d0d 100%);
}

.top-nav {
    background-color: #111111;
    height: 55px; /* Tăng chiều cao thanh navbar */
    border-bottom: 1px solid #222222;
    box-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.nav-content {
    width: 800px; /* Tăng độ rộng tổng thể */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 15px;
}

.logo {
    font-family: "Consolas", monospace;
    font-weight: bold;
    color: #e0e0e0;
    font-size: 22px; /* Tăng logo */
    letter-spacing: 1px;
}

.logo span {
    color: #b52a2a;
}

.language-selector select {
    padding: 6px 10px; /* Select béo hơn tí */
    font-size: 14px;
    color: #a0a0a0;
    border: 1px solid #333;
    background-color: #080808;
    outline: none;
    cursor: pointer;
    font-family: monospace;
}

.language-selector select:focus {
    border-color: #b52a2a;
}

.container {
    width: 800px; /* Tăng độ rộng container */
    margin: 50px auto;
}

.notice-box {
    background-color: #151515;
    border: 1px solid #2a2a2a;
    border-top: 3px solid #b52a2a;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    border-radius: 3px;
}

.box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px; /* Thêm padding */
    background-color: #1a1a1a;
    border-bottom: 1px solid #282828;
}

.page-title {
    font-family: "Consolas", monospace;
    font-size: 18px; /* Tăng title */
    color: #e0e0e0;
    margin: 0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-indicator {
    width: 10px; /* Lớn hơn */
    height: 10px;
    background-color: #28a745;
    border-radius: 50%;
    box-shadow: 0 0 10px #28a745;
}

.content-body {
    padding: 30px 25px 25px 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.speaker-icon {
    font-size: 24px; /* Icon sấm sét to hơn */
    color: #b52a2a;
    text-shadow: 0 0 5px rgba(181, 42, 42, 0.4);
    margin-top: -2px;
}

.text-content {
    flex: 1;
}

p#description {
    font-family: "Roboto", sans-serif;
    font-size: 16px; /* Text chính to, dễ đọc hơn */
    line-height: 1.7;
    color: #aaaaaa;
    margin: 0;
}

/* Terminal structured tables used on darkweb forums */
.terminal-table {
    margin: 0 25px 30px 25px; /* Tràn lề hơn */
    border: 1px solid #282828;
    background-color: #0f0f0f;
}

.term-row {
    display: flex;
    border-bottom: 1px solid #222222;
}

.term-row:last-child {
    border-bottom: none;
}

.term-label {
    width: 180px; /* Tăng để label không bị bể chữ khi phóng to */
    padding: 15px 20px;
    color: #777777;
    background-color: #141414;
    border-right: 1px solid #282828;
    font-size: 15px; /* Tăng */
    display: flex;
    align-items: center;
}

.term-value {
    padding: 15px 20px;
    flex: 1;
    display: flex;
    align-items: center;
}

.term-value a {
    text-decoration: none;
    font-size: 16px; /* Link to hơn */
    font-family: "Consolas", monospace;
    transition: all 0.2s ease;
}

.highlight-link {
    color: #d84545;
    font-weight: bold;
}

.highlight-link:hover {
    color: #ff5555;
    text-shadow: 0 0 10px rgba(255, 85, 85, 0.3);
}

.standard-link {
    color: #4a90e2;
}

.standard-link:hover {
    color: #6eb0fc;
    text-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
}

.action-link {
    display: inline-block;
    color: #ffcc00 !important;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px !important; /* Button to hơn */
    letter-spacing: 1px;
    background: transparent;
    padding-bottom: 2px;
}

.action-link:hover {
    color: #ffe066 !important;
    text-shadow: 0 0 8px rgba(255, 204, 0, 0.4);
}
