body {
    margin: 0;
    padding: 0;
    font-family: Georgia, serif;
    background-color: #f4f4f4;
    color: #333;
}

h1, h2, h3, h4, .section-title {
    font-family: Arial, sans-serif;
    text-transform: uppercase;
}

.main-header, header {
    background-color: #fff;
    border-bottom: 3px solid #800080;
    padding: 15px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo a {
    font-family: Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}

.logo span { color: #800080; }

header nav ul, .nav-menu ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    font-family: Consolas, monospace;
}

header nav ul li a, .nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: 0.3s;
}

header nav ul li a:hover, .nav-menu a:hover { color: #800080; }

.btn-live {
    background-color: #800080;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 0;
}

.rubrics-bar {
    background-color: #800080;
    padding: 8px 0;
}

.rubrics-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.rubrics-bar a {
    color: white;
    text-decoration: none;
    font-family: Consolas, monospace;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.2s;
}

.rubrics-bar a:hover { opacity: 0.75; }

.container, main {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.section-title {
    border-left: 5px solid #800080;
    padding-left: 15px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.section-divider {
    border: none;
    border-top: 2px solid #800080;
    margin: 30px 0;
}

.hero-section {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 20px;
    margin-bottom: 10px;
}

.hero-article {
    background: white;
    border: 1px solid #ddd;
    border-radius: 0;
}

.hero-article img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.hero-content { padding: 15px; }

.hero-content h2 {
    font-size: 1.4rem;
    margin: 8px 0;
    line-height: 1.3;
}

.hero-center {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.side-article {
    background: white;
    border: 1px solid #ddd;
    flex: 1;
}

.side-article img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.hero-sidebar {
    background: white;
    border: 1px solid #ddd;
    padding: 15px;
    border-top: 3px solid #800080;
}

.sidebar-title {
    font-family: Arial, sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #800080;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
    margin-bottom: 12px;
}

.mini-article {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.mini-article:last-child { border-bottom: none; }

.mini-article h3 {
    font-size: 0.9rem;
    margin: 5px 0 0 0;
    line-height: 1.3;
}

.mini-article h3 a {
    color: #333;
    text-decoration: none;
}

.mini-article h3 a:hover { color: #800080; }

article {
    background: white;
    border: 1px solid #ddd;
    border-radius: 0;
}

article img {
    width: 100%;
    height: auto;
    border-radius: 0;
}

.article-content { padding: 15px; }

.category {
    background-color: #800080;
    color: white;
    padding: 2px 8px;
    font-size: 0.75rem;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
}

.read-more {
    color: #800080;
    font-weight: bold;
    text-decoration: none;
    font-size: 0.9rem;
}

.small-article img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.bref-list {
    display: flex;
    flex-direction: column;
}

.bref-item {
    display: flex;
    gap: 15px;
    border: 1px solid #ddd;
    border-bottom: none;
    padding: 12px 15px;
    background: white;
}

.bref-item:last-child { border-bottom: 1px solid #ddd; }

.bref-item img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    flex-shrink: 0;
}

.bref-content h3 {
    font-size: 0.95rem;
    margin: 4px 0;
    line-height: 1.3;
}

.bref-content h3 a {
    color: #333;
    text-decoration: none;
}

.bref-content h3 a:hover { color: #800080; }

.bref-content p {
    font-size: 0.85rem;
    color: #666;
    margin: 4px 0 0 0;
}

.sidebar-box {
    background: white;
    border: 1px solid #ddd;
    border-top: 3px solid #800080;
    padding: 15px;
    height: 100%;
}

.article-lead {
    font-style: italic;
    border-left: 4px solid #800080;
    padding-left: 15px;
    font-size: 1.1rem;
}

.stars {
    color: #800080;
    font-size: 1.5rem;
}

.btn-vote {
    background-color: #800080;
    color: white;
    border: none;
    border-radius: 0;
    padding: 8px 16px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
}

.btn-vote:hover { background-color: #600060; }

.vote-thumbs {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.btn-thumb {
    font-size: 1.5rem;
    background: none;
    border: 1px solid #ddd;
    padding: 5px 15px;
    cursor: pointer;
}


.btn-purple {
    background-color: #800080;
    border: none;
    border-radius: 0;
}

.btn-purple:hover { background-color: #600060; }

.no-radius { border-radius: 0; }


.custom-layout {
    flex: 1;
    display: inline-block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.custom-main {
    display: inline-block;
    vertical-align: top;
    white-space: normal;
    width: 70%;
    background-color: #d1e7f0;
    min-height: 400px;
    overflow-y: auto;
}

.custom-menu-green {
    display: inline-block;
    vertical-align: top;
    white-space: normal;
    width: 29%;
    background-color: #c3e6cb;
    min-height: 400px;
    padding: 20px;
    border-left: 1px solid #aaa;
}

.custom-menu-red {
    background-color: #f5c6cb;
    padding: 20px;
    width: 100%;
    border-top: 1px solid #aaa;
}

.widget-group { margin-bottom: 20px; }

.widget-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    font-family: Arial, sans-serif;
}

.reset-btn {
    width: 100%;
    margin-top: 10px;
    border-radius: 0;
}

.bxl-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 40px 0 20px 0;
    margin-top: 50px;
}

.footer-logo span { color: #800080; }


.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border: 1px solid #555;
    padding: 4px 12px;
    transition: 0.3s;
}

.social-link:hover {
    color: #800080;
    border-color: #800080;
}