/* --- Global Styles --- */
body {
    background-color: #0d0d0d;
    color: #e0e0e0;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    text-align: center;
}

/* --- Header Section --- */
header {
    padding: 50px 20px;
    border-bottom: 2px solid #880000;
}

h1 {
    color: #ff0000;
    font-size: 3rem;
    letter-spacing: 5px;
    text-shadow: 2px 2px #440000;
    margin-bottom: 10px;
}

.tagline {
    font-style: italic;
    color: #aaaaaa;
    font-size: 1.2rem;
    letter-spacing: 2px;
    transition: color 0.5s ease, text-shadow 0.5s ease;
}

.tagline:hover {
    color: #ff0000;
    text-shadow: 0 0 8px #880000;
    cursor: default;
}

/* --- Layout Wrapper --- */
.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

section {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

h2 {
    color: #ff0000;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    text-transform: uppercase;
    font-size: 1.5rem;
}

/* --- Feed Item Styling --- */
.news-item, .trailer-item {
    background: #151515;
    padding: 15px;
    margin-bottom: 20px;
    border-left: 4px solid #880000;
    transition: transform 0.2s ease, background 0.2s ease;
}

.news-item:hover, .trailer-item:hover {
    background: #1c1c1c;
    transform: translateX(5px);
}

.news-item h3, .trailer-item h3 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.news-item a, .trailer-item a {
    color: #ffffff;
    text-decoration: none;
}

.news-item a:hover, .trailer-item a:hover {
    color: #ff4444;
}

.date-stamp {
    font-size: 0.75rem;
    color: #666;
}

.loader {
    color: #444;
    font-style: italic;
}

/* --- Footer --- */
footer {
    padding: 40px;
    color: #444;
    font-size: 0.8rem;
}
