/* Mobfas Trip v2 - Money Zone Strategy Style */

:root {
    --primary: #ff6b35;
    --ad-label: #f0f0f0;
    --money-bg: #fffbf5;
}

/* ── Money Zone Indicators (For Prototype Only) ── */
.money-zone {
    position: relative;
    border: 2px dashed #ff6b35;
    margin: 30px 0;
    padding: 20px;
    background: var(--money-bg);
}

.money-zone::before {
    content: attr(data-label);
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--primary);
    color: #fff;
    padding: 2px 10px;
    font-size: 11px;
    font-weight: 800;
    border-radius: 4px;
}

/* ── Desktop Hybrid Layout (Sidebar Support) ── */
.main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 320px; /* Main Content + Sidebar */
    gap: 40px;
    padding: 0 20px;
}

@media (max-width: 1024px) {
    .main-wrapper {
        grid-template-columns: 1fr;
    }
    .desktop-sidebar {
        display: none; /* Hide sidebar on mobile to focus on In-Content Revenue */
    }
}

/* ── Sidebar Style ── */
.desktop-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.sidebar-ad-box {
    width: 300px;
    height: 600px;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #ccc;
    color: #999;
}

/* ── In-Content AdSense Optimization ── */
.ad-native {
    background: #fafafa;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 15px;
    text-align: center;
    margin: 40px -20px; /* Full width break for impact */
}

.ad-native small {
    display: block;
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: 1px;
    color: #bbb;
}

/* ── Affiliate Link Styling (Conversion Focused) ── */
.aff-text-link {
    background: linear-gradient(to bottom, transparent 60%, #ffe8e0 60%);
    font-weight: 700;
    color: var(--primary);
    padding: 0 2px;
}

.aff-text-link:hover {
    background: var(--primary);
    color: #fff;
}
