/*
Theme Name: Rolan
Theme URI: https://multi-ai.pro/
Author: Multi-AI Team
Author URI: https://multi-ai.pro/
Description: A custom WordPress theme for Multi-AI, designed for speed, clarity, and AI-based projects.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rolan
Tags: custom-theme, ai, responsive, lightweight, modern
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}
/* Minimal styles for boxes if not present in theme - consider moving to your theme's CSS */
.disclaimer-box, .takeaways-box, .verdict-box {
    border: 1px solid #ddd; padding: 30px; margin-bottom: 20px; border-left-width: 5px; border-left-style: solid; background-color: #f9f9f9;
}
.disclaimer-box { border-left-color: #f0ad4e; }
.takeaways-box { border-left-color: #5cb85c; }
.verdict-box { border-left-color: #337ab7; }
.author-info-meta { font-style: italic; color: #777; margin-bottom: 20px; }
.presale-list-item-card ul, .spotlight-item ul { list-style-type: disc; margin-left: 20px; }
.cta-button-link {
    display: inline-block; background-color: #5cb85c; color: white !important; padding: 10px 15px; text-decoration: none; border-radius: 5px; text-align: center; margin-top: 10px; font-weight: bold;
}
.cta-button-link:hover { background-color: #4cae4c; }
.comparison-table-styled { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.comparison-table-styled th, .comparison-table-styled td { border: 1px solid #ddd; padding: 8px; text-align: left; }
.comparison-table-styled th { background-color: #f2f2f2; }
.logo-placeholder-inline { width: 80px; height: 40px; background-color: #ccc; display: inline-block; text-align: center; line-height: 40px; color: #fff; font-size: 12px; margin-right: 10px; vertical-align: middle;}
.banner-placeholder-div { width: 100%; height: 200px; background-color: #ddd; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; margin-bottom: 15px;}
.author-profile-box, .why-trust-us-box { border-top: 1px solid #eee; padding-top: 20px; margin-top: 30px; }

/* Header Styles */
.header {
    background-color: #323334;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    height: 40px;
    width: auto;
}

.main-nav {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: #959695;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #dba440;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    background: white;
    padding: 40px 0;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #323334;
    margin-bottom: 30px;
    line-height: 1.2;
}

/* Author Bio */
.author-bio {
    background: #eee;
    border-radius: 10px;
    padding: 30px;
    margin: 30px 0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-info h3 {
    color: #323334;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.author-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.read-more-btn {
    background: none;
    border: 1px solid #ccc;
    padding: 5px 15px;
    border-radius: 5px;
    color: #666;
    cursor: pointer;
    font-size: 0.9rem;
}

.update-date {
    color: #999;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Content Description */
.content-description {
    margin: 30px 0;
    color: #666;
    line-height: 1.7;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.filter-tab {
    background: #40b175;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-tab:first-child {
    background: #2c5f47;
}

.filter-tab:not(:first-child) {
    background: #f0f0f0;
    color: #666;
}

.filter-tab:hover {
    transform: translateY(-2px);
}

/* Sportsbook Cards */
.sportsbook-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.sportsbook-card {
    background: white;
    border: 2px solid #dba440;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.sportsbook-card:first-child {
    border-color: #dba440;
    box-shadow: 0 4px 20px rgba(219, 164, 64, 0.2);
}

.card-number {
    background: #323334;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.sportsbook-logo {
    width: 120px;
    height: 60px;
    object-fit: contain;
    background: #c6cacf;
    padding: 10px;
    border-radius: 5px;
    flex-shrink: 0;
}

.sportsbook-info {
    flex: 1;
}

.sportsbook-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #323334;
    margin-bottom: 5px;
}

.bonus-features {
    list-style: none;
    margin: 10px 0;
}

.bonus-features li {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}

.bonus-features li:before {
    content: "✓";
    color: #40b175;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.card-date {
    color: #999;
    font-size: 0.8rem;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-number {
    font-weight: bold;
    color: #323334;
}

.stars {
    color: #dba440;
    font-size: 0.9rem;
}

.play-now-btn {
    background: #40b175;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.play-now-btn:hover {
    background: #359a63;
    transform: translateY(-2px);
}

/* Content Sections */
.content-section {
    background: white;
    border-radius: 10px;
    margin: 0!important;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #323334;
    margin-bottom: 20px;
}

.sportsbook-review {
    margin: 40px 0;
}

.review-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #323334;
    margin-bottom: 20px;
}

.review-image {
    width: 100%;
    max-width: 800px;
    margin: 20px 0;
    border-radius: 10px;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.comparison-table th {
    background: #f8f9fa;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #323334;
    border-bottom: 2px solid #dee2e6;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #dee2e6;
    color: #666;
}

.comparison-table tr:hover {
    background: #f8f9fa;
}

/* Pros and Cons Lists */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.pros, .cons {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #40b175;
}

.cons {
    border-left-color: #bc493b;
}

.pros h4, .cons h4 {
    color: #323334;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.pros ul, .cons ul {
    list-style: none;
}

.pros li, .cons li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    color: #666;
}

.pros li:before {
    content: "✓";
    color: #40b175;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.cons li:before {
    content: "✗";
    color: #bc493b;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* FAQ Section */
.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: #323334;
    margin-bottom: 10px;
}

.faq-answer {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background: #323334;
    color: #959695;
    padding: 40px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
}

.footer-links {
    text-align: right;
}

.footer-links h4 {
    color: #dba440;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #959695;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #dba440;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .main-nav {
        gap: 20px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .author-bio {
        flex-direction: column;
        text-align: center;
    }

    .sportsbook-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .sportsbook-logo {
        width: 100px;
        height: 50px;
    }

    .card-meta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .filter-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }

    .pros-cons {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .main-nav {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .filter-tab {
        padding: 6px 15px;
        font-size: 0.9rem;
    }

    .sportsbook-title {
        font-size: 1.1rem;
    }

    .content-section {
        padding: 20px 15px;
        margin: 20px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .review-title {
        font-size: 1.2rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .play-now-btn,
    .filter-tabs {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .sportsbook-card {
        border: 1px solid #ccc;
        page-break-inside: avoid;
    }
}
.sportsbook-review.spotlight-item {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    margin-bottom: 40px;
    font-family: Arial, sans-serif;
    color: #333;
  }
  
  .review-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #222;
  }
  
  .banner-placeholder-div {
    width: 100%;
    height: 200px;
    background-color: #bbb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    border-radius: 4px;
    margin-bottom: 20px;
  }
  
  .sportsbook-review ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
  }
  
  .sportsbook-review a {
    color: #1a73e8!important;
    text-decoration: none;
  }
  
  .sportsbook-review a:hover {
    text-decoration: underline;
  }
  
  .cta-button-link {
    display: inline-block;
    background-color: #5cb85c;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 15px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .cta-button-link:hover {
    background-color: #4cae4c;
  }
.banner-placeholder-div {
    overflow: hidden;
	height:400px;
}
.banner-placeholder-div img {
    object-fit: cover;
    height: 400px;
    width: 100%;
}
a.cta-button-link {
    color: white!important;
}
body {
    background-color: #ffffff;
}
  