/* --- Global Styles & FanDuel Color Palette --- */
:root {
    --fd-bg-dark: #0D1A2B;         /* Main background */
    --fd-bg-med: #182C47;          /* Sidebar, Cards, Header */
    --fd-bg-light: #2A4162;        /* Hover effects */
    --fd-blue-accent: #1575E0;     /* Primary accent blue */
    --fd-border: #2A4162;          /* Borders */
    --text-primary: #FFFFFF;       /* White text */
    --text-secondary: #9DA9B4;     /* Grey text */
    --accent-green: #2ECC71;       /* Live timers */
    --winner-gold: #f1c40f;        /* Winner trophies */
    --danger-red: #e74c3c;         /* For warnings */
}

/* --- Base & Reset --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
body, html { font-family: 'Poppins', sans-serif; background-color: var(--fd-bg-dark); color: var(--text-primary); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Top Navigation Bar --- */
.top-header { background-color: var(--fd-bg-med); border-bottom: 1px solid var(--fd-border); padding: 0 1.5rem; }
.nav-container { max-width: 1600px; margin: 0 auto; height: 65px; display: flex; justify-content: space-between; align-items: center; }
.nav-logo { display: flex; align-items: center; gap: 0.75rem; font-size: 1.2rem; font-weight: 700; color: var(--text-primary); transition: color 0.2s ease; }
.nav-logo:hover { color: #e0e0e0; }
.nav-logo i { font-size: 1.5rem; color: var(--fd-blue-accent); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-button { padding: 0.5rem 1.25rem; border-radius: 6px; font-weight: 600; font-size: 0.9rem; transition: all 0.2s ease; text-align: center; }
.nav-button-primary { background-color: var(--fd-blue-accent); color: var(--text-primary); }
.nav-button-primary:hover { background-color: #3498db; }
.nav-button-secondary { background-color: transparent; color: var(--text-secondary); border: 1px solid var(--fd-border); }
.nav-button-secondary:hover { color: var(--text-primary); border-color: var(--text-primary); }

/* --- Main Site Layout --- */
.site-container { display: grid; grid-template-columns: 260px 1fr; max-width: 1600px; margin: 0 auto; gap: 1.5rem; padding: 1.5rem; }

/* --- Sidebar --- */
.sidebar { background-color: var(--fd-bg-med); border-radius: 8px; padding: 1rem 0.5rem; height: fit-content; }
.sidebar-header { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; color: var(--text-secondary); padding: 0.5rem 1rem 1rem 1rem; display: flex; align-items: center; gap: 0.75rem; }
.sidebar-nav ul { display: flex; flex-direction: column; }
.sidebar-nav a { display: flex; align-items: center; padding: 0.75rem 1rem; border-radius: 6px; margin: 0.15rem 0.5rem; font-weight: 500; transition: background-color 0.2s ease, color 0.2s ease; }
.sidebar-nav a:hover { background-color: var(--fd-bg-light); }
.sidebar-nav a.active { background-color: var(--fd-blue-accent); color: var(--text-primary); }
.sidebar-nav a i { width: 30px; font-size: 1.1rem; color: var(--text-secondary); text-align: center; transition: color 0.2s ease; }
.sidebar-nav a:hover i, .sidebar-nav a.active i { color: var(--text-primary); }

/* --- Main Content Area --- */
.main-content { background-color: var(--fd-bg-med); border-radius: 8px; padding: 1.5rem 2rem; }
.content-header { padding-bottom: 1rem; border-bottom: 1px solid var(--fd-border); margin-bottom: 1.5rem; }
.content-header h1 { font-size: 1.8rem; font-weight: 600; margin-bottom: 1rem; }
.content-sub-nav { display: flex; gap: 1.5rem; }
.content-sub-nav a { font-size: 0.9rem; font-weight: 600; color: var(--text-secondary); padding: 0.5rem 0; border-bottom: 3px solid transparent; transition: color 0.2s ease, border-color 0.2s ease; }
.content-sub-nav a:hover { color: var(--text-primary); }
.content-sub-nav a.active { color: var(--text-primary); border-bottom-color: var(--fd-blue-accent); }

/* --- Giveaway Grid & Cards (Index Page) --- */
.giveaway-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.giveaway-card { background-color: var(--fd-bg-dark); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; border: 1px solid var(--fd-border); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.giveaway-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.3); }
.card-image img { width: 100%; height: 160px; object-fit: cover; display: block; }
.card-content { padding: 1.25rem; flex-grow: 1; }
.card-title { font-size: 1.1rem; font-weight: 600; line-height: 1.4; }
.card-status { padding: 0.75rem 1.25rem; background-color: var(--fd-bg-light); border-top: 1px solid var(--fd-border); font-size: 0.9rem; }
.winner-info, .timer-info { display: flex; align-items: center; gap: 0.75rem; }
.winner-info .fa-trophy { color: var(--winner-gold); } .winner-info strong { color: var(--winner-gold); }
.timer-info .fa-clock { color: var(--accent-green); } .timer-info strong { font-weight: 600; color: var(--accent-green); }
.no-giveaways-container { grid-column: 1 / -1; border: 1px dashed var(--fd-border); border-radius: 8px; padding: 3rem 1.5rem; text-align: center; }
.no-giveaways-container .fa-box-open { font-size: 3rem; margin-bottom: 1rem; color: var(--text-secondary); }
.no-giveaways-container h2 { font-size: 1.5rem; margin-bottom: 0.5rem; } .no-giveaways-container p { color: var(--text-secondary); }

/*
=====================================================
    REVISED: Single Giveaway Detail Page Styles
=====================================================
*/
.giveaway-single-page {
    max-width: 1200px;
    margin: 0 auto;
}

/* MODIFIED: Image is now smaller and has less margin */
.giveaway-hero {
    margin-bottom: 1.5rem; /* Reduced bottom margin for tighter spacing */
}

.giveaway-hero img {
    width: 53%;
    aspect-ratio: 16 / 9; /* Keeps the space reserved on desktop */
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* A grid to hold the details and the form side-by-side */
.giveaway-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1.25fr;
    gap: 2.5rem;
    align-items: start;
}

/* --- (The rest of your CSS remains the same) --- */

/* Left column with giveaway title and details */
.giveaway-details h1 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.giveaway-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Container for meta info like dates */
.giveaway-meta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--fd-bg-dark); /* Slightly darker for contrast */
    border: 1px solid var(--fd-border);
    border-radius: 8px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.meta-item i {
    font-size: 1.5rem;
    color: var(--fd-blue-accent);
    width: 30px;
    text-align: center;
}

.meta-item div {
    display: flex;
    flex-direction: column;
}

.meta-item strong {
    font-weight: 600;
    color: var(--text-primary);
}

.meta-item span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Right column with the entry form (refined) */
.entry-form-container {
    background-color: var(--fd-bg-dark);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--fd-border);
    position: sticky; 
    top: 1.5rem; 
    /* ADD THESE: This makes the container a flex column */
    display: flex;
    flex-direction: column;
}

/* ADD THIS NEW RULE for the form tag inside the container */
.entry-form-container form {
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* This makes the form itself fill the container's height */
}

/* ADD THIS NEW RULE for our spacer div */
.form-content-spacer {
    margin-top: auto; /* This is the magic! It pushes everything after it to the bottom. */
}

.entry-form-container h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem; /* Tighter spacing */
    text-align: left; /* Align to the left for a cleaner look */
}

.form-subheading {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group input {
    width: 100%;
    background-color: var(--fd-bg-light);
    border: 1px solid var(--fd-border);
    color: var(--text-primary);
    padding: 0.8rem 1rem;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s; /* Add smooth transition */
}
.form-group input:focus {
    outline: none;
    border-color: var(--fd-blue-accent);
    box-shadow: 0 0 0 3px rgba(21, 117, 224, 0.4);
}
.form-group input::placeholder { /* Style placeholder text */
    color: var(--text-secondary);
    opacity: 0.7;
}

.form-button {
    width: 100%;
    padding: 0.9rem; /* Slightly taller for better clickability */
    border: none;
    background-color: var(--fd-blue-accent);
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.form-button:hover { background-color: #3498db; }

/*
=====================================================
    NEW: Static Message Page Styles (Email Page)
=====================================================
*/
.static-content-box h1 { font-size: 1.8rem; font-weight: 600; border-bottom: 1px solid var(--fd-border); padding-bottom: 1rem; margin-bottom: 1.5rem; }
.message-body { color: var(--text-secondary); line-height: 1.8; }
.message-body p { margin-bottom: 1rem; } /* Style paragraphs inside the message */
.return-home-button { display: inline-block; margin-top: 2rem; background-color: var(--fd-blue-accent); color: var(--text-primary); padding: 0.6rem 1.5rem; border-radius: 6px; font-weight: 600; }
.return-home-button:hover { background-color: #3498db; }

/*
=====================================================
    NEW: Form Validation & Error Styling
=====================================================
*/
/* Style for an input field that has an error */
.form-group input.input-error {
    border-color: var(--danger-red);
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.4); /* Red glow */
}

/* The container for warning messages */
.form-warning {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    border-radius: 6px;
    margin-top: 0;
}

/* The "active" state when there are errors to show */
.form-warning.active {
    opacity: 1;
    max-height: 200px; /* Allow space for messages to appear */
    margin-top: 1rem;
    padding: 1rem;
    background-color: rgba(231, 76, 60, 0.15); /* A subtle, theme-friendly red */
    border: 1px solid var(--danger-red);
}

/* Style for each individual error message inside the box */
.form-warning p {
    color: var(--text-primary); /* Make text readable against the red bg */
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.form-warning p:last-child {
    margin-bottom: 0;
}

/*
=====================================================
    NEW: Mobile Navigation Styles
=====================================================
*/
/* The Hamburger Button itself */
.hamburger-button {
    display: none; /* Hidden by default */
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001; /* Must be on top */
}

/* The Mobile Navigation Panel */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background-color: var(--fd-bg-dark);
    z-index: 1000;
    padding: 1rem;
    border-left: 1px solid var(--fd-border);
    transform: translateX(100%); /* Start off-screen */
    transition: transform 0.3s ease-in-out;
}
.mobile-nav.open {
    transform: translateX(0); /* Slide into view */
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
}
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.5rem 1.5rem 0.5rem;
    border-bottom: 1px solid var(--fd-border);
}
.mobile-nav-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
}
.close-button {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
}
.close-button:hover {
    color: var(--text-primary);
}
.mobile-nav-links ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}
.mobile-nav-links li a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0.5rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1rem;
}
.mobile-nav-links li a:hover {
    background-color: var(--fd-bg-med);
}
.mobile-nav-links li a i {
    width: 25px;
    color: var(--fd-blue-accent);
}
.mobile-nav-divider {
    border: none;
    border-top: 1px solid var(--fd-border);
    margin: 1.5rem 0;
}
/* Ensure auth buttons in mobile menu fill width */
.mobile-nav-links .nav-button {
    width: 100%;
    margin-bottom: 0.75rem;
}

.mobile-nav-section-header {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem; /* Add some space above the header */
}

/* This will color the icon in the new header */
.mobile-nav-section-header i {
    color: var(--text-secondary);
}

/* Dark Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Prevent body scroll when menu is open */
.body-no-scroll {
    overflow: hidden;
}


/*
=====================================================
    Responsive Design
=====================================================
*/
@media (max-width: 1024px) {
    .site-container { grid-template-columns: 1fr; }
    .sidebar { display: none; }
    .main-content { padding: 1.5rem; }
    
    /* Make single giveaway page stack on tablets */
    .giveaway-content-wrapper {
        grid-template-columns: 1fr; /* Stack columns */
        gap: 2rem;
    }
    .entry-form-container {
        position: static; /* Un-stick the form on smaller screens */
        top: auto;
    }

    .giveaway-hero img {
        width: 100%; /* Make the image full-width on tablet/mobile */
        max-height: 300px; /* Optional but recommended: prevent image from being excessively tall on tablets */
        aspect-ratio: auto; /* Let the browser determine the aspect ratio based on width and max-height */
    }

    .site-container { grid-template-columns: 1fr; }
    .sidebar { display: none; }
    .main-content { padding: 1.5rem; }

    /* ADD these rules to show hamburger and hide desktop actions */
    .hamburger-button {
        display: block; /* Show the hamburger */
        position: relative; /* z-index only works on positioned elements */
        z-index: 1002;      /* Make it the topmost item in the header */
    }
    .nav-actions {
        display: none; /* Hide the desktop "Log In" / "Sign Up" */
    }    

    .body-no-scroll .hamburger-button {
        opacity: 0;
        pointer-events: none; /* Prevents clicking the invisible button */
        transition: opacity 0.2s ease;
    }
}
@media (max-width: 768px) {
    .top-header { padding: 0 1rem; }
    .nav-logo span { display: none; }
    .nav-logo { font-size: 1.1rem; }
    .nav-button { padding: 0.4rem 0.8rem; font-size: 0.85rem; }
    .site-container { padding: 0; gap: 0; }
    .main-content { padding: 1rem; border-radius: 0; }
    .content-header h1 { font-size: 1.5rem; }
    .giveaway-grid { grid-template-columns: 1fr; }
    
    /* Responsive styles for the new layout */
    .giveaway-details h1 { font-size: 1.8rem; }
    .entry-form-container { padding: 1.5rem; }
    .giveaway-content-wrapper { gap: 1.5rem; }
}

/* Category Grid Styles */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.category-card {
    background-color: var(--fd-bg-dark);
    border: 1px solid var(--fd-border);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-color: var(--fd-blue-accent);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--fd-blue-accent);
    margin-bottom: 1rem;
}

.card-content {
    width: 100%;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.card-value {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.value-amount {
    font-weight: 600;
    color: var(--accent-green);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: var(--text-primary);
}

.back-link i {
    font-size: 0.9rem;
}

.no-categories-container {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background-color: var(--fd-bg-dark);
    border: 1px solid var(--fd-border);
    border-radius: 8px;
}

.no-categories-container i {
    font-size: 3rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.no-categories-container h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.no-categories-container p {
    color: var(--text-secondary);
}

/* --- Info Sections (How To Play & Why FreeCardDraw) --- */
.info-section {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--fd-bg-dark);
    border: 1px solid var(--fd-border);
    border-radius: 8px;
}

.info-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    border-bottom: 2px solid var(--fd-blue-accent);
    padding-bottom: 0.5rem;
}

.info-content {
    color: var(--text-secondary);
}

/* How To Play Section */
.how-to-play .info-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.how-to-content h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.how-to-content p {
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.how-to-content .participation-note {
    background-color: var(--fd-bg-light);
    border: 1px solid var(--fd-blue-accent);
    border-radius: 6px;
    padding: 1rem;
    text-align: center;
    margin-top: 1rem;
}

.how-to-content .participation-note p {
    color: var(--text-primary);
    font-weight: 500;
    margin: 0;
}

/* Why FreeCardDraw Section */
.why-freecarddraw .info-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mission-statement h3,
.benefits h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.mission-statement p {
    line-height: 1.7;
    font-size: 1rem;
}

.benefits ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background-color: var(--fd-bg-med);
    border-radius: 6px;
    border: 1px solid var(--fd-border);
}

.benefits li::before {
    content: "✓";
    color: var(--accent-green);
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.benefits li strong {
    color: var(--text-primary);
}

.participation-note {
    background-color: var(--fd-bg-light);
    border: 1px solid var(--fd-blue-accent);
    border-radius: 6px;
    padding: 1rem;
    text-align: center;
    margin-top: 1rem;
}

.participation-note p {
    color: var(--text-primary);
    font-weight: 500;
    margin: 0;
}

/* Responsive Design for Info Sections */
@media (max-width: 768px) {
    .info-section {
        padding: 1.5rem;
    }
    
    .info-section h2 {
        font-size: 1.5rem;
    }
    
    .how-to-play .info-content {
        padding: 1rem;
    }
    
    .how-to-content h3 {
        font-size: 1.1rem;
    }
    
    .how-to-content p {
        font-size: 0.9rem;
    }
    
    .mission-statement h3,
    .benefits h3 {
        font-size: 1.1rem;
    }
    
    .mission-statement p {
        font-size: 0.9rem;
    }
    
    .benefits li {
        font-size: 0.9rem;
    }
}

/* --- Footer Styles --- */
.site-footer {
    background-color: var(--fd-bg-med);
    border-top: 1px solid var(--fd-border);
    margin-top: 3rem;
    padding: 2rem 1.5rem 1rem 1.5rem;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: var(--text-primary);
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-section p a {
    color: var(--fd-blue-accent);
    transition: color 0.2s ease;
}

.footer-section p a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 1rem;
    border-top: 1px solid var(--fd-border);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* --- Static Content Styles --- */
.static-content {
    line-height: 1.7;
    color: var(--text-secondary);
}

.static-content h2 {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.static-content h2:first-child {
    margin-top: 0;
}

.static-content h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.static-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.static-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.static-content ul li {
    margin-bottom: 0.5rem;
    position: relative;
}

.static-content ul li::before {
    content: "•";
    color: var(--fd-blue-accent);
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

.static-content a {
    color: var(--fd-blue-accent);
    transition: color 0.2s ease;
}

.static-content a:hover {
    color: #3498db;
}

.static-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.last-updated {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 0.5rem;
}

/* --- Mobile Responsive Footer --- */
@media (max-width: 768px) {
    .site-footer {
        padding: 1.5rem 1rem 1rem 1rem;
        margin-top: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-section ul li a,
    .footer-section p {
        font-size: 0.85rem;
    }
    
    .static-content h2 {
        font-size: 1.5rem;
    }
    
    .static-content h3 {
        font-size: 1.2rem;
    }
    
    .static-content p {
        font-size: 0.9rem;
    }
}