/* =========================================================
   Bulbmeister.com — Shared Stylesheet
   Covers: index.html, contact.html, testimonials.html,
           tips.html, and error pages (400–500)
   ========================================================= */

/* ----- Reset ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ----- Restore browser defaults wiped by reset ----- */
ul, ol {
    padding-left: 2em;
}

ul {
    list-style-type: disc;
}

ol {
    list-style-type: decimal;
}

p {
    margin-bottom: 1em;
}

p:last-child {
    margin-bottom: 0;
}

/* ----- Base ----- */
body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #2d3748;
    background: url('https://www.bulbmeister.com/images/image_side4.jpg') repeat;
    background-attachment: fixed;
}

.site-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(247, 250, 252, 0.95) 0%, rgba(237, 242, 247, 0.95) 100%);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ----- Header ----- */
header {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c29 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-section {
    flex: 1;
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.1rem;
    opacity: 0.9;
    font-style: italic;
}

.search-section {
    padding: 0 1rem;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-box label {
    font-size: 0.9rem;
    font-weight: bold;
}

.search-box input {
    padding: 0.3rem 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.9rem;
}

.search-box button {
    padding: 0.3rem 0.8rem;
    background: #4a7c29;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
}

.search-box button:hover {
    background: #2d5016;
}

/* ----- Desktop Navigation ----- */
nav {
    background: rgba(45, 80, 22, 0.95);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    width: 100%;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ----- Hamburger Button ----- */
.hamburger-menu {
    display: none;
    background: rgba(45, 80, 22, 0.95);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.6rem;
    z-index: 1001;
    position: fixed;
    top: 12px;
    right: 12px;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.hamburger-menu:hover {
    background: rgba(45, 80, 22, 1);
    transform: scale(1.05);
}

/* ----- Mobile Sidebar Menu ----- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c29 100%);
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
}

.mobile-menu.open {
    left: 0;
}

.mobile-menu-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-logo {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.close-menu {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.close-menu:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.mobile-nav-links {
    padding: 1rem 0;
}

.mobile-nav-links a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    transition: background 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-links a.active {
    background: rgba(255, 255, 255, 0.2);
    border-left: 4px solid white;
}

/* ----- Menu Overlay ----- */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ----- Interior Page Header (contact, tips, testimonials) ----- */
.page-header {
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    color: #2d5016;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.page-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ----- Main Content Area ----- */
.content {
    padding: 4rem 0;
    background: white;
}

/* ----- Floating Facebook Like Button ----- */
.facebook-like-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

/* ----- Footer ----- */
footer {
    background: #2d5016;
    color: white;
    padding: 3rem 0 1rem;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p {
    margin-bottom: 0.3rem;
}

.footer-section a {
    color: #a0d468;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #4a7c29;
    padding-top: 1rem;
    margin-top: 2rem;
}

/* ----- Responsive: Tablet ----- */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex !important;
    }

    nav {
        display: none;
    }

    .header-content {
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }

    .search-box {
        flex-direction: row;
        gap: 0.3rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .search-box input {
        min-width: 120px;
        flex: 1;
    }

    .logo {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 0.95rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .facebook-like-float {
        position: relative;
        bottom: auto;
        left: auto;
        margin: 1rem auto;
        display: block;
        width: fit-content;
    }

    .site-wrapper {
        max-width: none;
        box-shadow: none;
    }
}

/* ----- Responsive: Mobile ----- */
@media (max-width: 480px) {
    .logo {
        font-size: 1.6rem;
    }

    .tagline {
        font-size: 0.85rem;
    }
}

/* =============================================================
   index.html — Home Page
   ============================================================= */

.hero {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9));
    clear: both;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin: 2rem 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2d5016;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features {
    padding: 4rem 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.feature-card.compact {
    padding: 1.5rem;
    min-height: auto;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #2d5016;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card.compact h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.feature-card.compact p {
    font-size: 0.95rem;
    line-height: 1.4;
}

.feature-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
}

.specialty {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
}

.content-with-facebook {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.facebook-feed {
    min-width: 320px;
}

.main-content {
    flex: 1;
}

.specialty-text h3 {
    color: #2d5016;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.specialty-text p {
    font-size: 1.1rem;
    color: #4a5568;
}

.highlight {
    background: linear-gradient(120deg, #4a7c29 0%, #2d5016 100%);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    font-weight: bold;
}

.nursery-fresh-card {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.testimonials-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.testimonials-section h3 {
    color: #2d5016;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.testimonial {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 10px;
    border-left: 4px solid #4a7c29;
}

.testimonial:last-child {
    margin-bottom: 0;
}

.testimonial-quote {
    font-style: italic;
    font-size: 1.05rem;
    color: #2d3748;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: bold;
    color: #2d5016;
    font-size: 0.95rem;
}

/* =============================================================
   contact.html — Contact Page
   ============================================================= */

.contact-intro {
    text-align: center;
    background: #f7fafc;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border-left: 5px solid #4a7c29;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.contact-card.preferred {
    border-left: 5px solid #4a7c29;
    background: #f0fff4;
}

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

.contact-card h3 {
    color: #2d5016;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-icon {
    font-size: 1.8rem;
}

.preferred-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: #4a7c29;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.contact-details {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-details strong {
    color: #2d5016;
}

.important-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.contact-button {
    display: inline-block;
    background: linear-gradient(135deg, #4a7c29 0%, #2d5016 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74,124,41,0.3);
}

.address-section {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c29 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
}

.address-section h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.address {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.response-guarantee {
    background: #e6fffa;
    border: 2px solid #4a7c29;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
}

.response-guarantee h3 {
    color: #2d5016;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

/* =============================================================
   testimonials.html — Testimonials Page
   ============================================================= */

.testimonials-intro {
    text-align: center;
    background: #f7fafc;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border-left: 5px solid #4a7c29;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.testimonial-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.testimonial-card.featured {
    border-left: 5px solid #4a7c29;
    background: #f0fff4;
}

.quote-icon {
    font-size: 3rem;
    color: #4a7c29;
    opacity: 0.3;
    position: absolute;
    top: 15px;
    left: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    margin: 2rem 0 1.5rem 0;
    color: #2d3748;
    position: relative;
    z-index: 1;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
}

.customer-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4a7c29 0%, #2d5016 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.customer-details {
    flex: 1;
}

.customer-name {
    font-weight: bold;
    color: #2d5016;
    font-size: 1.1rem;
}

.customer-location {
    color: #666;
    font-size: 0.95rem;
}

.quality-highlights {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c29 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
}

.quality-highlights h3 {
    color: white;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-item {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.highlight-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.cta-section {
    background: #e6fffa;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #4a7c29 0%, #2d5016 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74,124,41,0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74,124,41,0.4);
}

/* =============================================================
   tips.html — Growing Guide Page
   ============================================================= */

.guide-intro {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border-left: 5px solid #4a7c29;
}

.guide-intro h2 {
    color: #2d5016;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.guide-intro p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.quick-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.tip-card {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

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

.tip-card h3 {
    color: #2d5016;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tip-icon {
    font-size: 1.8rem;
}

.detailed-sections {
    margin: 4rem 0;
}

.detailed-guides {
    margin: 3rem 0;
}

.section {
    margin: 3rem 0;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 10px;
}

.section h3 {
    color: #2d5016;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #4a7c29;
    padding-bottom: 0.5rem;
}

.section h4 {
    color: #4a7c29;
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem 0;
}

.section p,
.section li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.blog-link {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c29 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
}

.blog-link h3 {
    color: white;
    margin-bottom: 1rem;
}

.blog-link a {
    color: #a0d468;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
}

.blog-link a:hover {
    color: white;
}

/* =============================================================
   Error Pages (400 / 401 / 403 / 404 / 500)
   ============================================================= */

.error-section {
    padding: 5rem 0;
    text-align: center;
}

.error-code {
    font-size: 6rem;
    font-weight: bold;
    color: #4a7c29;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.error-title {
    font-size: 2rem;
    color: #2d5016;
    margin: 1rem 0;
}

.error-message {
    font-size: 1.15rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.error-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.nav-links-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem auto;
    max-width: 700px;
}

.nav-links-grid a {
    display: inline-block;
    background: linear-gradient(135deg, #4a7c29 0%, #2d5016 100%);
    color: white;
    text-decoration: none;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(74,124,41,0.25);
}

.nav-links-grid a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(74,124,41,0.35);
}

.debug-info {
    margin: 2.5rem auto 0;
    max-width: 650px;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-size: 0.8rem;
    color: #718096;
    font-family: monospace;
}

.debug-info p {
    margin-bottom: 0.3rem;
}

/* =============================================================
   Additional Responsive Overrides
   ============================================================= */

@media (max-width: 1024px) {
    .content-with-facebook {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .facebook-feed {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero { padding: 2rem 0; }
    .hero h1 { font-size: 1.8rem; margin-bottom: 0.8rem; }
    .hero p { font-size: 1rem; margin-bottom: 1.5rem; }
    .specialty { padding: 2rem 0; }
    .section-title { font-size: 2rem; }
    .section-subtitle { font-size: 1.1rem; }
    .specialty-content { grid-template-columns: 1fr; }
    .contact-methods { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .highlights-grid { grid-template-columns: 1fr; }
    .error-code { font-size: 4rem; }
    .error-title { font-size: 1.5rem; }
}

/* =============================================================
   Ad Block Banner (index.html only)
   ============================================================= */

#adblock-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ff6b6b;
    color: white;
    padding: 25px 30px;
    text-align: center;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border-radius: 8px;
    max-width: 500px;
    display: none;
}

#adblock-banner p {
    margin: 0 0 15px 0;
    font-size: 16px;
    line-height: 1.5;
}

#adblock-banner button {
    background-color: white;
    color: #ff6b6b;
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
}

#adblock-banner button:hover {
    background-color: #f0f0f0;
}

#adblock-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 9998;
    display: none;
}
