/* Core Variables */
:root {
    --brand-yellow: #FFC000;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #cccccc;
    --lotto-red: #e53935;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: var(--dark-bg); color: var(--text-light); font-family: var(--font-body); line-height: 1.6; }

/* Header & Breaking */
.breaking-bar { display: flex; background-color: #222; border-bottom: 2px solid var(--brand-yellow); }
.breaking-label { background-color: var(--brand-yellow); color: #000; padding: 5px 15px; font-weight: bold; font-family: var(--font-heading); z-index: 10; }
.breaking-text { padding: 5px 10px; font-family: var(--font-heading); font-weight: 500; }
.site-header { background-color: #000; padding: 20px 5%; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #333; }
.logo-container h1 { font-family: var(--font-heading); font-size: 2.5rem; font-style: italic; }
.highlight { color: var(--brand-yellow); }
.nav-links { list-style: none; display: flex; gap: 20px; }
.nav-links a { color: var(--text-light); text-decoration: none; font-weight: 700; font-family: var(--font-heading); text-transform: uppercase; transition: color 0.3s ease; }
.nav-links a:hover { color: var(--brand-yellow); }
.menu-toggle { display: none; background: none; border: none; color: var(--brand-yellow); font-size: 2rem; cursor: pointer; }

/* Layouts */
.container { max-width: 1200px; margin: 40px auto; padding: 0 20px; }
.section-title { border-bottom: 2px solid #333; margin-bottom: 20px; padding-bottom: 10px; }
.section-title h3 { font-family: var(--font-heading); color: var(--brand-yellow); text-transform: uppercase; font-size: 1.8rem; }

/* Dashboard & Lotto & Fuel */
.market-grid, .fuel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; }
.market-card, .fuel-card { background-color: #111; border: 1px solid #333; border-left: 4px solid var(--brand-yellow); padding: 20px; border-radius: 4px; }
.market-card h4, .fuel-card h4 { color: var(--brand-yellow); font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 15px; border-bottom: 1px solid #333; padding-bottom: 5px; text-transform: uppercase; }
.fuel-card h4 span { color: var(--text-muted); font-size: 0.9rem; font-weight: normal; }
.market-list, .fuel-card ul { list-style: none; }
.market-list li, .fuel-card li { font-size: 1.1rem; margin-bottom: 12px; display: flex; justify-content: space-between; border-bottom: 1px dashed #222; padding-bottom: 5px; }
.market-list strong, .fuel-card strong { color: #fff; font-size: 1.2rem; }
.gold-text { color: var(--brand-yellow) !important; }

.lotto-section h5 { font-size: 1.1rem; font-family: var(--font-heading); text-transform: uppercase; }
.lotto-date-text { font-size: 0.8rem; color: var(--text-muted); font-weight: normal; margin-left: 10px; }
.ball-container { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 5px; }
.lotto-ball { display: inline-flex; justify-content: center; align-items: center; width: 35px; height: 35px; background-color: #fff; color: #000; border-radius: 50%; font-weight: bold; font-size: 1rem; box-shadow: inset -2px -2px 4px rgba(0,0,0,0.3); }
.bonus-ball { background-color: var(--brand-yellow); }
.pb-ball { background-color: var(--lotto-red); color: #fff; }

/* Hero */
.hero-article { display: grid; grid-template-columns: 1fr 1fr; background-color: var(--card-bg); border-left: 5px solid var(--brand-yellow); margin-bottom: 50px; }
.hero-image { background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1527482797697-8795b05a13fe?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover; min-height: 400px; position: relative; }
.category-tag { background-color: var(--brand-yellow); color: #000; padding: 5px 15px; font-family: var(--font-heading); font-weight: bold; text-transform: uppercase; }
.hero-image .category-tag { position: absolute; top: 20px; left: 20px; }
.hero-content { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.hero-content h2 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 15px; line-height: 1.2; }
.hero-content p { color: var(--text-muted); margin-bottom: 25px; font-size: 1.1rem; }
.read-more { color: var(--brand-yellow); text-decoration: none; font-weight: bold; font-family: var(--font-heading); font-size: 1.2rem; text-transform: uppercase; display: inline-block; }

/* News Grid - CLICKABLE CARDS */
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card-link { text-decoration: none; color: inherit; display: block; }
.news-card { background-color: var(--card-bg); transition: transform 0.3s ease; height: 100%; border: 1px solid transparent; overflow: hidden; }
.news-card:hover { transform: translateY(-5px); border-color: #333; }
.card-img { height: 200px; background-color: #333; }
.card-content { padding: 20px; }
.card-category { color: var(--brand-yellow); font-family: var(--font-heading); font-weight: bold; text-transform: uppercase; font-size: 0.9rem; display: block; margin-bottom: 10px; }
.card-content h4 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 10px; line-height: 1.2; }
.card-content p { color: var(--text-muted); font-size: 0.95rem; }

/* Full Article Page Styles */
.full-article h1 { font-family: var(--font-heading); font-size: 3rem; line-height: 1.1; margin-bottom: 20px; color: #fff; }
.article-body { font-size: 1.15rem; line-height: 1.8; color: #eee; }
.article-body p { margin-bottom: 20px; }
.article-body h2, .article-body h3 { font-family: var(--font-heading); color: var(--brand-yellow); margin-top: 30px; margin-bottom: 15px; }

/* Footer */
.site-footer { background-color: #000; text-align: center; padding: 40px 20px; border-top: 5px solid var(--brand-yellow); margin-top: 60px; }
.footer-content h2 { font-family: var(--font-heading); font-style: italic; font-size: 2rem; }
.footer-slogan { color: var(--brand-yellow); font-weight: bold; margin: 15px 0; text-transform: uppercase; }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .market-grid, .fuel-grid, .hero-article { grid-template-columns: 1fr; }
    .hero-image { min-height: 250px; }
    .full-article h1 { font-size: 2.2rem; }
}