/* ══════════════════════════════════════════
   NEWS ITEMS
══════════════════════════════════════════ */
.news-item {
    display: table;
    width: 100%;
    box-sizing: border-box;
    background: #0d0f18;
    border: 1px solid #161924;
    margin-bottom: 20px;
    -webkit-transition: border-color 0.25s, box-shadow 0.25s;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.news-item:hover {
    border-color: rgba(192, 24, 42, 0.4);
    box-shadow: 0 0 24px rgba(192, 24, 42, 0.08), inset 0 0 40px rgba(0,0,0,0.3);
}

.news-accent {
    display: table-cell;
    width: 4px;
    background: #8b0a1a;
    background: -webkit-linear-gradient(top, #c0182a, #6b0010);
    background: linear-gradient(to bottom, #c0182a, #6b0010);
}

.news-item:hover .news-accent {
    background: #c0182a;
}

.news-body {
    display: table-cell;
    padding: 22px 24px;
    vertical-align: top;
}

.news-title {
    font-size: 18px;
    color: #dde0ea;
    margin: 0 0 10px 0;
    font-weight: normal;
    letter-spacing: 0.5px;
}

.news-title i {
    color: #c0182a;
    margin-right: 8px;
}

.news-meta {
    font-size: 11px;
    color: #3e4558;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-meta span {
    margin-right: 18px;
}

.news-meta i {
    color: #7a1020;
    margin-right: 5px;
}

.news-text {
    color: #9aa0b4;
    line-height: 1.7;
    margin-bottom: 10px;
    font-size: 13px;
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.news-list li {
    color: #9aa0b4;
    font-size: 13px;
    line-height: 1.6;
    padding: 5px 0 5px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.news-list li:last-child {
    border-bottom: none;
}

.news-list li i {
    color: #8b0a1a;
    margin-right: 8px;
    width: 14px;
    text-align: center;
}

.news-footer {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #151820;
}

.news-footer .tag,
.tag {
    display: inline-block;
    background: rgba(192, 24, 42, 0.08);
    border: 1px solid rgba(192, 24, 42, 0.25);
    color: #8b1828;
    padding: 3px 10px;
    font-size: 10px;
    margin-right: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
}

/* ══════════════════════════════════════════
   INTRO SECTION (guides welcome)
══════════════════════════════════════════ */
.intro {
    background: #0d0f18;
    border: 1px solid #161924;
    border-top: 3px solid #c0182a;
    padding: 28px;
}

.intro-title {
    font-size: 20px;
    color: #dde0ea;
    margin: 0 0 16px 0;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.intro-text {
    color: #9aa0b4;
    font-size: 13px;
    line-height: 1.75;
    margin-bottom: 12px;
}

.intro-text strong {
    color: #c8ccd8;
}

.intro-footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #161924;
}

.intro-tag {
    display: inline-block;
    background: rgba(192, 24, 42, 0.08);
    border: 1px solid rgba(192, 24, 42, 0.25);
    color: #8b1828;
    padding: 4px 12px;
    font-size: 11px;
    margin-right: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ══════════════════════════════════════════
   GUIDE SECTIONS
══════════════════════════════════════════ */
.guide {}

.guide-title {
    font-size: 20px;
    color: #dde0ea;
    margin: 0 0 12px 0;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-bottom: 12px;
    border-bottom: 1px solid #161924;
}

.guide-title i {
    color: #c0182a;
    margin-right: 10px;
}

.guide-intro {
    color: #8a90a4;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.guide-intro strong {
    color: #b0b8cc;
}

.guide-block {
    background: #0b0d15;
    border: 1px solid #161924;
    border-left: 3px solid #3a0a10;
    padding: 18px 20px;
    margin-bottom: 14px;
    -webkit-transition: border-left-color 0.2s;
    transition: border-left-color 0.2s;
}

.guide-block:hover {
    border-left-color: #8b1828;
}

.guide-block h2 {
    font-size: 14px;
    color: #c8ccd8;
    margin: 0 0 10px 0;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.guide-block h2 i {
    color: #c0182a;
    margin-right: 8px;
    width: 14px;
    text-align: center;
}

.guide-block p {
    color: #8a90a4;
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 8px;
}

.guide-block ul {
    padding-left: 0;
    margin: 8px 0 0 0;
    list-style: none;
}

.guide-block li {
    color: #8a90a4;
    font-size: 13px;
    padding: 4px 0 4px 16px;
    position: relative;
    line-height: 1.5;
}

.guide-block li:before {
    content: "›";
    position: absolute;
    left: 0;
    color: #6b0010;
}

.guide-block li strong {
    color: #b0b8cc;
}

.guide-block code {
    background: rgba(192, 24, 42, 0.08);
    border: 1px solid rgba(192, 24, 42, 0.2);
    color: #e87080;
    padding: 1px 6px;
    font-size: 12px;
    font-family: "Courier New", monospace;
}

.guide-tips {
    background: rgba(192, 24, 42, 0.05);
    border: 1px solid rgba(192, 24, 42, 0.18);
    padding: 18px 20px;
    margin-top: 4px;
}

.guide-tips h3 {
    font-size: 13px;
    color: #c0182a;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 12px 0;
    font-weight: normal;
}

.guide-tips h3 i {
    margin-right: 8px;
}

.guide-tips ul {
    padding-left: 0;
    margin: 0;
    list-style: none;
}

.guide-tips li {
    color: #8a90a4;
    font-size: 13px;
    padding: 4px 0 4px 16px;
    position: relative;
    line-height: 1.5;
}

.guide-tips li:before {
    content: "›";
    position: absolute;
    left: 0;
    color: #c0182a;
}

.guide-note {
    margin-top: 14px;
    color: #5a6070;
    font-size: 12px;
    line-height: 1.6;
    font-style: italic;
}

.guide-note strong {
    color: #8a90a4;
}

/* ══════════════════════════════════════════
   TABLES
══════════════════════════════════════════ */
.guide-table-wrap {
    width: 100%;
    overflow-x: auto;
    margin-top: 12px;
}

.guide-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    color: #9aa0b4;
    font-size: 13px;
}

.guide-table th,
.guide-table td {
    border: 1px solid #161924;
    padding: 9px 12px;
    text-align: left;
    vertical-align: top;
    line-height: 1.5;
}

.guide-table th {
    background: #100b0d;
    color: #c0182a;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
}

.guide-table tbody tr {
    background: #0b0d15;
}

.guide-table tbody tr:nth-child(even) td {
    background: #0d0f18;
}

.guide-table tbody tr:hover td {
    background: #111320;
}

.guide-table strong {
    color: #c8ccd8;
}

.guide-table .number-cell {
    text-align: center;
    white-space: nowrap;
    color: #c0c8d8;
    font-weight: bold;
}

.command-table {
    min-width: 400px;
}

/* ══════════════════════════════════════════
   VIP SECTION
══════════════════════════════════════════ */
.vip-compare {
    display: table;
    width: 100%;
    margin-bottom: 28px;
    border-collapse: separate;
    border-spacing: 0;
}

.vip-tier {
    display: table-cell;
    vertical-align: top;
}

.vip-divider {
    display: table-cell;
    vertical-align: middle;
    width: 60px;
    text-align: center;
    color: #3a4055;
    font-size: 22px;
}

.free-tier {
    background: #0b0d15;
    border: 1px solid #161924;
    padding: 24px;
}

.premium-tier {
    background: #0f0810;
    border: 1px solid rgba(192, 24, 42, 0.3);
    padding: 24px;
    box-shadow: 0 0 30px rgba(192, 24, 42, 0.06);
}

.vip-tier-header {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #161924;
    color: #5a6478;
    font-weight: normal;
}

.premium-tier .vip-tier-header {
    color: #c0182a;
    border-bottom-color: rgba(192, 24, 42, 0.25);
}

.vip-tier-header i {
    margin-right: 8px;
}

.vip-tier-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vip-tier-list li {
    display: table;
    width: 100%;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    box-sizing: border-box;
}

.vip-tier-list li:last-child {
    border-bottom: none;
}

.vip-stat-label {
    display: table-cell;
    color: #6a7088;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vip-stat-val {
    display: table-cell;
    text-align: right;
    color: #9aa0b4;
    font-size: 15px;
    font-weight: bold;
}

.vip-stat-val.highlight {
    color: #c0182a;
    text-shadow: 0 0 14px rgba(192, 24, 42, 0.5);
}

.vip-cell {
    color: #c0182a;
    text-shadow: 0 0 10px rgba(192, 24, 42, 0.4);
}

.vip-section-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6a7088;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #161924;
}

.vip-section-title i {
    color: #c0182a;
    margin-right: 8px;
}
