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;
}


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

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


.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.main-article { grid-column: span 2; }

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: 3px 8px;
    font-size: 0.8rem;
    font-family: Arial, sans-serif;
}

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


.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;
}


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

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

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


.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.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;
}