/*
Theme Name: Billy Bargain Deal Hunter
Author: Gemini AI
Description: High-performance, SEO-optimized theme for the UK's best deal hunter.
Version: 1.0
*/

:root {
    --billy-blue: #0056b3;
    --billy-red: #e63946;
    --billy-gold: #ffb703;
    --billy-dark: #1d3557;
    --billy-light: #f1faee;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--billy-dark);
    margin: 0;
    padding: 0;
}

.container { width: 90%; max-width: 1100px; margin: auto; }

header {
    background: white;
    border-bottom: 3px solid var(--billy-blue);
    padding: 1rem 0;
    text-align: center;
}

.deal-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    transition: transform 0.2s;
}

.deal-card:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

.button-billy {
    background: var(--billy-red);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}