body {
    margin: 0;
    font-family: 'Noto Sans Devanagari', sans-serif;
    background: #f7f7f7;
    color: #222;
}

a {
    text-decoration: none;
    color: #e63946;
}

.container {
    max-width: 900px;
    margin: auto;
    padding: 12px;
}

/* Header */
.site-header {
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.logo a {
    font-size: 22px;
    font-weight: 600;
}

.nav {
    margin-top: 8px;
}

.nav a {
    margin-right: 12px;
    font-size: 14px;
}

/* Suvichar Box */
.suvichar-box {
    background: #fff;
    padding: 16px;
    margin-bottom: 12px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.suvichar-text {
    font-size: 18px;
    line-height: 1.6;
}

/* Footer */
.site-footer {
    background: #fff;
    border-top: 1px solid #ddd;
    margin-top: 20px;
    padding: 15px 0;
    text-align: center;
    font-size: 14px;
}

/* Mobile Optimization */
@media (max-width: 600px) {
    .suvichar-text {
        font-size: 19px;
    }
    .nav a {
        font-size: 13px;
    }
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.actions button,
.actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;

    border-radius: 20px;
    border: 1px solid #e0e0e0;
    background: #ffffff;

    color: #333;
    cursor: pointer;

    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: all 0.2s ease;
}

/* Hover (desktop only) */
@media (hover: hover) {
    .actions button:hover,
    .actions a:hover {
        background: #f7f7f7;
        transform: translateY(-1px);
    }
}

/* Like button */
.actions .like-btn {
    color: #e63946;
    border-color: #f3c4c8;
}

/* WhatsApp */
.actions .wa-btn {
    color: #1fa855;
    border-color: #ccebd7;
}

/* Telegram */
.actions .tg-btn {
    color: #0088cc;
    border-color: #cce4f2;
}

/* Disabled like */
.actions button:disabled {
    opacity: 0.6;
    cursor: default;
}

@media (max-width: 600px) {
    .actions {
        gap: 8px;
    }

    .actions button,
    .actions a {
        font-size: 12px;
        padding: 6px 10px;
        border-radius: 18px;
    }
}

.internal-links {
    margin: 32px 0;
    padding: 18px 16px;
    background: linear-gradient(135deg, #fff7f7, #ffffff);
    border-radius: 12px;
    border: 1px solid #f1dede;
}

.internal-links h3 {
    margin: 0 0 12px 0;
    font-size: 17px;
    font-weight: 600;
    color: #333;
}

.internal-links ul {
    list-style: none;
    padding: 0;
    margin: 0;

    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.internal-links li {
    margin: 0;
}

.internal-links a {
    display: inline-block;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 500;

    border-radius: 18px;
    background: #ffffff;
    color: #e63946;

    border: 1px solid #f3c4c8;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);

    transition: all 0.2s ease;
}

/* Hover only for desktop */
@media (hover: hover) {
    .internal-links a:hover {
        background: #ffeaea;
        transform: translateY(-1px);
    }
}
@media (max-width: 600px) {
    .internal-links {
        padding: 16px 14px;
    }

    .internal-links h3 {
        font-size: 16px;
    }

    .internal-links a {
        font-size: 12px;
        padding: 6px 12px;
    }
}
/* Category Index Page */
.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* mobile default */
    gap: 14px;
    margin-top: 20px;
}

.category-grid a {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 18px 12px;
    background: #ffffff;

    border-radius: 14px;
    border: 1px solid #f1dede;

    font-size: 14px;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;

    color: #e63946;

    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    transition: all 0.2s ease;
}

/* Hover only on desktop */
@media (hover: hover) {
    .category-grid a:hover {
        background: #fff1f1;
        transform: translateY(-2px);
    }
}

/* Tablets */
@media (min-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.breadcrumbs {
    font-size: 13px;
    margin: 10px 0 16px;
    color: #666;
}

.breadcrumbs a {
    color: #e63946;
}

.breadcrumbs span {
    margin: 0 6px;
}
/* Scroll to Top Button */
#scrollTopBtn {
    position: fixed;
    bottom: 18px;
    right: 18px;

    width: 42px;
    height: 42px;

    border-radius: 50%;
    border: none;

    background: #e63946;
    color: #fff;

    font-size: 18px;
    font-weight: bold;

    cursor: pointer;
    opacity: 0;
    visibility: hidden;

    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 999;
}

/* Visible state */
#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
}

/* Hover (desktop only) */
@media (hover: hover) {
    #scrollTopBtn:hover {
        background: #d62839;
        transform: translateY(-2px);
    }
}

/* Mobile fine-tune */
@media (max-width: 600px) {
    #scrollTopBtn {
        width: 38px;
        height: 38px;
        font-size: 16px;
        bottom: 16px;
        right: 16px;
    }
}

/* Nav Dropdown */
.nav-item {
    position: relative;
    display: inline-block;
}

.has-dropdown > a {
    cursor: pointer;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;

    min-width: 220px;
    background: #ffffff;

    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);

    display: none;
    z-index: 999;
    padding: 8px 0;
}

.dropdown a {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
    color: #333;
}

.dropdown a:hover {
    background: #fff1f1;
}

/* Desktop hover */
@media (hover: hover) {
    .has-dropdown:hover .dropdown {
        display: block;
    }
}

/* Mobile tap */
@media (max-width: 768px) {
    .dropdown {
        position: static;
        box-shadow: none;
        border: none;
        display: block;
        padding: 6px 0;
    }
}
.nav {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.dropdown-divider {
    height: 1px;
    background: #eee;
    margin: 6px 0;
}

.dropdown .more-link {
    font-weight: 600;
    color: #e63946;
    text-align: center;
}
