:root {
    --primary-color: #2c3e50;
    --secondary-color: #27ae60;
    --background-color: #f9fafb;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    background-color: var(--background-color);
}

header {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 2rem 1rem;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.intro {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.source-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.source-badge.reddit {
    background-color: #ff4500;
    color: white;
}

.source-badge.tiktok {
    background-color: #000000;
    color: white;
}

.review-card .name {
    margin-right: 4rem;
    color: var(--primary-color);
    font-weight: bold;
}

.review-card .rating {
    color: #f39c12;
    margin: 0.5rem 0;
}

.loading {
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: var(--primary-color);
    color: white;
    margin-top: 3rem;
}

.footer-nav {
    margin-bottom: 2rem;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-nav a:hover {
    opacity: 1;
}

.verified-badge {
    color: #3498db;
    margin-left: 0.5rem;
}

.platform-stats {
    margin: 1rem 0;
    display: flex;
    gap: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.platform-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.review-text {
    white-space: pre-line;
}

.reviews-section {
    margin-bottom: 4rem;
}

.reviews-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
}

.no-reviews {
    text-align: center;
    color: #666;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.last-checked {
    font-size: 0.9rem;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.page-content {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.page-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.page-content h2 {
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.page-content h2:first-child {
    margin-top: 0;
}

.faq-section {
    margin-top: 4rem;
    padding: 2rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.faq-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2rem;
    padding: 0 1rem;
}

.faq-grid {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
}

.product-recommendations {
    margin-top: 2rem;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.product-recommendations h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    text-decoration: none;
    color: var(--primary-color);
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card.highlight {
    border: 3px solid #ff0000;
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.2);
    transform: scale(1.15);
    position: relative;
    z-index: 2;
    margin: 1rem;
}

.product-card.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 0, 0, 0.05);
    border-radius: 10px;
    z-index: -1;
}

.product-winner-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ff4500, #ff6b6b);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(255, 69, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 3;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

.product-winner-badge i {
    color: #ffd700;
    animation: rotate 2s infinite;
}

.product-card.highlight .cta-button {
    background: #ff0000; /* Bright red button */
}

.product-card.highlight .cta-button:hover {
    background: #cc0000; /* Darker bright red on hover */
}

.product-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    max-width: 300px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.product-card h3 {
    margin: 0.5rem 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.product-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.cta-button {
    background: #ff0000;  /* Bright red */
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.2s;
}

.cta-button:hover {
    background: #cc0000;  /* Darker bright red on hover */
}

.affiliate-disclaimer {
    margin-top: 1rem;
    font-size: 0.8rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.affiliate-disclaimer a {
    color: white;
    text-decoration: underline;
}

.legal-disclaimer {
    margin-top: 1rem;
    font-size: 0.8rem;
    opacity: 0.8;
    max-width: 800px;
    margin-left: auto;radient(45deg, #ff6b6b, #ff0000);
    margin-right: auto;
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.winner-badge {0.3);
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b6b;   border: 2px solid white;
    color: white;    animation: pulse 2s infinite;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;winner-badge i {
    font-weight: bold;    color: #ffd700;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);;
    display: flex;ite;
    align-items: center;
    gap: 0.3rem;
    z-index: 1;.review-card.winner {
}00;
 1.5rem;
.winner-badge i {
    color: #ffd700;ox-shadow: 0 8px 16px rgba(255, 0, 0, 0.15);
}

.review-card.winner {
    border: 2px solid #ff6b6b; translateX(-50%) scale(1); }
    margin-top: 1rem;%) scale(1.05); }
}00% { transform: translateX(-50%) scale(1); }
}
@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);te(0); }
    }5% { transform: rotate(-15deg); }
}   75% { transform: rotate(15deg); }
    100% { transform: rotate(0); }











}    }        max-width: 100%;        height: 180px;    .product-image {    }        grid-template-columns: 1fr;    .product-grid {@media (max-width: 768px) {}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .product-image {
        height: 180px;
        max-width: 100%;
    }
}
