@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Orbitron:wght@500;700;900&display=swap');

:root {
    --primary: #0077B6;
    --primary-light: #E0F2FE;
    --primary-glow: rgba(0, 119, 182, 0.25);
    --secondary: #00F0FF; /* Neon Cyan */
    --secondary-glow: rgba(0, 240, 255, 0.35);
    --accent: #FF3366; /* Redline Red */
    --accent-glow: rgba(255, 51, 102, 0.3);
    --dark: #0F172A; /* Deep Slate */
    --dark-card: #1E293B;
    --light: #F8FAFC;
    --text: #334155;
    --text-light: #64748B;
    --border: #E2E8F0;
    --border-glow: rgba(0, 240, 255, 0.15);
    --white: #FFFFFF;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --font: 'Plus Jakarta Sans', sans-serif;
    --font-cyber: 'Orbitron', sans-serif;
    --shadow-sm: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
    --shadow-glow: 0 0 20px var(--secondary-glow);
    --shadow-accent: 0 0 20px var(--accent-glow);
    --radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base resets & Strict horizontal overflow prevention */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    position: relative;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    background-color: var(--light);
    color: var(--text);
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--dark);
    font-weight: 800;
    line-height: 1.25;
}

h1 { 
    font-size: 2.8rem; 
    margin-bottom: 1.5rem; 
    letter-spacing: -0.02em;
}

h2 { 
    font-size: 2rem; 
    margin-top: 2.5rem; 
    margin-bottom: 1.25rem; 
    position: relative; 
    padding-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
    box-shadow: 0 0 10px var(--secondary-glow);
}

h3 { 
    font-size: 1.4rem; 
    margin-top: 1.75rem; 
    margin-bottom: 0.85rem; 
    color: var(--dark);
}

p { 
    margin-bottom: 1.25rem; 
    font-size: 1.05rem; 
    color: var(--text);
}

strong { 
    font-weight: 700; 
    color: var(--dark);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary);
}

/* Scroll Animation System */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Layout Elements */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    overflow: hidden; /* Prevent grid columns from pushing out margins */
}

/* Header & Navigation (Cyberpunk Dark Feel) */
header {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--white);
    letter-spacing: -0.03em;
    font-family: var(--font-cyber);
}

.logo-link span {
    background: linear-gradient(135deg, var(--white) 30%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    padding: 0.6rem;
    border-radius: var(--radius);
    box-shadow: 0 0 15px var(--secondary-glow);
}

nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

nav a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 1px solid transparent;
}

nav a:hover, nav a.active {
    color: var(--secondary);
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
}

/* Buttons (Flashy Glow) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-weight: 700;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #0096C7 100%);
    color: var(--white);
    box-shadow: 0 4px 15px var(--primary-glow);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -50%; width: 200%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent);
    transform: skewX(-25deg);
    transition: 0.75s;
}

.btn-primary:hover::after {
    left: 120%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--secondary-glow);
    font-weight: 800;
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, #E60045 100%);
    color: var(--white);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

.btn-secondary {
    background-color: rgba(0, 119, 182, 0.1);
    color: var(--primary-dark);
    border: 1px solid rgba(0, 119, 182, 0.2);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* Hero Section with Flashy Gradient and Mesh overlay */
.hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(10, 47, 73, 0.9) 100%), var(--bg-image) no-repeat center center/cover;
    color: var(--white);
    padding: 7rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--secondary);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--secondary-glow) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.2;
    pointer-events: none;
}

.hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    font-family: var(--font-cyber);
}

.hero h1 span {
    color: var(--secondary);
    text-shadow: 0 0 15px var(--secondary-glow);
}

.hero p {
    font-size: 1.35rem;
    max-width: 850px;
    margin: 0 auto 2.5rem auto;
    color: rgba(255, 255, 255, 0.85);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* Cards & Grids (Elevated Neon Effects) */
.grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background-color: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    position: relative;
    max-width: 100%;
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: var(--transition);
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.12);
    border-color: rgba(0, 240, 255, 0.25);
}

.card-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-img {
    transform: scale(1.08);
}

.card-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-tag {
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    margin-bottom: 1.25rem;
    border: 1px solid rgba(0, 119, 182, 0.15);
}

.card-title {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 0.85rem;
    line-height: 1.3;
}

.card-desc {
    color: var(--text-light);
    font-size: 0.98rem;
    margin-bottom: 1.5rem;
}

.card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
}

/* Articles layout */
.main-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    padding: 4rem 0;
    max-width: 100%;
}

.article-body {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 3rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    max-width: 100%;
    overflow: hidden; /* Strictly prevent content overflow */
}

.article-header {
    margin-bottom: 2.5rem;
    border-bottom: 2px solid var(--border);
    padding-bottom: 2rem;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* Styled Table for SEO comparisons */
.seo-table-container {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    margin: 2.5rem 0;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    -webkit-overflow-scrolling: touch; /* Fluid scroll on iOS */
}

.seo-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.98rem;
    min-width: 600px; /* Force scrollbar within container instead of breaking layout */
}

.seo-table th {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--white);
    padding: 1.25rem;
    font-weight: 700;
}

.seo-table td {
    padding: 1.25rem;
    border-bottom: 1px solid var(--border);
    background-color: var(--white);
}

.seo-table tr:last-child td {
    border-bottom: none;
}

.seo-table tr:hover td {
    background-color: rgba(224, 242, 254, 0.3);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
}

.badge-danger { 
    background-color: rgba(254, 226, 226, 0.8); 
    color: var(--danger); 
    border: 1px solid rgba(239, 68, 68, 0.2);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.1);
}
.badge-success { 
    background-color: rgba(209, 250, 229, 0.8); 
    color: var(--success); 
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.1);
}
.badge-warning { 
    background-color: rgba(254, 243, 199, 0.8); 
    color: var(--warning); 
    border: 1px solid rgba(245, 158, 11, 0.2);
}

/* Sidebar Widgets */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 100%;
}

.widget {
    background-color: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.widget::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background-color: var(--primary);
}

.widget-title {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 0.6rem;
    font-weight: 800;
    color: var(--dark);
}

.widget-list {
    list-style: none;
}

.widget-list li {
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    padding-bottom: 0.75rem;
}

.widget-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.widget-list a {
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
}

.widget-list a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

/* Affiliation Widget (Ultra Flashy Call to Action) */
.affiliation-banner {
    background: linear-gradient(135deg, var(--dark) 0%, #1E1B4B 100%);
    color: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--secondary);
    box-shadow: var(--shadow-glow);
    margin: 2.5rem 0;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.affiliation-banner::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 150px; height: 150px;
    background: var(--secondary-glow);
    filter: blur(50px);
    border-radius: 50%;
}

.affiliation-badge {
    background-color: var(--accent);
    color: var(--white);
    font-family: var(--font-cyber);
    font-size: 0.75rem;
    font-weight: 900;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-accent);
}

.affiliation-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.affiliation-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* FAQ System */
.faq-section {
    margin-top: 3.5rem;
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 3rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    max-width: 100%;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-answer {
    margin-top: 0.85rem;
    color: var(--text);
    font-size: 1.02rem;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* BRAND RELIABILITY INDEX STYLES */
.brand-search-box {
    background: linear-gradient(135deg, var(--dark) 0%, #1E293B 100%);
    border-radius: var(--radius);
    padding: 2.5rem;
    color: var(--white);
    margin-bottom: 3rem;
    border: 1px solid var(--primary);
    box-shadow: var(--shadow-sm);
    max-width: 100%;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 100%;
}

.brand-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 160px;
    max-width: 100%;
}

.brand-card:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.brand-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.brand-rating {
    display: flex;
    justify-content: center;
    gap: 0.15rem;
    color: var(--warning);
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.brand-reliability-label {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* ROAD CODE INTERACTIVE QUIZZ STYLES */
.quiz-container {
    background-color: var(--white);
    border-radius: var(--radius);
    border: 2px solid var(--primary);
    padding: 3rem;
    box-shadow: var(--shadow);
    margin: 3rem 0;
    overflow: hidden;
    position: relative;
    max-width: 100%;
}

.quiz-progress-bar {
    width: 100%;
    height: 10px;
    background-color: var(--border);
    border-radius: 5px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.quiz-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    width: 0%;
    transition: width 0.4s ease;
}

.quiz-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-family: var(--font-cyber);
    flex-wrap: wrap;
    gap: 1rem;
}

.quiz-timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
}

.quiz-question-box {
    margin-bottom: 2rem;
    max-width: 100%;
}

.quiz-question-num {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.quiz-question-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    word-wrap: break-word; /* Safe wrapping on small screens */
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 100%;
}

.quiz-option {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--light);
    max-width: 100%;
    word-break: break-word;
}

.quiz-option:hover {
    border-color: var(--primary);
    background-color: var(--primary-light);
}

.quiz-option.selected {
    border-color: var(--primary);
    background-color: var(--primary-light);
    box-shadow: 0 0 10px rgba(0, 119, 182, 0.15);
}

.quiz-option.correct {
    border-color: var(--success) !important;
    background-color: rgba(16, 185, 129, 0.1) !important;
    color: var(--success);
}

.quiz-option.incorrect {
    border-color: var(--danger) !important;
    background-color: rgba(239, 68, 68, 0.1) !important;
    color: var(--danger);
}

.quiz-explanation-box {
    background-color: var(--primary-light);
    border-radius: var(--radius);
    padding: 1.5rem;
    border-left: 5px solid var(--primary);
    margin-bottom: 2rem;
    display: none;
    max-width: 100%;
    word-break: break-word;
}

.quiz-explanation-title {
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

/* FUEL TOOL INTERACTIVE MAP STYLES */
.fuel-tool-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
    height: 750px;
    max-width: 100%;
}

@media (max-width: 992px) {
    .fuel-tool-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
}

.fuel-sidebar {
    background-color: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: var(--shadow);
    max-width: 100%;
}

.fuel-map-container {
    background-color: var(--white);
    border-radius: var(--radius);
    border: 2px solid var(--primary);
    overflow: hidden;
    min-height: 450px;
    position: relative;
    box-shadow: var(--shadow-glow);
    max-width: 100%;
}

#map {
    width: 100%;
    height: 100%;
    z-index: 1;
}

.search-box {
    margin-bottom: 1.5rem;
    max-width: 100%;
}

.search-input-group {
    display: flex;
    gap: 0.5rem;
    max-width: 100%;
}

.input-control {
    width: 100%;
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius);
    border: 2px solid var(--border);
    font-family: var(--font);
    font-size: 0.95rem;
    transition: var(--transition);
}

.input-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.fuel-type-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
}

.fuel-chip {
    padding: 0.6rem;
    text-align: center;
    border-radius: 10px;
    border: 2px solid var(--border);
    font-size: 0.85rem;
    font-weight: 800;
    cursor: pointer;
    background-color: var(--light);
    transition: var(--transition);
}

.fuel-chip.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--dark);
    border-color: var(--secondary);
    box-shadow: 0 0 10px var(--secondary-glow);
}

.station-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
    max-width: 100%;
}

.station-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    background-color: var(--light);
    cursor: pointer;
    transition: var(--transition);
    max-width: 100%;
}

.station-card:hover, .station-card.active {
    border-color: var(--secondary);
    background-color: rgba(0, 240, 255, 0.05);
    box-shadow: 0 0 10px var(--border-glow);
}

.station-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.station-brand {
    font-weight: 800;
    color: var(--dark);
    font-size: 1.05rem;
    word-break: break-word;
}

.station-price {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--primary-dark);
    font-family: var(--font-cyber);
}

.station-address {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    word-break: break-word;
}

.station-fuels {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.fuel-pill {
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    background-color: var(--white);
    border: 1px solid var(--border);
    color: var(--dark);
    font-weight: 700;
}

/* Footer style (Cyber Dark) */
footer {
    background-color: #0B0F19;
    color: var(--white);
    padding: 5rem 0 2.5rem 0;
    border-top: 3px solid var(--primary);
    max-width: 100%;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
    max-width: 100%;
}

.footer-brand h3 {
    color: var(--white);
    margin-bottom: 1.25rem;
    font-size: 1.6rem;
    font-family: var(--font-cyber);
}

.footer-brand h3 span {
    color: var(--secondary);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.98rem;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    box-shadow: 0 0 5px var(--secondary-glow);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.85rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.98rem;
}

.footer-column a:hover {
    color: var(--secondary);
    padding-left: 6px;
    text-shadow: 0 0 5px var(--secondary-glow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 100%;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
    color: var(--secondary);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .main-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
    .header-container { height: auto; padding: 1.5rem 0; flex-direction: column; gap: 1.25rem; }
    nav { flex-wrap: wrap; justify-content: center; gap: 0.6rem; }
    .hero h1 { font-size: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .article-body { padding: 1.5rem; }
    .quiz-container { padding: 1.5rem; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1.1rem; }
    .logo-link { font-size: 1.3rem; }
}