body {
    margin: 0;
    font-family: Roboto, sans-serif;
}

.top-header {
    background-color: #e00000;
    color: white;
}

.top-bar {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    justify-content: space-between;
}

.logo {
    height: 42px;
}

.live-block {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    justify-content: flex-end;
}

.channel-logo {
    height: 24px;
}

.weather {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
}

.weather-icon {
    height: 24px;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    color: black;
    padding: 8px 16px;
    border-top: 1px solid #ccc;
    height: 40px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    padding: 0;
    margin: 0;
    font-weight: bold;
    font-size: 14px;
}

.currencies {

    color: black;
    background: white;
}

.currencies span {
    margin-left: 15px;
    font-weight: 400;
    font-size: 14px;
}

.currencies img {
    height: 14px;
    vertical-align: middle;
    margin-right: 4px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    padding: 6px 16px;
    background-color: white;
    padding-top: 15px;
    color: #999;
    font-size: 14px;
}

.breadcrumbs .divider {
    margin: 0 8px;
}

.news-card {
    background-color: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px 10px;
    margin: 20px;
    max-width: 600px;
    font-family: Roboto, sans-serif;
    line-height: 1.5;
    color: #222;
}

nav a {
    text-decoration: none;
    color: black;
}

.news-card .headline {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-card .headline span {
    color: #000;
}

.news-card .meta {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    font-size: 11px;
    color: #888;
    margin-bottom: 12px;
    gap: 12px;
    justify-content: space-between;
}

.news-card .meta i {
    margin-right: 4px;
    color: #aaa;
}

.news-card .meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.news-card .meta .author {
    color: #444;
    font-weight: 500;
}

.news-card .meta .write-author {
    font-size: 12px;
    color: #999;
    text-decoration: underline;
    cursor: pointer;
}

.news-card img.news-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 6px;
}

.news-card .caption {
    font-family: Noto Serif, sans-serif;
    font-size: 12px;
    color: #aaa;
    margin-bottom: 10px;
}

.news-card .body {
    font-size: 16px;
    line-height: 18px;
    color: #333;
    margin-bottom: 10px;
}

.comments-section {
    border: 2px solid #E81F14;
    border-radius: 14px;
    padding: 20px;
    max-width: 600px;
    margin: 10px auto;
    background-color: #fff;
    font-family: Roboto, sans-serif;
    padding-top: 0;
}

.comments-section h3 {
    font-size: 18px;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}

.comment {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.comment:last-child {
    margin-bottom: 0;
}

.avatar {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
}

.comment .name {
    font-family: Noto Serif, sans-serif;
    max-width: 80px;
    font-size: 11px;
    color: #9C9C9C;
    margin-bottom: 6px;
    text-align: center;
}

.comment-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

.form-section {
    background-color: #EFEFEF;
    padding: 24px;
    border-radius: 28px;
    max-width: 380px;
    margin: 40px auto;
    text-align: center;
    font-family: Roboto, sans-serif;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
}

.form-logo {
    width: 60px;
}

.form-section h3 {
    font-size: 14px;
    line-height: 15px;
    font-weight: 900;
    margin-bottom: 10px;
    margin-top: 0;
    color: #000;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.input-wrapper input {
    background: white;
    padding: 12px;
    border: 2px solid #e72b2b;
    border-radius: 28px;
    font-size: 14px;
    outline: none;
}

.payout-form input::placeholder {
    color: #aaa;
}

.payout-form button {
    padding: 12px;
    border: none;
    border-radius: 28px;
    background-color: #e72b2b;
    color: white;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    margin-top: 14px;
    transition: background-color 0.2s;
    width: 100%;
}

.payout-form button:hover {
    background-color: #c81919;
}

.disclaimer {
    font-size: 11px;
    color: black;
    font-weight: 700;
    line-height: 1.5;
}

.footer {
    background-color: #111;
    color: #ccc;
    padding: 30px 20px 20px;
    font-family: Roboto, sans-serif;
    font-size: 14px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 96px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    font-size: 9px;
    margin-bottom: 8px;
}

.footer-links a {
    color: #eee;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    color: #fff;
    font-size: 8px;
    margin-top: 15px;
}

