* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    width: 100%;
    min-height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    background-color: #0D0D14;
    color: #FFFFFF;

}
body {
    position: relative;
    overflow-x: hidden;
}




.main-content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}


.news-section {
    flex: 4;
}


.widgets-section {
    flex: 1;
    display: flex;
    flex-direction: column;

}


.news-item {
    background: rgba(255,255,255,0.05);
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 6px;
}
.news-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.news-item p {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9;
}
.news-meta {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

.news-item h3 a {
    color: #fff;
    text-decoration: none;
}

.news-item h3 a:hover {
    text-decoration: underline;
}


.btn-fullwidth {
    display: inline-block;
    width: 100%;
    background-color: #007BFF;
    color: #fff;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 20px 0;
    transition: background-color 0.3s ease;
}
.btn-fullwidth:hover {
    background-color: #0056b3;
}




.quotes-widget,
.calendar-widget {
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    padding: 1rem;
}
.quotes-widget h4,
.calendar-widget h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
}
.quote-item,
.calendar-event {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}
.quote-item span,
.calendar-event span {
    display: inline-block;
    min-width: 80px;
    opacity: 0.85;
}


@media (max-width: 900px) {

    .main-content {
        flex-direction: column;
    }

    .news-section,
    .widgets-section {
        flex: 0 0 auto;
        width: 100%;
    }
}