@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }
:root { --header-bg: #2c3e50; --bg-dark-primary: #34495e; --bg-dark-secondary: #2c3e50; --text-light: #ecf0f1; --text-muted: #bdc3c7; --accent-primary: #3498db; --accent-hover: #2980b9; --border-color: #34495e; --font-main: 'Lato', sans-serif; --container-width: 1140px; }
body { font-family: var(--font-main); background-color: var(--bg-dark-primary); color: var(--text-light); line-height: 1.6; font-size: 16px; }
a { text-decoration: none; color: var(--accent-primary); transition: color 0.3s ease; }
a:hover { color: var(--accent-hover); }
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 15px; }
img { max-width: 100%; height: auto; }
h1, h2, h3, h4 { line-height: 1.2; margin-bottom: 15px; font-weight: 900; }
h1 { font-size: 2.5rem; } h2 { font-size: 2rem; } h3 { font-size: 1.5rem; }
.header { background-color: var(--header-bg); padding: 1rem 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo a { font-size: 1.8rem; font-weight: 900; color: #ffffff; }
.main-nav > ul { list-style: none; display: flex; }
.main-nav li { position: relative; margin-left: 25px; }
.main-nav a { color: #ffffff; padding: 10px 15px; display: block; font-weight: 700; }
.main-nav ul ul { display: none; position: absolute; background-color: #222e3a; border: 1px solid var(--border-color); list-style: none; padding: 10px 0; border-radius: 5px; min-width: 200px; box-shadow: 0 5px 10px rgba(0,0,0,0.2); }
.main-nav li:hover > ul { display: block; }
.main-nav ul ul li a { padding: 8px 15px; white-space: nowrap; }
.main-nav ul ul li a:hover { background-color: var(--accent-primary); }
.menu-toggle { display: none; cursor: pointer; }
.menu-toggle .bar { display: block; width: 25px; height: 3px; margin: 5px auto; transition: all 0.3s ease-in-out; background-color: #ffffff; }
.secondary-nav { background-color: #222e3a; border-bottom: 1px solid var(--border-color); padding: 0.75rem 0; }
.secondary-nav ul { list-style: none; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; }
.secondary-nav li { margin: 0 15px; }
.secondary-nav a { color: #ffffff; font-weight: 700; font-size: 0.9rem; }
.page-wrapper {
    padding: 40px 0;
    margin-top: 2rem; /* Add space below the header/menu */
}
.main-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.page-intro { margin-bottom: 30px; border-bottom: 1px solid var(--border-color); padding-bottom: 20px; }
.page-intro p { font-size: 1.1rem; color: var(--text-muted); }
.advertiser-disclosure { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 20px; padding: 10px; background-color: var(--bg-dark-secondary); border-radius: 5px; border: 1px solid var(--border-color); }
.top-offers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-bottom: 40px; }
.top-offer-card { background-color: var(--bg-dark-secondary); border: 1px solid var(--border-color); border-radius: 8px; padding: 20px; text-align: center; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.top-offer-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.top-offer-card img { max-height: 50px; margin-bottom: 15px; }
.top-offer-card .offer-title { font-weight: 700; color: var(--text-light); margin-bottom: 15px; }
.btn, .btn-claim, .btn-review { display: inline-block; padding: 10px 25px; background-color: var(--accent-primary); color: #ffffff; border-radius: 5px; font-weight: 700; text-align: center; transition: background-color 0.3s ease; }
.btn:hover, .btn-claim:hover, .btn-review:hover { background-color: var(--accent-hover); color: #ffffff; }
.offers-list .offer-card { background-color: var(--bg-dark-secondary); border: 1px solid var(--border-color); border-radius: 8px; margin-bottom: 20px; display: flex; align-items: center; padding: 20px; transition: background-color 0.2s ease; }
.offers-list .offer-card:hover { background-color: #3a506b; }
.offer-card .offer-logo { width: 100px; margin-right: 20px; flex-shrink: 0; }
.offer-card .offer-logo img { border-radius: 5px; }
.offer-card .offer-details { flex-grow: 1; }
.offer-card .offer-details h3 { font-size: 1.2rem; margin-bottom: 5px; }
.offer-card .offer-details h3 a { color: var(--text-light); }
.offer-card .offer-description p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }
.offer-card .offer-cta { margin-left: 20px; text-align: center; }
.offer-card .btn-claim { display: block; width: 150px; }
.offer-card .btn-review { background: none; color: var(--text-muted); font-size: 0.8rem; padding: 5px 0; display: block; margin-top: 5px; }
.offer-card .btn-review:hover { color: var(--text-light); }
.sidebar-widget { background-color: var(--bg-dark-secondary); padding: 20px; border-radius: 8px; margin-bottom: 30px; border: 1px solid var(--border-color); }
.sidebar-widget h3 { font-size: 1.2rem; border-bottom: 1px solid var(--border-color); padding-bottom: 10px; margin-bottom: 15px; }
.sidebar-widget ul { list-style: none; }
.sidebar-widget ul li { border-bottom: 1px solid #3a506b; }
.sidebar-widget ul li:last-child { border-bottom: none; }
.sidebar-widget ul li a { display: flex; align-items: center; padding: 10px 5px; color: var(--text-muted); }
.sidebar-widget ul li a:hover { background-color: #3a506b; color: var(--text-light); }
.sidebar-widget ul li img { width: 30px; margin-right: 10px; }
.info-section, .faq-section { background-color: var(--bg-dark-secondary); padding: 30px; border-radius: 8px; margin-top: 40px; border: 1px solid var(--border-color); }
.info-section ul { list-style-position: inside; padding-left: 10px; }
.info-section li { margin-bottom: 10px; }
.footer { background-color: #222222; padding: 30px 0; margin-top: 40px; border-top: 2px solid var(--header-bg); color: #aaaaaa; }
.footer-content { display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; }
.footer-links ul { list-style: none; display: flex; }
.footer-links li { margin-left: 20px; }
.footer-links a { color: #aaaaaa; }
.footer-links a:hover { color: #ffffff; }
@media (max-width: 992px) { .main-layout { grid-template-columns: 1fr; } }
@media (max-width: 768px) { h1 { font-size: 2rem; } h2 { font-size: 1.75rem; } .menu-toggle { display: block; } .main-nav { position: absolute; top: 100%; left: 0; width: 100%; background-color: var(--header-bg); max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; } .main-nav.active { max-height: 500px; } .main-nav > ul { flex-direction: column; } .main-nav li { margin-left: 0; text-align: center; } .main-nav ul ul { position: static; display: block; min-width: 100%; background-color: #222e3a; border: none; box-shadow: none; padding: 0; } .main-nav li:hover > ul { display: block; } .offers-list .offer-card { flex-direction: column; align-items: flex-start; } .offer-card .offer-logo { margin-right: 0; margin-bottom: 15px; } .offer-card .offer-cta { margin-left: 0; margin-top: 15px; width: 100%; } .offer-card .btn-claim { width: 100%; } .footer-content { flex-direction: column; text-align: center; } .footer-links ul { margin-top: 15px; flex-direction: column; } .footer-links li { margin: 5px 0; } }
/* Guides Page */
.guides-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guide-item {
    background-color: var(--card-bg-color);
    padding: 25px;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid var(--border-color);
}

.guide-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.guide-item h3 {
    margin-top: 0;
    color: var(--primary-accent-color);
}

.guide-item p {
    margin-bottom: 15px;
}

.guide-item span {
    font-weight: 700;
    color: var(--primary-accent-color);
}
.review-page-layout { display: flex; flex-wrap: wrap; gap: 40px; }
.review-content { flex: 3; min-width: 60%; }
.review-toc { margin-bottom: 20px; }
.review-toc ul { list-style: none; }
.review-toc a { padding: 5px; display: block; }
.pros-cons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-cons-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Align icon and text */
}

.pros-cons-list li::before {
    font-family: 'Arial';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1; /* Ensure icon is centered with text line */
}

.pros-cons-list li.pro::before {
    content: '\\2713'; /* Checkmark */
    color: #28a745; /* Green */
}

.pros-cons-list li.con::before {
    content: '\\2717'; /* Cross */
    color: #dc3545; /* Red */
}
.review-summary-box {
    background: var(--bg-dark-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    gap: 25px; /* Increase gap for better spacing */
    padding: 25px; /* Increase padding */
    margin-bottom: 30px;
    align-items: center; /* Vertically align items in the box */
}
.review-summary-box .summary-logo img { max-width: 120px; }
.review-summary-box .summary-rating {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffc107; /* Gold color for stars */
} 

/* Main Navigation Dropdown */
.main-nav ul li {
    position: relative;
}

.main-nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #3e5062; /* Slightly lighter than header bg */
    border-radius: 0 0 5px 5px;
    padding: 10px 0;
    list-style: none;
    min-width: 200px;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.main-nav ul li:hover > ul {
    display: block;
}

.main-nav ul li ul li {
    width: 100%;
}

.main-nav ul li ul li a {
    padding: 10px 20px;
    display: block;
    white-space: nowrap;
    color: #fff;
    font-weight: normal;
}

.main-nav ul li ul li a:hover {
    background-color: #4a6075;
    text-decoration: none;
} 

/* Styling for generic content lists in reviews */
.review-section ul {
    list-style: none; /* Remove default bullets */
    padding-left: 0;
}

.review-section ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
}

.review-section ul li::before {
    content: '\\2022'; /* Styled bullet point */
    color: var(--accent-primary);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1.2em; /* Adjust position */
    font-size: 1.4em;
    line-height: 0.8;
} 