/* styles5.css - Strict Magazine Style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    background: #fafafa;
    color: #2c2c2c;
    line-height: 1.85;
    font-size: 17px;
}

header {
    background: #000000;
    padding: 16px 55px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 5px solid #00A3FF;
}

.logo img {
    height: 44px;
}

.header-right {
    display: flex;
    gap: 28px;
    align-items: center;
}

.header-btns {
    display: flex;
    gap: 16px;
}

.btn-red {
    background: #00A3FF;
    color: #000000;
    padding: 10px 26px;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 700;
    transition: all 0.25s;
    font-family: Arial, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-red:hover {
    background: #0029D9;
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    padding: 10px 26px;
    text-decoration: none;
    border: 1px solid #ffffff;
    border-radius: 3px;
    font-weight: 600;
    transition: all 0.25s;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.btn-outline:hover {
    background: #ffffff;
    color: #000000;
}

.promo-box {
    background: #00A3FF;
    color: #000000;
    padding: 9px 20px;
    border-radius: 3px;
    text-decoration: none;
    font-family: monospace;
    font-size: 13px;
}

.promo-box strong {
    font-weight: 900;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 75px 40px;
    background: #ffffff;
    box-shadow: 0 0 50px rgba(0,0,0,0.08);
}

h1 {
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.3;
    border-bottom: 3px solid #000000;
    padding-bottom: 20px;
    font-family: Georgia, serif;
}

h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0029D9;
    margin: 65px 0 20px;
    font-family: Georgia, serif;
    text-align: left;
}

p {
    margin-bottom: 22px;
    color: #3d3d3d;
    text-align: justify;
}

.hero-img {
    margin: 50px -40px;
    overflow: hidden;
}

.hero-img img {
    width: 100%;
    display: block;
}

.update-date {
    background: #f0f0f0;
    border-top: 3px solid #00A3FF;
    border-bottom: 3px solid #00A3FF;
    padding: 16px 20px;
    margin: 45px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Arial, sans-serif;
}

.update-icon {
    font-size: 20px;
    color: #00A3FF;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 50px 0;
    border: 2px solid #000000;
}

th {
    background: #000000;
    color: white;
    padding: 14px 16px;
    text-align: left;
    font-weight: 700;
    font-family: Arial, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
}

td {
    padding: 13px 16px;
    border-bottom: 1px solid #d0d0d0;
    color: #3d3d3d;
}

td:first-child {
    font-weight: 600;
    color: #0029D9;
}

tr:last-child td {
    border-bottom: none;
}

ol, ul {
    margin: 30px 0;
    padding-left: 35px;
}

li {
    margin-bottom: 16px;
    color: #3d3d3d;
}

footer {
    background: #000000;
    color: #ffffff;
    text-align: center;
    padding: 25px;
    font-size: 13px;
    font-family: Arial, sans-serif;
    border-top: 5px solid #00A3FF;
}

@media (max-width: 768px) {
    .container { padding: 40px 25px; }
    h1 { font-size: 30px; }
    .hero-img { margin: 30px -25px; }
}
