/* css/premium.css - SarkariNetwork Official Design System (2026) */
@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@300;400;500;600;700;800&display=swap');

:root {
    --sn-blue: #0066CC;
    --sn-maroon: #800000;
    --sn-link: #0019FC;
    --sn-green: #008000;
    --sn-magenta: #c71585;
    --sn-bg: #f8f9fa;
    --sn-border: #000000;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

body {
    background-color: var(--sn-bg);
    font-family: 'Lexend Deca', sans-serif;
    color: #000;
}

/* Official Grid Table System */
.sn-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid var(--sn-border);
}

.sn-table th {
    background-color: var(--sn-blue);
    color: #fff;
    padding: 10px 15px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    border: 1px solid var(--sn-border);
}

.sn-table td {
    border: 1px solid var(--sn-border);
    padding: 8px 12px;
    vertical-align: middle;
    font-size: 0.95rem;
}

.sn-table .label {
    font-weight: 700;
    width: 30%;
    background: #fff;
}

.sn-table .value {
    font-weight: 700;
}

/* Link Color Coding */
.sn-link-action { color: var(--sn-magenta) !important; font-weight: 800; text-decoration: none; }
.sn-link-date { color: var(--sn-green) !important; font-weight: 800; }
.sn-link-redirect { color: var(--sn-link) !important; font-weight: 700; text-decoration: none; }
.sn-link-redirect:hover { text-decoration: underline; }

/* Bento Info Cards (Post Sidebar/Meta) */
.sn-bento-card {
    background: #fff;
    border: 2px solid var(--sn-blue);
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
}

.sn-bento-header {
    color: var(--sn-maroon);
    font-weight: 800;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
    padding-bottom: 5px;
    font-size: 0.85rem;
    text-transform: uppercase;
}

/* Sticky Bottom Join Bar */
.sn-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 12px 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(5px);
}

.sn-sticky-btn {
    background: var(--sn-green);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
    transition: transform 0.2s;
}

.sn-sticky-btn:hover {
    transform: scale(1.05);
    color: #fff;
}

/* Post Header Grid */
.sn-post-header {
    background: #fff;
    padding: 20px;
    border-bottom: 2px solid var(--sn-maroon);
    margin-bottom: 20px;
}

.sn-share-grid {
    display: grid;
    grid-template-cols: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.sn-share-btn {
    padding: 10px;
    text-align: center;
    color: #fff;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
}

/* Layout Utilities */
.sn-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.sn-section-title {
    background: var(--sn-blue);
    color: #fff;
    padding: 12px 20px;
    display: inline-block;
    font-weight: 800;
    margin-bottom: 0;
    border: 1px solid var(--sn-border);
    border-bottom: none;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .sn-table .label { width: 45%; }
    .sn-sticky-bar { flex-direction: column; text-align: center; gap: 10px; }
}
