:root {
    --accent: #0066b3;
    --bg: #f6f8fb;
    --card: #fff;
    --muted: #6b7280;
    --radius: 12px
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: Inter, system-ui, Arial;
    background: var(--bg);
    color: #0f172a
}

a {
    color: inherit
}
.adsbygoogle { margin-top: 20px !important; margin-bottom: 20px !important; }

/* add this in head or inside existing <style> in head */
.vote-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #e6eef6;
    background: #fff;
    cursor: pointer;
    font-weight: 700;
    transition: all .18s ease;
}

.vote-btn.active {
    background: linear-gradient(90deg, #ff9a44, #ff6a00);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(255, 154, 68, 0.12);
}

.vote-btn .count {
    min-width: 36px;
    text-align: center;
    font-weight: 800;
}

.toast {
    position: fixed;
    right: 18px;
    bottom: 18px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    z-index: 9999;
    font-size: 14px;
}

.heart-pulse {
    animation: pulse 520ms ease;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }

    100% {
        transform: scale(1);
    }
}

.ref-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    margin-bottom: 14px;
}

.ref-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ref-author img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #eee;
}

.ref-metrics {
    margin-left: auto;
    display: flex;
    gap: 12px;
    align-items: center;
}

.vote-btn {
    background: #f5f7fb;
    border: 1px solid #e3e8ef;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.vote-btn:active {
    transform: translateY(1px);
}

.vote-count {
    margin-left: 6px;
    font-weight: 700;
}

.small-muted {
    color: #6b7280;
    font-size: 13px;
}

/* Devotion box */
.devotion-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    /* change to #fff if you want white pill behind */
    padding: 4px 8px;
    border-radius: 10px;
    /* subtle shadow to lift it like screenshot 2 */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* ram image */
.devotion-box .ram-img {
    height: 40px;
    /* desktop default */
    width: auto;
    display: block;
    object-fit: contain;
    border-radius: 6px;
    /* small rounding */
}

/* optional small text next to image */
.devotion-box .ram-text {
    color: #ffb84d;
    /* warm color — change as needed */
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
}

/* main container */
.container {
    max-width: 1400px;
    margin: 14px auto;
    padding: 14px
}

/* hero + referral */
.hero {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    background: var(--card);
    padding: 14px;
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05)
}

.logo {
    flex: 0 0 72px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef6ff
}

.app_logo {
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef6ff
}

.app_logo img {
    max-width: 64px;
    max-height: 64px;
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #eee;
}

.logo img {
    max-width: 64px;
    max-height: 64px
}

.meta {
    flex: 1;
    min-width: 160px
}

.meta h1 {
    margin: 0;
    font-size: 1rem;
    display: flex;
    gap: 6px;
    align-items: center
}

.meta .short {
    color: var(--muted);
    margin-top: 6px;
    font-size: 0.9rem
}

.codebox {
    flex: 1;
    background: var(--card);
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #eef2f7;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch
}

.codebox .label {
    font-size: 0.85rem;
    color: var(--muted)
}

.codebox .code {
    font-weight: 700;
    font-size: 1.3rem;
    text-align: center;
    letter-spacing: 1px
}

.btn {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem
}

.btn.ghost {
    background: transparent;
    color: var(--accent);
    border: 1px solid rgba(0, 102, 179, 0.2)
}

.btn.full {
    width: 100%
}

.layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px
}

.card {
    background: var(--card);
    margin-bottom: 10px;
    padding: 14px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04)
}

.title {
    font-weight: 700;
    margin-bottom: 8px
}

.muted {
    color: var(--muted);
    font-size: 0.95rem
}

.gallery-viewport {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #edf2f7;
    background: #f8fafc
}

.gallery-viewport img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 60vh
}

.thumbnails {
    display: flex;
    gap: 8px;
    overflow: auto;
    margin-top: 6px
}

.thumbnails img {
    height: 64px;
    border-radius: 8px;
    cursor: pointer;
    flex: 0 0 auto;
    border: 2px solid transparent
}

.thumbnails img.active {
    border-color: var(--accent)
}

.proscons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.proscons .box {
    flex: 1;
    min-width: 180px;
    padding: 10px;
    border-radius: 10px
}

.pros {
    background: #f0fff4;
    border: 1px solid #dcfce7
}

.cons {
    background: #fff7f7;
    border: 1px solid #fee2e2
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 8px
}

input[type=text],
textarea {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #e6edf3;
    font-size: 0.95rem
}

.comment-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end
}

.sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 8px
}

@media(min-width:820px) {
    .layout {
        grid-template-columns: 1fr 320px
    }
}

@media(min-width:1100px) {
    .layout {
        grid-template-columns: 2fr 360px
    }
}

/* ----- Responsiveness ----- */
/* Slightly smaller on tablets */
@media (max-width: 1024px) {
    .devotion-box .ram-img {
        height: 36px;
    }

    .devotion-box .ram-text {
        font-size: 0.88rem;
    }
}

/* Mobile: compact — hide text and shrink image if needed */
@media (max-width: 699px) {
    .devotion-box {
        padding: 3px 6px;
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
    }

    .devotion-box .ram-img {
        height: 30px;
    }

    .devotion-box .ram-text {
        display: none;
    }

    /* keep header compact on small phones */
}

/* Accordion FAQ styles */
.faq-accordion {
    margin-top: 8px;
}

.faq-item {
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.faq-qbtn {
    width: 100%;
    text-align: left;
    padding: 14px 16px;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-qbtn:focus {
    outline: 3px solid rgba(59, 130, 246, 0.25);
}

.faq-qtext {
    font-weight: 600;
    color: #1f2937;
}

.faq-icon {
    font-weight: 700;
    margin-left: 12px;
    transform: rotate(0deg);
    transition: transform .2s ease;
}

.faq-panel {
    padding: 0 16px 14px 16px;
    background: #fff;
    border-left: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}

.faq-panel-inner {
    padding-top: 8px;
    color: #374151;
    line-height: 1.6;
}

/* When expanded - rotate icon */
.faq-qbtn[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

/* Slight responsive adjustments */
@media (min-width: 768px) {
    .faq-accordion {
        max-width: 900px;
    }
}


/* comment UI improvements */
.comment-section .title {
    margin-bottom: 10px;
}

.comment-section .comment-form {
    display: grid;
    grid-template-columns: 1fr 140px;
    gap: 14px;
    align-items: end;
}

@media (max-width:700px) {
    .comment-section .comment-form {
        grid-template-columns: 1fr;
    }
}

.comment-section .comment-form .input {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #e6edf3;
    font-size: 0.95rem;
    background: #fff;
    box-sizing: border-box;
}

.comment-section .comment-form textarea.input {
    min-height: 110px;
    resize: vertical;
}

.comment-list {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comment-item {
    display: flex;
    gap: 12px;
    background: #fff;
    padding: 14px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(12, 35, 64, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.comment-item .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), #0a58a7);
    text-transform: uppercase;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(11, 78, 215, 0.08);
}

.comment-body {
    flex: 1;
}

.comment-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.comment-meta .name {
    font-weight: 700;
    color: #0f172a;
}

.comment-meta .time {
    font-size: 12px;
    color: var(--muted);
    white-space: nowrap;
}

.comment-text {
    margin-top: 8px;
    color: #374151;
    line-height: 1.6;
    font-size: 0.97rem;
}

.comment-reply {
    margin-top: 12px;
    background: #f3f9ff;
    border-left: 4px solid var(--accent);
    padding: 12px;
    border-radius: 8px;
    color: #0f172a;
}

.comment-reply .heading {
    font-weight: 700;
    margin-bottom: 6px;
    color: #0b5ed7;
}

.comment-reply .meta {
    color: var(--muted);
    font-size: 12px;
    margin-top: 8px;
}

.comment-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.comment-actions .btn {
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
}

/* small niceties */
.comment-empty {
    padding: 14px;
    background: #fff;
    border-radius: 10px;
    border: 1px dashed #e9eef6;
    color: var(--muted);
}

/* COMMENTS: responsive layout */
/* Comments responsive layout improvements */
.comment-item {
    display: grid;
    grid-template-columns: 160px 1fr 320px;
    /* name/date | comment text | admin-reply */
    gap: 18px;
    align-items: start;
    border-radius: 10px;
    background: #fff;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(12, 18, 31, 0.03);
    border: 1px solid #eef2f7;
}

/* Left column: name + date (stacked) */
.comment-item>.meta-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 120px;
    word-break: break-word;
}

.comment-item .meta-left strong {
    font-size: 1rem;
    line-height: 1.2;
    display: block;
    font-weight: 700;
}

.comment-item .meta-left .cdate {
    color: var(--muted);
    font-size: 0.9rem;
    margin-top: 2px;
    white-space: normal;
}

/* Middle column: comment text */
.comment-item>.body {
    color: #374151;
    font-size: 0.98rem;
    line-height: 1.5;
    min-width: 0;
    /* important for grid flexing */
}

/* Right column: admin reply card */
.comment-item>.reply-box {
    background: #fbfdff;
    border-left: 3px solid var(--accent);
    padding: 12px;
    border-radius: 8px;
    color: #374151;
    min-height: 58px;
    max-width: 100%;
}

/* admin reply title */
.reply-box .title {
    font-weight: 700;
    color: #0b4b78;
    margin-bottom: 6px;
}

/* small muted meta for replied_at */
.reply-box .meta {
    font-size: 12px;
    color: var(--muted);
    margin-top: 8px;
}

/* For very small screens - stack vertically */
@media (max-width: 820px) {
    .comment-item {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 14px;
    }

    .comment-item>.meta-left {
        flex-direction: row;
        gap: 12px;
        align-items: center;
    }

    .comment-item .meta-left strong {
        font-size: 0.95rem;
    }

    .comment-item .meta-left .cdate {
        font-size: 0.85rem;
        color: var(--muted);
    }

    .comment-item>.reply-box {
        border-left: 3px solid var(--accent);
        padding: 10px;
    }
}

/* Small stylistic tweak for Load more button center */
#loadMoreBtn {
    margin: 12px auto 20px;
    display: inline-block;
    cursor: pointer;
}

#loadMoreBtn {
    background: var(--accent);
    color: #fff;
    border: none;
    cursor: pointer;
}

#loadMoreBtn[disabled] {
    opacity: 0.6;
    cursor: default;
}

/* ==========================
   PAGE-SPECIFIC OVERRIDES
   (Center hero & main content to same width)
   Append these overrides at the end of app.css
   ========================== */

/* central page width used for hero and main content */
:root {
    --page-width: 920px;
    /* change to 820 / 980 / 1000 if you want wider/narrower */
}

/* ensure container does not offset hero/main visually */
.container {
    display: block;
    padding-left: 0;
    padding-right: 0;
}

/* center the hero and main column to same width */
.hero,
.layout main {
    max-width: var(--page-width);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    padding-left: 16px;
    /* small inner padding so content isn't flush to edge */
    padding-right: 16px;
}

/* ensure hero children still lay out properly */
.hero {
    width: 100%;
}

/* keep codebox compact but aligned */
.codebox {
    max-width: 460px;
    width: 100%;
}

/* make cards full width inside the centered main */
.layout main .card {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 10px;
}

/* hide aside element if present and avoid reserving grid space */
.layout aside {
    display: none !important;
}

/* if any leftover aside exists, keep layout single column and avoid reserved grid columns */
.layout {
    grid-template-columns: none !important;
    display: block;
    gap: 20px;
}

/* ensure pros/cons boxes stretch and align with main width */
.proscons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: stretch;
}

.proscons .box {
    flex: 1 1 320px;
    min-width: 260px;
}

/* FAQ accordion centering and max width under main */
.faq-accordion {
    margin-top: 8px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .faq-accordion {
        max-width: 820px;
        /* keep FAQ columns aligned under main */
    }
}

/* Gallery & thumbnails responsiveness inside centered main */
.gallery-viewport {
    max-width: 100%;
}

.thumbnails {
    justify-content: flex-start;
    padding-left: 0;
}

/* Comments area — make consistent width & centered */
#comments,
.comment-list,
.comments-list {
    max-width: 100%;
}

.comment-item {
    box-sizing: border-box;
    width: 100%;
}

/* Small screens tweaks — keep comfortable spacing */
@media (max-width: 920px) {
    .layout main {
        padding: 0 16px;
    }

    .hero {
        flex-direction: column;
    }

    .codebox {
        max-width: none;
        width: 100%;
    }

    .proscons {
        flex-direction: column;
    }

    :root {
        --page-width: 100%;
    }
}

/* optional: slightly wider on very large screens for readability */
@media (min-width: 1400px) {
    :root {
        --page-width: 1000px;
    }

    .hero,
    .layout main {
        max-width: var(--page-width);
    }
}

/* End of overrides */
/* Mobile improvements for Pros & Cons */
@media (max-width: 640px) {

    /* Stack boxes vertically and make them full-width */
    .proscons {
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important;
        align-items: stretch;
        margin: 0;
    }

    /* Each box should take full width and have comfortable padding */
    .proscons .box {
        flex: 1 1 100% !important;
        min-width: 0 !important;
        width: 100% !important;
        padding: 16px !important;
        border-radius: 12px !important;
        box-sizing: border-box;
        min-height: 140px;
        /* makes boxes visually balanced */
        display: block;
    }

    /* Make the inner <strong> title align well and not collapse */
    .proscons .box>strong {
        display: block;
        margin-bottom: 10px;
        font-size: 1rem;
    }

    /* Improve list spacing and left padding for bullets */
    .proscons .box ul {
        margin: 0;
        padding-left: 20px;
        list-style-position: outside;
    }

    .proscons .box li {
        margin-bottom: 8px;
        line-height: 1.6;
        color: #374151;
        font-size: 0.96rem;
    }

    /* If the green/pink backgrounds are pale, increase contrast slightly */
    .pros {
        background: #f6fff7;
    }

    .cons {
        background: #fff7f8;
    }

    /* Ensure the card container has comfortable side padding on small devices */
    .layout main .card {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
}

.ref-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.ref-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ref-author img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #eee;
}

.ref-metrics {
    margin-left: auto;
    display: flex;
    gap: 12px;
    align-items: center;
}

.vote-btn {
    background: #f5f7fb;
    border: 1px solid #e3e8ef;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.vote-btn:active {
    transform: translateY(1px);
}

.vote-count {
    margin-left: 6px;
    font-weight: 700;
}

.small-muted {
    color: #6b7280;
    font-size: 13px;
}

/* ==============================
   Header (site-header) styles
   ============================== */

.site-header {
    background: #1a1444;
    /* deep navy */
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* main nav container: center + spacing */
.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    box-sizing: border-box;
}

/* logo area */
.logo-area {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* simple logo look (keeps existing img/layout) */
.logo {
    flex: 0 0 72px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef6ff;
}

/* small devotion box (ram image + text) */
.devotion-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    padding: 4px 8px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.devotion-box .ram-img {
    height: 40px;
    object-fit: contain;
    border-radius: 6px;
}

.devotion-box .ram-text {
    color: #ffb84d;
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
}

/* Desktop nav links */
.nav-links {
    display: flex;
    gap: 18px;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
}

.nav-links a:hover {
    color: #ff9800;
}

/* Dropdown helper */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background: none;
    border: 0;
    color: #fff;
    cursor: pointer;
    font: inherit;
    display: inline-flex;
    gap: 6px;
    padding: 6px 8px;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    color: #111;
    min-width: 200px;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(10, 12, 20, 0.18);
    z-index: 10000;
    transform-origin: top left;
    transition: transform .12s ease, opacity .12s ease;
    opacity: 0;
    transform: translateY(-6px) scale(.98);
}

.dropdown.open .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.dropdown-content a {
    display: block;
    padding: 10px 14px;
    color: #111;
    text-decoration: none;
}

.dropdown-content a:hover {
    background: #f6f7fb;
}

/* Menu toggle (mobile) */
.menu-toggle {
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 22px;
    padding: 6px;
    display: none;
    cursor: pointer;
}

/* mobile nav panel */
.mobile-nav {
    overflow: hidden;
    max-height: 0;
    transition: max-height 280ms ease;
    background: #1a1444;
    display: flex;
    flex-direction: column;
    padding: 0 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* when open (add .open on .site-header) */
.site-header.open .mobile-nav {
    max-height: 360px;
}

/* Responsive - show toggle and hide desktop nav on small screens */
@media (max-width: 699px) {
    .menu-toggle {
        display: inline-block;
    }

    .nav-links {
        display: none;
    }

    .devotion-box .ram-text {
        display: none;
    }

    /* compact */
}

/* slight adjustments for tablet */
@media (max-width: 1024px) {
    .devotion-box .ram-img {
        height: 36px;
    }
}

/* ==============================
   Footer styles (site-footer / .footer)
   ============================== */

.footer,
.site-footer {
    background: #1b1339;
    color: #e6e6ee;
    padding: 36px 20px 18px;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    box-sizing: border-box;
}

/* inner layout */
.footer-container {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    gap: 28px;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    box-sizing: border-box;
}

/* columns */
.footer-about {
    flex: 0 0 40%;
    max-width: 40%;
}

.footer-links {
    flex: 0 0 28%;
    max-width: 28%;
}

.footer-social {
    flex: 0 0 28%;
    max-width: 28%;
    text-align: right;
}

/* footer logo */
.footer .logo {
    height: 36px;
    flex: 0 0 72px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef6ff;
}

/* headings and text */
.footer h3,
.footer-links h3,
.footer-social h3 {
    color: #ffd24d;
    margin: 0 0 12px;
    font-size: 18px;
}

.footer-about p {
    color: #f3eedd;
    margin: 0;
    font-size: 14px;
}

/* links list */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #f3e6ff;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
    color: #fff;
}

/* social icons */
.footer .social-icons {
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    display: flex;
    justify-content: flex-end;
}

.footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #fff;
    color: #1b1339;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transition: transform .14s ease, box-shadow .14s ease;
}

.footer .social-icons a:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.footer .social-icons a[aria-disabled="true"] {
    opacity: 0.45;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

/* disclaimer & bottom */
.footer-disclaimer {
    max-width: 1180px;
    margin: 18px auto 8px;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    color: #cfcfe2;
}

.footer-bottom {
    max-width: 1180px;
    margin: 8px auto 0;
    text-align: center;
    color: #b9b0d1;
    padding: 18px 0 6px;
}

/* responsive - stack columns on small screens */
@media (max-width: 880px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding-bottom: 12px;
    }

    .footer-about,
    .footer-links,
    .footer-social {
        max-width: 100%;
        flex: 0 0 100%;
        text-align: left;
    }

    .footer .social-icons {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .footer .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-radius: 8px;
    }
}


