        :root {
            --navy: #1c3454;
            --navy-dark: #14253b;
            --teal: #24a8c5;
            --teal-light: #4fd0e4;
            --gold: #d89b2a;
            --gold-soft: #f2c56b;
            --bg: #f5f7fb;
            --text-main: #1e2533;
            --muted: #6c7384;
            --admin-bg: #121826;
        }

        * { box-sizing: border-box; }

        body {
            margin: 0;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background: var(--bg);
            color: var(--text-main);
        }

        a { color: inherit; text-decoration: none; }

        .no-scroll { overflow: hidden; }

        /* Header / Nav */

        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            backdrop-filter: blur(10px);
            background: linear-gradient(to right, rgba(28,52,84,0.96), rgba(36,168,197,0.96));
            color: #fff;
            box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        }

        .nav-inner {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0.8rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .brand-logo-circle {
            width: 44px;
            height: 44px;
            border-radius: 999px;
            background: radial-gradient(circle at 20% 20%, var(--teal-light), var(--teal));
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 0 3px rgba(255,255,255,0.15);
            overflow: hidden;
        }

        .brand-logo-circle img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .brand-text-main {
            font-weight: 700;
            letter-spacing: 0.06em;
            font-size: 1.05rem;
            text-transform: uppercase;
        }

        .brand-text-sub {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.85);
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }

        .nav-tabs {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .nav-tab {
            padding: 0.4rem 0.9rem;
            border-radius: 999px;
            font-size: 0.9rem;
            font-weight: 500;
            color: rgba(255,255,255,0.86);
            transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease;
        }

        .nav-tab:hover {
            background: rgba(255,255,255,0.12);
            transform: translateY(-1px);
        }

        .nav-tab.active {
            background: #fff;
            color: var(--navy-dark);
            box-shadow: 0 6px 16px rgba(0,0,0,0.25);
        }

        @media (max-width: 768px) {
            .nav-inner {
                flex-wrap: wrap;
                justify-content: center;
            }
            .nav-tabs {
                flex-wrap: wrap;
                justify-content: center;
            }
            .brand-text-sub { display: none; }
        }

        /* Buttons */

        .btn-primary {
            padding: 0.65rem 1.3rem;
            border-radius: 999px;
            border: none;
            font-size: 0.95rem;
            font-weight: 600;
            color: #fff;
            background: linear-gradient(135deg, var(--teal), var(--navy));
            box-shadow: 0 12px 30px rgba(18,117,152,0.5);
            cursor: pointer;
        }

        .btn-primary:hover { filter: brightness(1.08); }

        .btn-ghost {
            padding: 0.6rem 1.1rem;
            border-radius: 999px;
            border: 1px solid rgba(28,52,84,0.16);
            background: rgba(255,255,255,0.85);
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--navy);
            cursor: pointer;
        }

        .btn-ghost:hover {
            background: #ffffff;
        }

        /* Layout */

        .page-wrapper {
            max-width: 1120px;
            margin: 1.5rem auto 3rem;
            padding: 0 1.5rem;
        }

        /* Hero */

        .hero {
            display: grid;
            grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
            gap: 2.5rem;
            padding: 2.2rem 2rem;
            border-radius: 18px;
            background: radial-gradient(circle at 0% 0%, #ffffff, #edf4ff);
            box-shadow: 0 25px 70px rgba(0,0,0,0.09);
        }

        @media (max-width: 900px) {
            .hero {
                grid-template-columns: 1fr;
                padding: 1.8rem 1.4rem;
            }
        }

        .hero-kicker {
            font-size: 0.82rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: var(--teal);
            font-weight: 600;
        }

        .hero-title {
            font-size: 2.1rem;
            line-height: 1.2;
            color: var(--navy-dark);
            margin: 0.4rem 0 0.8rem;
            font-weight: 700;
        }

        .hero-tagline {
            font-size: 1.02rem;
            color: var(--muted);
            margin-bottom: 1.2rem;
        }

        .hero-theme-tagline {
            font-size: 1.08rem;
            font-weight: 600;
            color: var(--teal);
            background: linear-gradient(90deg, rgba(36,168,197,0.07), rgba(248,191,71,0.08));
            border-left: 4px solid var(--gold);
            padding: 0.7rem 0.9rem;
            border-radius: 12px;
            margin-bottom: 1.6rem;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            align-items: center;
        }

        .hero-meta {
            display: flex;
            gap: 1.3rem;
            margin-top: 1.2rem;
            font-size: 0.86rem;
            color: var(--muted);
            flex-wrap: wrap;
        }

        .hero-meta span {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }

        .hero-meta-dot {
            width: 6px;
            height: 6px;
            border-radius: 999px;
            background: var(--teal);
        }

        .hero-right {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .hero-logo-frame {
            width: 210px;
            height: 210px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 0%, #ffffff, #e8f7ff);
            box-shadow: 0 14px 40px rgba(0,0,0,0.16), 0 0 0 10px rgba(36,168,197,0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-logo-frame img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 50%;
        }

        .hero-badge {
            font-size: 0.8rem;
            color: var(--muted);
            text-align: center;
            max-width: 240px;
        }

        .hero-badge strong { color: var(--navy); }

        /* Content */

        .content-layout {
            display: grid;
            grid-template-columns: minmax(0,3fr) minmax(0,1.5fr);
            gap: 2rem;
            margin-top: 2.3rem;
        }

        @media (max-width: 900px) {
            .content-layout { grid-template-columns: 1fr; }
        }

        .section-title {
            font-size: 0.95rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: var(--muted);
            margin-bottom: 0.4rem;
        }

        .section-heading {
            font-size: 1.6rem;
            margin: 0 0 0.6rem;
            color: var(--navy-dark);
            font-weight: 700;
        }

        .category-filter {
            display: flex;
            flex-wrap: wrap;
            gap: 0.35rem;
            margin-bottom: 1.1rem;
            font-size: 0.8rem;
        }

        .category-pill {
            padding: 0.22rem 0.7rem;
            border-radius: 999px;
            border: 1px solid rgba(28,52,84,0.16);
            background: rgba(255,255,255,0.9);
            color: var(--muted);
            cursor: pointer;
        }

        .category-pill.active {
            border-color: var(--teal);
            color: var(--teal);
            background: rgba(36,168,197,0.08);
        }

        .post-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.4rem;
        }

        .post-card {
            background: #ffffff;
            border-radius: 18px;
            padding: 1.3rem 1.2rem 1.3rem;
            box-shadow: 0 10px 26px rgba(15,29,54,0.06);
            border: 1px solid rgba(28,52,84,0.04);
            transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
            cursor: pointer;
        }

        .post-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 40px rgba(15,29,54,0.12);
            border-color: rgba(36,168,197,0.35);
        }

        .post-tag {
            display: inline-flex;
            align-items: center;
            padding: 0.18rem 0.55rem;
            border-radius: 999px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            border: 1px solid rgba(36,168,197,0.4);
            background: rgba(36,168,197,0.08);
            color: var(--teal);
        }

        .post-title {
            font-weight: 600;
            margin: 0.7rem 0 0.35rem;
            color: var(--navy);
            font-size: 1.02rem;
        }

        .post-excerpt {
            font-size: 0.9rem;
            color: var(--muted);
            margin-bottom: 0.8rem;
        }

        .post-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.78rem;
            color: #9aa1b5;
            gap: 0.5rem;
        }

        .post-meta span strong { color: #626a7c; }

        .full-content {
            display: none;
        }

        .sidebar-card {
            background: #ffffff;
            border-radius: 18px;
            padding: 1.5rem 1.3rem;
            box-shadow: 0 10px 26px rgba(15,29,54,0.06);
            border: 1px solid rgba(28,52,84,0.04);
            margin-bottom: 1.3rem;
        }

        .sidebar-title {
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            color: var(--muted);
            margin-bottom: 0.6rem;
        }

        .sidebar-heading {
            font-size: 1.25rem;
            margin: 0 0 0.7rem;
            color: var(--navy-dark);
            font-weight: 700;
        }

        .sidebar-text {
            font-size: 0.9rem;
            color: var(--muted);
            margin-bottom: 1rem;
        }

        .sidebar-list {
            list-style: none;
            padding: 0;
            margin: 0;
            font-size: 0.9rem;
        }

        .sidebar-list li {
            padding: 0.35rem 0;
            border-bottom: 1px dashed rgba(200,205,220,0.7);
        }

        .sidebar-list li:last-child { border-bottom: none; }

        .sidebar-list a {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .sidebar-pill {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            color: var(--teal);
        }

        /* Footer */

        .site-footer {
            margin-top: 2rem;
            padding: 1.6rem 1.5rem 3rem;
            max-width: 1120px;
            margin-left: auto;
            margin-right: auto;
            font-size: 0.85rem;
            color: #9aa1b5;
        }

        .footer-inner {
            border-top: 1px solid rgba(180,188,205,0.5);
            padding-top: 1.2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 0.8rem;
        }

        .footer-brand {
            font-weight: 600;
            color: var(--navy);
        }

        .footer-links {
            display: flex;
            gap: 1rem;
        }

        .footer-links a { color: #8c94a8; }
        .footer-links a:hover { color: var(--teal); }

        /* Admin trigger */

        .admin-trigger {
            text-align: center;
            font-size: 0.8rem;
            margin-top: 1.5rem;
            color: #9aa1b5;
            cursor: pointer;
        }

        .admin-trigger span { text-decoration: underline; }

        /* Admin panel */

        .admin-panel-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.75);
            display: none;
            align-items: flex-end;
            justify-content: center;
            z-index: 200;
        }

        .admin-panel-backdrop.open { display: flex; }

        .admin-panel {
            width: 100%;
            max-width: 1120px;
            max-height: 90vh;
            background: var(--admin-bg);
            color: #e2e5f0;
            border-radius: 18px 18px 0 0;
            box-shadow: 0 -12px 30px rgba(0,0,0,0.5);
            padding: 1.4rem 1.6rem 1.2rem;
            overflow: auto;
        }

        .admin-panel h2 {
            margin-top: 0;
            margin-bottom: 0.5rem;
        }

        .admin-panel small { color: #9da3b7; }

        .admin-columns {
            display: grid;
            grid-template-columns: minmax(0,1.4fr) minmax(0,1.6fr);
            gap: 1rem;
            margin-top: 1rem;
        }

        @media (max-width: 900px) {
            .admin-columns { grid-template-columns: 1fr; }
        }

        .admin-box {
            border-radius: 14px;
            background: #151b2b;
            padding: 1rem 1rem 0.9rem;
            border: 1px solid rgba(255,255,255,0.06);
            margin-bottom: 0.7rem;
        }

        .admin-box h3 {
            margin-top: 0;
            font-size: 1rem;
        }

        .admin-form-row {
            margin-bottom: 0.7rem;
            font-size: 0.85rem;
        }

        .admin-form-row label {
            display: block;
            margin-bottom: 0.2rem;
            font-weight: 500;
            color: #e5e9ff;
        }

        .admin-form-row input[type="text"],
        .admin-form-row input[type="password"],
        .admin-form-row input[type="url"],
        .admin-form-row textarea,
        .admin-form-row select {
            width: 100%;
            padding: 0.45rem 0.6rem;
            border-radius: 8px;
            border: 1px solid #2a3146;
            background: #101524;
            color: #f1f3ff;
            font-size: 0.85rem;
            font-family: inherit;
            resize: vertical;
        }

        .admin-form-row textarea { min-height: 70px; }

        .admin-form-row input:focus,
        .admin-form-row textarea:focus,
        .admin-form-row select:focus {
            outline: none;
            border-color: var(--teal);
            box-shadow: 0 0 0 1px rgba(36,168,197,0.4);
        }

        .admin-checkbox-row {
            margin-bottom: 0.7rem;
            font-size: 0.85rem;
        }

        .admin-checkbox-row label {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }

        .admin-actions {
            margin-top: 0.7rem;
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
        }

        .btn-secondary {
            padding: 0.45rem 0.9rem;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.2);
            background: transparent;
            color: #e2e5f0;
            font-size: 0.82rem;
            cursor: pointer;
        }

        .btn-secondary:hover { background: rgba(255,255,255,0.06); }

        .btn-danger {
            padding: 0.45rem 0.9rem;
            border-radius: 999px;
            border: 1px solid rgba(255,107,107,0.7);
            background: transparent;
            color: #ff9b9b;
            font-size: 0.82rem;
            cursor: pointer;
        }

        .btn-danger:hover { background: rgba(255,107,107,0.1); }

        .admin-list {
            list-style: none;
            margin: 0.4rem 0 0;
            padding: 0;
            font-size: 0.8rem;
        }

        .admin-list li {
            padding: 0.35rem 0.4rem;
            border-radius: 8px;
            border: 1px dashed rgba(255,255,255,0.08);
            margin-bottom: 0.3rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.5rem;
        }

        .admin-badge-id {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: #a8b0d5;
        }

        .admin-draggable { cursor: grab; }
        .admin-draggable:active { cursor: grabbing; }

        .admin-login-box {
            max-width: 320px;
            margin: 0.5rem auto 0;
            text-align: center;
        }

        .admin-login-box input[type="password"] {
            width: 100%;
            padding: 0.45rem 0.6rem;
            border-radius: 999px;
            border: 1px solid #ccc;
        }

        .admin-login-box button {
            margin-top: 0.4rem;
            padding: 0.45rem 0.9rem;
            border-radius: 999px;
            border: none;
            background: var(--navy);
            color: #fff;
            cursor: pointer;
            font-size: 0.82rem;
        }

        .admin-login-error {
            color: #c0392b;
            font-size: 0.78rem;
            margin-top: 0.2rem;
        }

        /* Post reader overlay */

        .post-overlay-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.65);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 150;
        }

        .post-overlay-backdrop.open { display: flex; }

        .post-overlay {
            max-width: 720px;
            width: 100%;
            max-height: 90vh;
            background: #ffffff;
            border-radius: 18px;
            box-shadow: 0 24px 70px rgba(0,0,0,0.45);
            padding: 1.6rem 1.7rem 1.4rem;
            position: relative;
            overflow: auto;
        }

        .post-overlay-close {
            position: absolute;
            top: 0.45rem;
            right: 0.8rem;
            border: none;
            background: none;
            font-size: 1.8rem;
            line-height: 1;
            color: #9aa1b5;
            cursor: pointer;
        }

        .post-overlay-close:hover { color: #6c7384; }

        .post-overlay-title {
            margin: 0.7rem 0 0.4rem;
            font-size: 1.5rem;
            color: var(--navy-dark);
            font-weight: 700;
        }

        .post-overlay-meta {
            font-size: 0.82rem;
            color: #9aa1b5;
            margin-bottom: 0.9rem;
            display: flex;
            gap: 0.7rem;
            flex-wrap: wrap;
        }

        .post-overlay-body {
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--text-main);
        }
		
		/* About overlay */

.about-overlay-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 140;
}

.about-overlay-backdrop.open {
    display: flex;
}

.about-overlay {
    max-width: 720px;
    width: 100%;
    max-height: 90vh;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(0,0,0,0.45);
    padding: 1.6rem 1.7rem 1.4rem;
    position: relative;
    overflow: auto;
}

.about-overlay-close {
    position: absolute;
    top: 0.45rem;
    right: 0.8rem;
    border: none;
    background: none;
    font-size: 1.8rem;
    line-height: 1;
    color: #9aa1b5;
    cursor: pointer;
}

.about-overlay-close:hover {
    color: #6c7384;
}

.about-overlay-body h2 {
    margin-top: 0.3rem;
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
    color: var(--navy-dark);
}

.about-overlay-body p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-main);
    margin: 0 0 0.8rem;
}
/* Visitor log table in admin */

.visitor-log-table {
    margin-top: 0.6rem;
    max-height: 260px;
    overflow: auto;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    background: #101524;
}

.visitor-log-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.78rem;
    color: #e2e5f0;
}

.visitor-log-table th,
.visitor-log-table td {
    padding: 0.3rem 0.45rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.visitor-log-table th {
    position: sticky;
    top: 0;
    background: #151b2b;
    text-align: left;
    font-weight: 600;
}

.visitor-log-table tbody tr:nth-child(even) {
    background: #141a29;
}
.visitor-stats {
    margin-top: 0.5rem;
    padding: 0.5rem 0.7rem;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    color: #c4cae5;
}
/* Light inputs for prayer request in sidebar */
.sidebar-card .admin-form-row input[type="text"],
.sidebar-card .admin-form-row input[type="email"],
.sidebar-card .admin-form-row textarea {
    background: #ffffff;
    color: #1e2533;
    border: 1px solid #d0d5e5;
    border-radius: 10px;
}

/* Optional: nicer placeholder color in that card */
.sidebar-card .admin-form-row input::placeholder,
.sidebar-card .admin-form-row textarea::placeholder {
    color: #9aa1b5;
}
/* Light inputs for prayer request in sidebar */
.sidebar-card .admin-form-row input[type="text"],
.sidebar-card .admin-form-row input[type="email"],
.sidebar-card .admin-form-row textarea {
    background: #ffffff;
    color: #1e2533;
    border: 1px solid #d0d5e5;
    border-radius: 10px;
}

/* Optional: nicer placeholder color in that card */
.sidebar-card .admin-form-row input::placeholder,
.sidebar-card .admin-form-row textarea::placeholder {
    color: #9aa1b5;
}
.prayer-overlay input,
.prayer-overlay textarea {
    background: #ffffff !important;
    color: #1e2533 !important;
    border: 1px solid #d0d5e5 !important;
}
/* Force light fields for sidebar prayer card */
.sidebar-card.prayer-request-card input[type="text"],
.sidebar-card.prayer-request-card input[type="email"],
.sidebar-card.prayer-request-card textarea {
    background: #ffffff !important;
    color: #1e2533 !important;
    border: 1px solid #d0d5e5 !important;
    border-radius: 10px;
}

.sidebar-card.prayer-request-card input::placeholder,
.sidebar-card.prayer-request-card textarea::placeholder {
    color: #9aa1b5 !important;
}
/* Light fields specifically for the sidebar prayer form */
.prayer-request-card .prayer-form-row {
    margin-bottom: 0.7rem;
    font-size: 0.85rem;
}

.prayer-request-card .prayer-form-row label {
    display: block;
    margin-bottom: 0.2rem;
    font-weight: 500;
    color: #30384c;
}

.prayer-request-card .prayer-form-row input,
.prayer-request-card .prayer-form-row textarea {
    width: 100%;
    padding: 0.45rem 0.6rem;
    border-radius: 10px;
    border: 1px solid #d0d5e5;
    background: #ffffff;
    color: #1e2533;
    font-size: 0.9rem;
    font-family: inherit;
    resize: vertical;
}

.prayer-request-card .prayer-form-row input::placeholder,
.prayer-request-card .prayer-form-row textarea::placeholder {
    color: #9aa1b5;
}

.prayer-request-card .prayer-form-row input:focus,
.prayer-request-card .prayer-form-row textarea:focus {
    outline: none;
    border-color: #24a8c5;
    box-shadow: 0 0 0 1px rgba(36,168,197,0.35);
}
.prayer-form-row
textarea {
  border-radius: 15px;
  background:#f8f9ff;
  color:#1e2533;
  border-radius:10px;
  border:1px solid #d0d5e5;
}
/* Make prayer request inputs fill the sidebar card */
.sidebar-card.prayer-request-card form {
    width: 100%;
}

.sidebar-card.prayer-request-card .prayer-form-row,
.sidebar-card.prayer-request-card .admin-form-row {
    width: 100%;
}

.sidebar-card.prayer-request-card .prayer-form-row input,
.sidebar-card.prayer-request-card .prayer-form-row textarea,
.sidebar-card.prayer-request-card .admin-form-row input,
.sidebar-card.prayer-request-card .admin-form-row textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;
}
.subscribe-form {
    margin: 0 0 10px 0;
}

.subscribe-row {
    width: 100%;
    margin-bottom: 8px;
}

.subscribe-input {
    width: 100%;
    display: block;
    box-sizing: border-box;
    padding: 0.5rem 0.7rem;
    border-radius: 10px;
    border: 1px solid #d0d5e5;
    background: #f8f9ff;
    color: #1e2533;
    font-size: 0.9rem;
}

.subscribe-input:focus {
    outline: none;
    border-color: #24a8c5;
    box-shadow: 0 0 0 1px rgba(36,168,197,0.5);
}

.subscribe-btn {
    width: 100%;
    padding: 0.55rem 0.7rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #24a8c5, #1c3454);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
}
.blog-with-us-trigger {
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #24a8c5, #1c3454);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}



/* Hidden by default */
.admin-trigger {
  opacity: 0.08;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease;
  font-size: 0.65rem;
}

/* Reveal when footer is hovered */
.site-footer:hover .admin-trigger {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Optional styling */
.admin-trigger span {
  color: #d4af37;
  font-size: 0.75rem;
  letter-spacing: 1px;
  cursor: pointer;
}
.vod-btn{
  appearance:none;border:none;cursor:pointer;
  background:linear-gradient(135deg,#1fa2b8,#1c8ea5);
  color:#fff;font-weight:700;font-size:14px;
  padding:10px 18px;border-radius:999px;
  box-shadow:0 4px 10px rgba(0,0,0,.08);
}
#prayerCircleOverlay{
  position:fixed;
  inset:0;
  z-index:9999;
}

#prayerCircleBackdrop{
  position:absolute;
  inset:0;
  background:rgba(14,34,56,0.65);
}

#prayerCircleModal{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
}

#prayerCircleModal iframe{
  width:min(720px, 95vw);
  height:min(680px, 92vh);
  border:none;
  border-radius:22px;
  background:#fff;
  box-shadow:0 25px 70px rgba(0,0,0,0.35);
  pointer-events:auto;
}

#prayerCircleClose{
  position:absolute;
  top:14px;
  right:14px;
  width:42px;
  height:42px;
  border-radius:999px;
  border:none;
  background:#fff;
  font-size:18px;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 6px 18px rgba(0,0,0,0.25);
}
/* MODAL BACKDROP */
.privacy-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 40, 0.65);
  backdrop-filter: blur(10px);
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

/* MODAL BOX */
.privacy-content {
  background: linear-gradient(145deg, #ffffff, #f3f6fb);
  max-width: 850px;
  margin: 60px auto;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(0,0,0,0.35);
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  animation: scaleIn 0.3s ease;
}

/* CLOSE */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 26px;
  cursor: pointer;
  color: #888;
}
.close-btn:hover { color: #000; }

/* TEXT */
.privacy-content h1 {
  color: #1c2b3a;
}
.privacy-content h2 {
  color: #2c4f6d;
  margin-top: 20px;
}
.privacy-content p, .privacy-content li {
  color: #444;
  font-size: 14px;
  line-height: 1.6;
}

/* PROGRESS BAR */
.progress-bar {
  position: sticky;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  border-radius: 10px;
  margin-bottom: 10px;
}

/* CONSENT */
.consent-box {
  margin-top: 25px;
  padding: 15px;
  background: #eef3f9;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* BUTTON */
.accept-btn {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  border: none;
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.2s;
}
.accept-btn:hover {
  transform: scale(1.05);
}

/* FOOTER BUTTON */
.footer-link.premium {
  color: #d4af37;
  font-weight: 600;
}

/* DARK MODE AUTO */
@media (prefers-color-scheme: dark) {
  .privacy-content {
    background: #111;
    color: #ddd;
  }
  .privacy-content h1, .privacy-content h2 {
    color: #fff;
  }
  .consent-box {
    background: #1a1a1a;
  }
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {opacity:0;}
  to {opacity:1;}
}
@keyframes scaleIn {
  from {transform: scale(0.95);}
  to {transform: scale(1);}
}
.footer-link {
  color: #d4af37;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s;
}

.footer-link:hover {
  text-decoration: underline;
  color: #f1d27a;
}
.footer-link.premium-footer {
  position: relative;
  color: #d4af37;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
}

/* Smooth gold glow */
.footer-link.premium-footer:hover {
  color: #f5d97a;
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

/* Animated underline sweep */
.footer-link.premium-footer::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #f5d97a);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.footer-link.premium-footer:hover::after {
  width: 100%;
}