/* Direct Response Theme (Mimicking FlixyTVStick) */
:root {
    --primary-green: #00B633;
    --primary-green-hover: #009e2c;
    --text-black: #111111;
    --text-grey: #444444;
    --bg-light: #f4f6f8;
    --border-color: #e1e4e8;
    --white: #ffffff;
    --alert-red: #cc0000;
}

body {
    font-family: 'Inter', sans-serif;
    /* Clean Sans Serif */
    color: var(--text-grey);
    background-color: var(--white);
    line-height: 1.6;
    margin: 0;
}

h1,
h2,
h3,
h4 {
    color: var(--text-black);
    font-weight: 800;
    /* Extra bold headings */
    line-height: 1.2;
    margin-bottom: 0.8em;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Announcement Bar */
.announcement-bar {
    background: var(--text-black);
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.announcement-bar strong {
    color: #ffeb3b;
}

/* Header */
.site-header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--text-black);
    display: flex;
    align-items: center;
}

.logo-icon {
    color: var(--primary-green);
    margin-right: 5px;
}

.header-slogan {
    font-weight: 600;
    color: var(--text-black);
    font-size: 1rem;
    display: none;
    /* Hidden on mobile */
}

@media (min-width: 768px) {
    .header-slogan {
        display: block;
    }
}

/* Layout Grid */
.main-layout {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.content-column {
    flex: 2;
}

.sidebar-column {
    flex: 1;
    display: none;
    /* Default hidden on small screens */
}

@media (min-width: 992px) {
    .sidebar-column {
        display: block;
    }
}

/* Content Styles */
.breadcrumb {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.main-headline {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.author-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.author-meta {
    display: flex;
    align-items: center;
}

.author-meta img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.article-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.25rem !important;
    color: var(--text-black);
}

/* Hero Image */
.hero-image {
    margin-bottom: 30px;
}

.hero-image img {
    max-height: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

figcaption {
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    margin-top: 8px;
    font-style: italic;
}

.content-img {
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Comparison Table */
.comparison-table {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    margin: 30px 0;
    font-family: 'Inter', sans-serif;
}

.comparison-table .row {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

.comparison-table .header-row {
    background: #f9fafb;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.comparison-table .col {
    flex: 1;
    text-align: center;
}

.comparison-table .feature {
    text-align: left;
    font-weight: 600;
    flex: 1.5;
    /* More space for label */
}

.comparison-table .us {
    color: var(--primary-green);
    font-weight: 700;
    background: rgba(0, 182, 51, 0.05);
    /* Subtle green tint */
    padding: 10px 0;
    border-radius: 4px;
}

/* Buttons */
.btn-green {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
    background-color: var(--primary-green);
    color: white;
    text-align: center;
    padding: 18px 20px;
    font-size: 1.1rem;
    font-weight: 900;
    border-radius: 5px;
    border-bottom: 4px solid #008f28;
    /* 3D effect */
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(0, 182, 51, 0.2);
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-green:hover {
    transform: translateY(-2px);
    background-color: var(--primary-green-hover);
    box-shadow: 0 15px 30px rgba(0, 182, 51, 0.3);
}

.btn-green-small {
    display: block;
    background: var(--primary-green);
    color: white;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    font-weight: 700;
    margin-top: 10px;
}

/* Sticky Sidebar */
.sticky-wrapper {
    position: sticky;
    top: 90px;
    /* Below header */
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.sidebar-header {
    border-bottom: 2px solid var(--primary-green);
    padding-bottom: 10px;
    margin-bottom: 15px;
    text-align: center;
}

.sidebar-header h4 {
    margin: 0;
    font-size: 1.1rem;
}

.rating-summary {
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 5px;
}

.side-review-item {
    background: #f9f9f9;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.side-review-item .head {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    margin-bottom: 5px;
}

.side-review-item .ver {
    color: var(--primary-green);
    font-size: 0.75rem;
}

.side-review-item p {
    margin: 5px 0 0;
    font-style: italic;
}

.sidebar-cta {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

/* Reviews Bottom */
.bottom-reviews {
    margin-top: 50px;
    background: #fafafa;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.review-grid {
    display: flex;
    /* Simplified grid */
    gap: 20px;
    flex-wrap: wrap;
}

.review-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Footer (Offer) */
footer {
    background: #111;
    color: white;
    padding: 50px 0;
    margin-top: 50px;
    text-align: center;
}

.footer-cta-box {
    background: white;
    color: black;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.footer-legal p {
    font-size: 0.8rem;
    color: #777;
}

.footer-legal .links a {
    color: #999;
    margin: 0 10px;
    font-size: 0.85rem;
}

/* Misc */
.blink-text {
    color: var(--alert-red);
    font-weight: 700;
    animation: blink 2s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.benefits-list li {
    background: #f9f9f9;
    padding: 15px;
    margin-bottom: 12px;
    border-radius: 6px;
    border-left: 4px solid var(--primary-green);
    font-size: 1rem;
}

/* Steps Detailed */
.steps-detailed {
    margin: 30px 0;
}

.step-item {
    background: white;
    border: 2px solid var(--border-color);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
}

.step-item h3 {
    color: var(--primary-green);
    margin-bottom: 10px;
}

/* FAQ */
.faq-list {
    margin: 30px 0;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background: #f9f9f9;
    padding: 18px;
    margin: 0;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
}

/* Warning Box */
.warning-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 25px;
    margin: 40px 0;
}

.warning-box h3 {
    color: #856404;
    margin-top: 0;
}

.warning-box p {
    color: #856404;
    font-size: 1rem;
}

/* Testimonials */
.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.testimonial-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-green);
}

.testimonial-card p {
    font-style: italic;
    font-size: 1rem;
    margin: 15px 0;
    line-height: 1.7;
}

.testimonial-card .reviewer {
    font-weight: 700;
    color: var(--text-black);
    font-size: 0.95rem;
}

.subheadline {
    font-size: 1.15rem;
    color: var(--text-grey);
    margin-bottom: 20px;
}

.cta-inline {
    text-align: center;
    margin: 30px 0;
}