:root {
    --primary-color: #0066FF;
    /* Electric Blue */
    --primary-hover: #0052CC;
    --secondary-color: #00D1FF;
    --background-color: #F8F9FA;
    --card-bg: #FFFFFF;
    --text-main: #1A1A1A;
    --text-muted: #666666;
    --star-color: #FFD700;
    --star-dimmed: #E0E0E0;
    --vibrant-green: #22C55E;
    --vibrant-green-hover: #16A34A;
    --border-color: #EEEEEE;
    --transition-speed: 0.3s;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header & Nav */
.header {
    background: #FFF;
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-main);
}

.logo span {
    color: var(--primary-color);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition-speed);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-color);
}

/* Marquee */
.ticker-wrapper {
    background: #000;
    color: #FFF;
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 30s linear infinite;
}

.ticker-content {
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 0 40px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 24px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.hero .description {
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--text-muted);
}

.hero-badge {
    background: #FFF;
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
    font-size: 15px;
    color: var(--text-main);
}

/* Product Grid */
.grid-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 0;
}

.product-card {
    background: #FFF;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    display: grid;
    grid-template-columns: 100px 1.5fr 2fr 1fr 200px;
    align-items: center;
    gap: 30px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-logo {
    width: 80px;
    height: 80px;
    background: #F0F4F8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-color);
}

.product-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.product-description {
    font-size: 14px;
    color: var(--text-muted);
}

/* Ratings */
.stars {
    display: flex;
    gap: 4px;
    color: var(--star-color);
    font-size: 20px;
}

.star.dimmed {
    color: var(--star-dimmed);
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition-speed);
}

.btn-secondary {
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.btn-secondary:hover {
    background: var(--background-color);
    opacity: 0.8;
}

.btn-primary {
    background: var(--vibrant-green);
    color: #FFF;
}

.btn-primary:hover {
    background: var(--vibrant-green-hover);
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #FFF;
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
    margin-top: 60px;
}

.footer-links {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
}

.affiliate-disclosure {
    font-size: 12px;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 20px;
}

.copyright {
    font-size: 12px;
    color: var(--text-muted);
}

/* Blog & Static Styles */
.blog-post,
.static-content {
    background: #FFF;
    padding: 60px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    margin-top: 40px;
}

.blog-post h1,
.static-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.post-meta {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 40px;
}

.post-section {
    margin-bottom: 40px;
}

.post-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.post-section ul {
    padding-left: 20px;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.pros h3 {
    color: var(--vibrant-green);
    margin-bottom: 10px;
}

.cons h3 {
    color: #EF4444;
    margin-bottom: 10px;
}

.cta-box {
    text-align: center;
    padding: 40px;
    background: var(--background-color);
    border-radius: 12px;
    margin-top: 40px;
}

/* Mobile Responsive Updates */
@media (max-width: 992px) {
    .product-card {
        grid-template-columns: 80px 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .product-actions {
        grid-column: span 3;
        display: flex;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .pros-cons {
        grid-template-columns: 1fr;
    }

    .blog-post,
    .static-content {
        padding: 30px;
    }
}

@media (max-width: 600px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .product-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Feedback Section */
.feedback-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.feedback-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.feedback-content h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.feedback-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.rating-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 30px;
    color: var(--star-dimmed);
    cursor: pointer;
    transition: color 0.2s;
}

.star-rating label:hover,
.star-rating label:hover~label,
.star-rating input:checked~label {
    color: var(--star-color);
}

.rating-form textarea {
    width: 100%;
    min-height: 100px;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    resize: vertical;
}

.rating-form input[type="email"] {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
}

.rating-form button {
    cursor: pointer;
}