
:root {
    --primary: #7b1fa2;
    --secondary: #4a148c;
    --accent: #9c27b0;
    --bg-light: #f8f9fa;
    --text-main: #333;
    --text-light: #666;
    --border: #e9ecef;
    --radius: 6px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: var(--text-main); background: #f9fafb; }
a { text-decoration: none; color: inherit; }
p { margin-bottom: 1.5em; }
h1, h2, h3, h4, h5, h6 { margin-top: 1.5em; margin-bottom: 0.5em; line-height: 1.2; }
ul, ol { margin-bottom: 1em; padding-left: 30px; margin-left: 0; }
li { margin-bottom: 0.2em; padding-left: 5px; }
li p { margin-bottom: 0.2em; margin-top: 0; }
li p:last-child { margin-bottom: 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.btn { display: inline-block; padding: 10px 20px; border-radius: var(--radius); font-weight: 600; text-align: center; cursor: pointer; transition: 0.2s; }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { opacity: 0.9; }
.btn-sm { padding: 8px 16px; font-size: 0.9em; }

/* Header - Boxed Layout */
.site-header { background: #fff; border-bottom: 1px solid var(--border); padding: 15px 0; position: sticky; top: 0; z-index: 100; width: 100%; margin: 0; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 0 20px; max-width: 1200px; margin: 0 auto; }
.logo a { font-size: 1.5rem; font-weight: 700; color: var(--secondary); display: flex; align-items: center; }
.site-nav a { margin-left: 20px; font-weight: 500; color: var(--secondary); }
.site-nav a:hover { color: var(--primary); }

/* Header Right & Search */
.header-right { display: flex; align-items: center; gap: 20px; }
.search-bar { position: relative; display: flex; align-items: center; }
.search-bar input { padding: 8px 12px; border: 1px solid var(--border); border-right: none; border-radius: 4px 0 0 4px; width: 200px; font-size: 0.9rem; outline: none; }
.search-bar input:focus { border-color: var(--primary); }
.search-results { display: none; position: absolute; top: 100%; right: 0; width: 300px; background: white; border: 1px solid var(--border); box-shadow: 0 4px 12px rgba(0,0,0,0.1); border-radius: 6px; margin-top: 5px; max-height: 300px; overflow-y: auto; z-index: 1000; }
.search-btn { padding: 8px 15px; background: var(--primary); color: white; border: 1px solid var(--primary); border-radius: 0 4px 4px 0; cursor: pointer; font-size: 0.9rem; font-weight: 600; }
.search-btn:hover { opacity: 0.9; }
.search-results a { display: block; padding: 10px; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.search-results a:hover { background: var(--bg-light); }

/* Menu Toggle */
.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--secondary); padding: 5px; }

/* Hero */
.hero { background: var(--bg-light); padding: 80px 0; text-align: center; max-width: 1200px; margin: 0 auto; }
.hero h1 { font-size: 2.5rem; margin-bottom: 20px; color: var(--secondary); margin-top: 0; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; color: var(--text-light); max-width: 600px; margin-left: auto; margin-right: auto; }

/* Features Section */
.features-section { margin-top: 40px; margin-bottom: 40px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.feature-card { padding: 30px; background: white; border: 1px solid var(--border); border-radius: 8px; position: relative; }
.feature-num { font-size: 3rem; font-weight: 700; color: var(--border); opacity: 0.5; position: absolute; top: 20px; right: 20px; }
.feature-card h3 { margin-bottom: 15px; color: var(--primary); margin-top: 0; }

/* Scams Grid */
.latest-scams { padding: 60px 20px; }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 30px; border-bottom: 2px solid var(--border); padding-bottom: 15px; }
.scam-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }
.scam-card { background: #fff; border: 1px solid var(--border); padding: 25px; border-radius: 8px; transition: transform 0.2s; }
.scam-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.card-status { display: inline-block; padding: 4px 10px; border-radius: 4px; font-size: 0.8rem; font-weight: 600; margin-bottom: 15px; }
.status-unregulated { background: #ffebee; color: #c62828; }
.status-warning { background: #fff3e0; color: #ef6c00; }
.status-badge { display: inline-block; padding: 4px 10px; border-radius: 4px; font-size: 0.8rem; font-weight: 600; margin-bottom: 5px; vertical-align: middle; }
.status-danger { background: #ffebee; color: #c62828; }
.scam-card h3 { margin-bottom: 10px; font-size: 1.2rem; margin-top: 0; }
.card-meta { display: flex; align-items: center; gap: 15px; font-size: 0.85rem; color: #999; margin-bottom: 15px; }
.card-meta .card-status { margin-bottom: 0; }
.post-date { font-weight: 500; color: #777; }
.read-more { color: var(--primary); font-weight: 600; font-size: 0.9rem; }

/* Review Page */
.review-layout { display: block; max-width: 1160px; margin: 40px auto; background: #fff; padding: 40px; border: 1px solid #e1e4e8; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.02); }
.review-header { margin-bottom: 10px; border-bottom: 1px solid var(--border); padding-bottom: 5px; }
.review-header h1 { font-size: 1.8rem; margin-top: 5px; margin-bottom: 5px; }
.breadcrumb { font-size: 0.9rem; color: #888; margin-bottom: 5px; }
.breadcrumb a { color: var(--primary); }

.content-body { font-size: 1.05rem; color: #333; }
.intro-text { font-size: 1.05rem; color: #444; border-left: 3px solid var(--primary); padding: 10px; font-style: italic; margin-bottom: 30px; }

/* Footer */
.site-footer { background: #1a1a1a; color: #ccc; padding: 60px 0 20px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h3 { color: #fff; margin-bottom: 20px; margin-top: 0; }
.footer-col ul li { margin-bottom: 10px; padding-left: 0; list-style: none; }
.footer-col ul { padding-left: 0; margin-left: 0; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.pagination { margin-top: 40px; text-align: center; }
.page-link { padding: 8px 16px; background: var(--bg-light); margin: 0 5px; border-radius: 4px; }
.current-page { padding: 8px 16px; font-weight: bold; }

@media (max-width: 768px) {
    ul, ol { padding-left: 20px; }
    .header-inner { flex-wrap: wrap; }
    .menu-toggle { display: block; }
    .header-right { 
        display: none; 
        width: 100%; 
        flex-direction: column; 
        gap: 15px; 
        padding-top: 20px;
        border-top: 1px solid var(--border);
        margin-top: 15px;
    }
    .header-right.active { display: flex; }
    .search-bar { width: 100%; }
    .search-bar input { width: 100%; }
    .site-nav { display: flex; flex-direction: column; gap: 10px; width: 100%; }
    .site-nav a { margin-left: 0; display: block; padding: 10px 0; border-bottom: 1px solid #eee; }
    .site-nav a:last-child { border-bottom: none; }
    .search-results { width: 100%; }
    .review-layout { margin: 10px auto; padding: 20px; }
    .review-header h1 { font-size: 1.7rem; }
    .alert-box { font-size: 1.0rem; }
}

/* Contact Form */
.page-container { padding-top: 40px; padding-bottom: 60px; }
.contact-wrapper { max-width: 600px; margin: 0 auto; background: #fff; padding: 30px; border: 1px solid var(--border); border-radius: 8px; }
.simple-contact-form { margin-top: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; }
.form-group input, .form-group textarea { width: 100%; padding: 10px; border: 1px solid var(--border); border-radius: 4px; font-family: inherit; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); outline: none; }
