/* guides_v_1.css - Black, white, cyan theme for TopLegend guides */
body {
    background: #111;
    color: #fff;
    font-family: 'Heebo', 'Noto Sans Hebrew', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: url(/images/bg/bg-main.jpg);
    background-position: bottom;
    background-size: cover;
}
.header, .footer {
    background: #000;
    color: #fff;
}
.header__logo a {
    background-image: url('/images/toplegend-bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    width: 120px;
    height: 48px;
}
.cta {
    background: linear-gradient(90deg, #00eaff 0%, #fff 100%);
    color: #111;
    border-radius: 8px;
    padding: 16px 32px;
    font-weight: bold;
    text-align: center;
    margin: 24px auto;
    display: block;
    max-width: 400px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    transition: background 0.3s;
}
.cta:hover {
    background: linear-gradient(90deg, #fff 0%, #00eaff 100%);
    color: #000;
}
.category-list, .post-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin: 32px 0;
}
.category-card, .post-card {
    background: #181818;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    padding: 24px;
    min-width: 260px;
    max-width: 340px;
    flex: 1 1 260px;
    color: #fff;
    text-decoration: none;
    transition: box-shadow 0.2s, transform 0.2s;
}
.category-card:hover, .post-card:hover {
    box-shadow: 0 4px 16px #00eaff99;
    transform: translateY(-4px) scale(1.03);
}
.category-card h2, .post-card h2 {
    color: #00eaff;
    margin-top: 0;
}
.related-posts {
    margin: 40px 0 0 0;
}
.related-posts h3 {
    color: #00eaff;
}
@media (max-width: 700px) {
    .category-list, .post-list {
        flex-direction: column;
        gap: 16px;
    }
    .category-card, .post-card {
        min-width: 0;
        max-width: 100%;
    }
    .header__logo a {
        width: 90px;
        height: 36px;
    }
}
.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #00eaff;
    color: #111;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 2px 12px #00eaff99;
    z-index: 1000;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.sticky-cta:hover {
    background: #fff;
    color: #00eaff;
}
