:root {
  --bicc-blue: #0000FE;
  --bicc-red: #FF0000;
  --bicc-black: #111111;
  --bicc-white: #ffffff;
  --bicc-soft: #f6f7fb;
  --bicc-line: rgba(17, 17, 17, .1);
  --bicc-shadow: 0 24px 70px rgba(17, 17, 17, .1);
}

html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { color: var(--bicc-black); background: var(--bicc-white); font-family: "Open Sans", sans-serif; overflow-x: hidden; }
body, input, select, textarea, button { font-size: clamp(15px, .25vw + 14px, 17px); }
a { transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease; }
img { max-width: 100%; height: auto; }
section { overflow: clip; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bicc-white); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--bicc-blue), var(--bicc-red)); border-radius: 999px; border: 2px solid var(--bicc-white); }

/* Navigation: preserves the complete original hierarchy. */
#header { height: 86px; padding: 0; background: rgba(17, 17, 17, .88); border-bottom: 1px solid rgba(255, 255, 255, .14); backdrop-filter: blur(18px); transition: height .3s ease, background .3s ease, box-shadow .3s ease; }
#header.header-scrolled { height: 72px; background: rgba(255, 255, 255, .96); box-shadow: 0 10px 35px rgba(17, 17, 17, .08); }
#header .container { max-width: 1440px; padding-inline: clamp(18px, 4vw, 64px); }
#header .logo { display: inline-flex; align-items: center; padding: 0; border-radius: 0; background: transparent; }
#header .logo img { width: clamp(108px, 10vw, 148px); max-height: 52px; object-fit: contain; filter: none; }
.navbar > ul { gap: clamp(2px, .5vw, 10px); }
.navbar > ul > li > a { color: var(--bicc-white); padding: 12px clamp(7px, .7vw, 13px); font-family: "Nunito", sans-serif; font-size: clamp(11px, .35vw + 9px, 14px); font-weight: 700; letter-spacing: .01em; border-radius: 999px; }
#header.header-scrolled .navbar > ul > li > a { color: var(--bicc-black); }
.navbar > ul > li > a:hover, .navbar > ul > li > a.active { color: var(--bicc-white); background: var(--bicc-blue); }
.navbar .dropdown ul { min-width: 240px; max-height: min(72vh, 620px); overflow-y: auto; padding: 10px; border: 1px solid var(--bicc-line); border-radius: 16px; box-shadow: var(--bicc-shadow); }
.navbar .dropdown ul a { padding: 10px 13px; border-radius: 9px; color: var(--bicc-black); font-size: 13px; }
.navbar .dropdown ul a:hover { color: var(--bicc-white); background: var(--bicc-blue); }
.navbar .dropdown .dropdown ul { left: calc(100% + 6px); }
.mobile-nav-toggle { color: var(--bicc-white); font-size: 30px; }
#header.header-scrolled .mobile-nav-toggle { color: var(--bicc-black); }

/* Desktop dropdowns: nested menus expand without clipping or phantom scrollbars. */
@media (min-width: 1200px) {
  #navbar .dropdown > ul {
    min-width: 250px;
    width: max-content;
    max-width: 320px;
    max-height: none;
    overflow: visible;
    padding: 10px;
  }
  #navbar .dropdown > ul > li { min-width: 230px; }
  #navbar .dropdown .dropdown { position: relative; }
  #navbar .dropdown .dropdown > ul {
    top: -10px;
    right: auto;
    left: calc(100% + 8px);
    margin: 0;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-5px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  #navbar .dropdown .dropdown:hover > ul {
    top: -10px;
    right: auto;
    left: calc(100% + 8px);
    visibility: visible;
    opacity: 1;
    transform: none;
  }
  #navbar .dropdown .dropdown > ul::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -10px;
    width: 12px;
  }
  #navbar .dropdown .dropdown .dropdown > ul {
    width: 290px;
    max-width: 290px;
    max-height: calc(100vh - 110px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: var(--bicc-blue) transparent;
  }
  #navbar .dropdown .dropdown .dropdown > ul::-webkit-scrollbar { width: 6px; }
  #navbar .dropdown .dropdown .dropdown > ul::-webkit-scrollbar-track { background: transparent; }
  #navbar .dropdown .dropdown .dropdown > ul::-webkit-scrollbar-thumb { background: var(--bicc-blue); border: 0; border-radius: 999px; }
}

/* Hero uses the project's original image reference and wording. */
#hero { min-height: max(700px, 100svh); height: auto; padding: 130px 20px 70px; background: linear-gradient(100deg, rgba(17,17,17,.88), rgba(17,17,17,.48) 56%, rgba(0,0,254,.2)), url("../img/hero-bg.jpg") center/cover no-repeat; position: relative; }
#hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 82% 20%, rgba(0,0,254,.38), transparent 32%), linear-gradient(0deg, rgba(17,17,17,.58), transparent 42%); }
#hero::after { content: ""; position: absolute; left: clamp(24px, 7vw, 110px); bottom: 34px; width: min(260px, 32vw); height: 4px; background: linear-gradient(90deg, var(--bicc-blue) 50%, var(--bicc-red) 50%); }
#hero .hero-container { z-index: 1; max-width: 1120px; width: 100%; padding-inline: clamp(4px, 5vw, 70px); text-align: left; align-items: flex-start; }
#hero h1 { max-width: 940px; margin: 0 0 22px; color: var(--bicc-white); font-family: "Poppins", sans-serif; font-size: clamp(48px, 7.4vw, 112px); line-height: .98; letter-spacing: -.055em; text-transform: none; }
#hero h2 { max-width: 650px; margin: 0 0 42px; color: rgba(255,255,255,.8); font-family: "Nunito", sans-serif; font-size: clamp(18px, 1.7vw, 27px); font-weight: 500; text-align: left; }
#hero .btn-get-started { margin: 0; padding: 15px 27px; color: var(--bicc-white); background: var(--bicc-red); border: 2px solid var(--bicc-red); border-radius: 999px; font-weight: 800; letter-spacing: .02em; }
#hero .btn-get-started:hover { color: var(--bicc-white); background: var(--bicc-blue); border-color: var(--bicc-blue); transform: translateY(-3px); box-shadow: 0 15px 35px rgba(0,0,254,.28); }

/* Shared editorial section treatment. */
#main > section, #main > .container-fluid { padding-block: clamp(72px, 8vw, 125px); }
.container { max-width: 1240px; }
.section-title { max-width: 820px; margin: 0 auto clamp(40px, 5vw, 70px); }
.section-title h2 { display: inline-flex; margin-bottom: 18px; padding: 8px 15px; border-radius: 999px; color: var(--bicc-blue); background: rgba(0,0,254,.07); font-size: 12px; line-height: 1; letter-spacing: .12em; text-transform: uppercase; }
.section-title h3 { color: var(--bicc-black); font-family: "Poppins", sans-serif; font-size: clamp(36px, 4.5vw, 64px); line-height: 1.08; letter-spacing: -.035em; }
.section-title h3 span { color: var(--bicc-red); }
.section-title p { color: #5e6470; font-size: clamp(16px, 1vw + 12px, 20px); line-height: 1.75; }

.about { background: var(--bicc-white); }
.about .row.content { padding: clamp(30px, 5vw, 64px); background: var(--bicc-soft); border: 1px solid var(--bicc-line); border-radius: clamp(22px, 3vw, 38px); }
.about .content p, .about .content li { color: #4f5561; line-height: 1.85; }
.about .content ul i { color: var(--bicc-blue); }
.btn-learn-more, .btn-learn, .cta .cta-btn { display: inline-flex; align-items: center; justify-content: center; width: auto; margin: 7px 5px; padding: 12px 22px; color: var(--bicc-blue); background: transparent; border: 1.5px solid var(--bicc-blue); border-radius: 999px; font-family: "Nunito", sans-serif; font-weight: 800; }
.btn-learn-more:hover, .btn-learn:hover { color: var(--bicc-white); background: var(--bicc-blue); }

.services { padding-top: 10px !important; background: var(--bicc-white); }
.services .row { justify-content: center; gap: 22px 0; }
.services .icon-box { width: 100%; padding: clamp(26px, 3vw, 42px); border: 1px solid var(--bicc-line); border-radius: 24px; background: var(--bicc-white); box-shadow: none; }
.services .icon-box:hover { border-color: rgba(0,0,254,.32); transform: translateY(-8px); box-shadow: var(--bicc-shadow); }
.services .title a { color: var(--bicc-black); font-family: "Poppins", sans-serif; font-size: 21px; }
.services .description { color: #606673; line-height: 1.7; }

.counter-facts { color: var(--bicc-white); background: linear-gradient(115deg, rgba(17,17,17,.96), rgba(17,17,17,.82)), url("../img/main-hero-1.jpg") center 42%/cover fixed !important; }
.counter-facts .row { row-gap: 18px; }
.counter-facts .counter { height: 100%; padding: 30px 18px; border: 1px solid rgba(255,255,255,.15); border-radius: 20px; background: rgba(255,255,255,.04); }
.counter-facts .counter h3 { color: rgba(255,255,255,.65); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.counter-facts .counter-value, .counter-facts .text-secondary { color: var(--bicc-white) !important; font-family: "Poppins", sans-serif; font-size: clamp(42px, 5vw, 68px) !important; line-height: 1; }
.counter-facts .col-xl-3:nth-child(odd) .counter-value { color: #7777ff !important; }
.counter-facts .col-xl-3:nth-child(even) .counter-value { color: #ff6666 !important; }

.cta { position: relative; color: var(--bicc-white); background: linear-gradient(115deg, rgba(17,17,17,.93), rgba(0,0,254,.45)), url("../img/main-hero-2.jpg") center/cover fixed !important; }
.cta + .cta { border-top: 1px solid rgba(255,255,255,.12); }
.cta h3 { color: var(--bicc-white); font-family: "Poppins", sans-serif; font-size: clamp(34px, 4vw, 58px); letter-spacing: -.03em; }
.cta p { max-width: 760px; margin-inline: auto; color: rgba(255,255,255,.7); font-size: 17px; }
.cta .bishop { width: min(330px, 78vw); aspect-ratio: 4 / 5; margin: 30px auto 12px; border-radius: 180px 180px 24px 24px; object-fit: cover; object-position: center 18%; box-shadow: 24px 24px 0 var(--bicc-blue), -12px -12px 0 var(--bicc-red); }
.cta .cta-btn { color: var(--bicc-white); border-color: rgba(255,255,255,.6); }
.cta .cta-btn:hover { color: var(--bicc-white); background: var(--bicc-blue); border-color: var(--bicc-blue); transform: translateY(-2px); }

#ads { background: var(--bicc-soft); }
#ads .main-banner { margin: 0; }
#ads .Modern-Slider { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; background: transparent; }
#ads .item { display: block !important; min-width: 0; overflow: hidden; border: 1px solid var(--bicc-line); border-radius: 28px; background: var(--bicc-black); box-shadow: var(--bicc-shadow); }
#ads .item .img-fill { position: relative; height: 100%; min-height: 510px; }
#ads .item .img-fill::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 24%, rgba(17,17,17,.9) 86%); }
#ads .item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
#ads .item:hover img { transform: scale(1.04); }
#ads .text-content { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; top: auto; padding: clamp(26px, 4vw, 46px); text-align: left; transform: none; }
#ads .text-content h3 { color: var(--bicc-white); font-family: "Poppins", sans-serif; font-size: clamp(25px, 2.2vw, 36px); line-height: 1.16; }
#ads .text-content h5 { color: rgba(255,255,255,.72); font-size: 15px; }
#ads .main-stroked-button, #ads .main-filled-button { display: inline-flex; margin: 13px 8px 0 0; padding: 12px 20px; border-radius: 999px; font-weight: 800; }
#ads .main-filled-button { color: var(--bicc-white); background: var(--bicc-blue); border-color: var(--bicc-blue); }

.contact { position: relative; background: var(--bicc-white); }
.contact iframe { display: block; width: 100%; max-width: 100%; min-height: 520px; border: 0; border-radius: 24px; background: var(--bicc-white); }
.feed { width: min(1180px, calc(100% - 40px)); margin: 0 auto 40px; padding: clamp(24px, 4vw, 50px); border: 1px solid var(--bicc-line); border-radius: clamp(24px, 3vw, 38px); background: linear-gradient(145deg, var(--bicc-white), var(--bicc-soft)); box-shadow: var(--bicc-shadow); }
.feed .section-title { margin-bottom: 34px; text-align: left; }
.feed .section-title h2 { color: var(--bicc-white); background: var(--bicc-blue); }
.feed .section-title p { margin: 0; }
.feed .section-title a { color: var(--bicc-blue); font-weight: 800; }
.feed iframe { overflow: hidden; border: 1px solid var(--bicc-line); box-shadow: 0 15px 45px rgba(17,17,17,.07); }
.facebook-feature { position: relative; display: block; min-height: clamp(360px, 48vw, 580px); overflow: hidden; border-radius: 26px; color: var(--bicc-white); background: var(--bicc-black); box-shadow: 0 18px 55px rgba(17,17,17,.13); }
.facebook-feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,254,.08), rgba(17,17,17,.72)); }
.facebook-feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.facebook-feature span { position: absolute; z-index: 2; right: clamp(22px, 4vw, 46px); bottom: clamp(22px, 4vw, 42px); left: clamp(22px, 4vw, 46px); display: flex; align-items: center; gap: 14px; font-family: "Poppins", sans-serif; font-size: clamp(20px, 2.5vw, 34px); font-weight: 700; }
.facebook-feature span .bi-arrow-up-right { margin-left: auto; }
.facebook-feature:hover { color: var(--bicc-white); }
.facebook-feature:hover img { transform: scale(1.035); }
#contact { isolation: isolate; background: linear-gradient(135deg, #f6f7fb 0%, #fff 52%, rgba(0,0,254,.05) 100%); }
#contact::before { content: ""; position: absolute; z-index: -1; top: 80px; right: -100px; width: 310px; height: 310px; border: 70px solid rgba(255,0,0,.045); border-radius: 50%; }
#contact .section-title { text-align: left; margin-left: 0; }
#contact .container { position: relative; }
#contact .row.mt-5 { margin-top: 0 !important; }
.body-class { padding: 0; width: 100%; }
.glass-card { width: min(820px, 100%); max-width: 820px; margin-inline: auto; padding: clamp(26px, 5vw, 58px); border: 1px solid rgba(17,17,17,.08); border-radius: 32px; background: rgba(255,255,255,.92); box-shadow: 0 30px 90px rgba(17,17,17,.11); backdrop-filter: blur(14px); }
.glass-card label { margin-top: 20px; color: var(--bicc-black); font-family: "Nunito", sans-serif; }
.glass-card input, .glass-card textarea, .glass-card select { margin-top: 8px; padding: 14px 18px !important; color: var(--bicc-black); background: var(--bicc-white); border: 1px solid var(--bicc-line) !important; border-radius: 14px !important; outline: none; }
.glass-card input:focus, .glass-card textarea:focus { border-color: var(--bicc-blue) !important; box-shadow: 0 0 0 4px rgba(0,0,254,.08); }
.glass-card button { width: auto; padding: 14px 26px; color: var(--bicc-white); background: var(--bicc-blue); border-radius: 999px; font-weight: 800; }
.glass-card button:hover { background: var(--bicc-red); }

#footer { color: var(--bicc-white); background: var(--bicc-black); box-shadow: none; }
#footer .footer-top { padding: 75px 0 40px; background: var(--bicc-black); border-top: 4px solid; border-image: linear-gradient(90deg, var(--bicc-blue) 50%, var(--bicc-red) 50%) 1; }
#footer .footer-top h3, #footer .footer-top h4 { color: var(--bicc-white); }
#footer .footer-top p, #footer .footer-top .footer-links ul a { color: rgba(255,255,255,.64); line-height: 1.8; }
#footer .footer-top .footer-links ul i { color: var(--bicc-red); }
#footer .footer-top .footer-links ul a:hover { color: var(--bicc-white); }
#footer > .container { border-top: 1px solid rgba(255,255,255,.12); }
#footer .credits, #footer .credits a { color: rgba(255,255,255,.55); }
.back-to-top, .back-to-top-d { display: flex; width: 48px; height: 48px; border-radius: 50%; box-shadow: 0 10px 25px rgba(17,17,17,.18); }
.back-to-top { right: 22px; bottom: 22px; background: var(--bicc-blue); }
.back-to-top-d { right: 80px; bottom: 22px; color: #21c063; background: var(--bicc-white); border: 1px solid rgba(17,17,17,.1); }
.back-to-top-d i { color: #21c063; }
.back-to-top-d:hover { color: var(--bicc-white); background: #21c063; transform: translateY(-3px); }
.back-to-top-d:hover i { color: var(--bicc-white); }

/* Unified modal system for the verse and marketplace popups. */
#custom-popup { position: fixed; z-index: 10000; inset: 0; display: grid; place-items: center; padding: 20px; animation: modalFade .35s ease both; }
#custom-popup[hidden] { display: none; }
#custom-popup.is-closing { animation: modalFade .22s ease reverse both; }
#custom-popup .popup-overlay { position: absolute; inset: 0; width: 100%; height: 100%; background: rgba(17,17,17,.7); opacity: 1; backdrop-filter: blur(10px); }
#custom-popup .popup-container { position: relative; z-index: 2; width: min(520px, 100%); max-height: min(760px, 90vh); overflow-y: auto; padding: clamp(30px, 5vw, 52px); border: 1px solid rgba(255,255,255,.65) !important; border-radius: 30px !important; background: var(--bicc-white); box-shadow: 0 35px 100px rgba(0,0,0,.35) !important; text-align: left; }
#custom-popup .popup-container::before { content: ""; display: block; width: 70px; height: 5px; margin-bottom: 28px; border-radius: 999px; background: linear-gradient(90deg, var(--bicc-blue) 50%, var(--bicc-red) 50%); }
#custom-popup .popup-container h2 { color: var(--bicc-black); font-family: "Poppins", sans-serif; text-align: left; }
#custom-popup .popup-container hr { border: 0; border-top: 1px solid var(--bicc-line); }
#custom-popup .verse-card { padding: 22px; border-radius: 18px; background: var(--bicc-soft); }
#custom-popup .close-popup { z-index: 3; top: max(28px, calc(50% - 340px)); right: max(28px, calc(50% - 230px)); display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: var(--bicc-black); background: var(--bicc-soft); cursor: pointer; }
.popup-ad { position: fixed; z-index: 9998; right: 24px; bottom: 88px; display: block; width: min(390px, calc(100vw - 32px)); padding: 28px; border: 1px solid var(--bicc-line) !important; border-radius: 24px !important; background: var(--bicc-white); box-shadow: 0 28px 80px rgba(17,17,17,.22) !important; opacity: 0; visibility: hidden; transform: translateY(18px) scale(.97); transition: .3s ease; }
.popup-ad.active { opacity: 1; visibility: visible; transform: none; }
.popup-ad::before { content: ""; display: block; width: 58px; height: 4px; margin-bottom: 20px; background: linear-gradient(90deg, var(--bicc-blue) 50%, var(--bicc-red) 50%); }
.popup-ad h3 { color: var(--bicc-black); font-family: "Poppins", sans-serif; font-size: 25px; }
.popup-ad p { color: #59606c; line-height: 1.7; }
.popup-ad .main-filled-button { display: inline-flex; margin: 6px 6px 0 0; padding: 10px 18px; border-radius: 999px; color: var(--bicc-white); background: var(--bicc-blue); cursor: pointer; }
@keyframes modalFade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

@media (max-width: 1199px) {
  #header { height: 72px; }
  #header .logo img { width: 132px; }
  #navbar.navbar-mobile { position: fixed; z-index: 999; inset: 72px 14px 14px; display: block; width: auto; height: auto; padding: 0; overflow: hidden; border: 1px solid var(--bicc-line); border-radius: 22px; background: rgba(255,255,255,.98); box-shadow: 0 25px 80px rgba(17,17,17,.2); backdrop-filter: blur(18px); }
  #navbar.navbar-mobile > ul { display: block !important; position: absolute; inset: 12px; margin: 0; padding: 8px; overflow-x: hidden; overflow-y: auto; background: transparent; border-radius: 16px; }
  #navbar.navbar-mobile > ul > li { display: block; width: 100%; }
  .navbar-mobile a { color: var(--bicc-black) !important; padding: 13px 15px; border-radius: 10px; }
  .navbar-mobile a:hover, .navbar-mobile .active { color: var(--bicc-white) !important; background: var(--bicc-blue); }
  #navbar.navbar-mobile .dropdown ul { position: static; display: none; width: auto; max-height: none; margin: 5px 0 8px 12px; padding: 8px; overflow: visible; border: 0; border-left: 2px solid rgba(0,0,254,.18); border-radius: 0; background: var(--bicc-soft); box-shadow: none; visibility: visible; opacity: 1; }
  #navbar.navbar-mobile .dropdown > .dropdown-active { display: block; }
  #navbar.navbar-mobile .mobile-nav-toggle { position: fixed; top: 19px; right: 22px; color: var(--bicc-black); }
  body.menu-open { overflow: hidden; }

  /* Body state prevents the legacy navbar's zero-height mobile layout from winning. */
  body.menu-open #navbar {
    position: fixed !important;
    z-index: 9999 !important;
    top: 82px !important;
    right: 12px !important;
    bottom: 12px !important;
    left: 12px !important;
    display: block !important;
    width: auto !important;
    height: calc(100dvh - 94px) !important;
    min-height: 300px !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 12px !important;
    overflow: hidden !important;
    border: 1px solid rgba(17,17,17,.1) !important;
    border-radius: 22px !important;
    background: rgba(255,255,255,.98) !important;
    box-shadow: 0 25px 80px rgba(17,17,17,.24) !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  body.menu-open #navbar > ul {
    position: static !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 6px !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  body.menu-open #navbar > ul > li { display: block !important; width: 100% !important; }
  body.menu-open #navbar > ul > li > a { display: flex !important; width: 100% !important; min-height: 46px; align-items: center; justify-content: space-between; }
  body.menu-open #navbar .mobile-nav-toggle {
    position: fixed !important;
    z-index: 10000 !important;
    top: 20px !important;
    right: 21px !important;
  }
}

@media (max-width: 767px) {
  #hero { min-height: 760px; padding-top: 120px; background-position: 58% center; }
  #hero .hero-container { justify-content: flex-end; padding-bottom: 80px; }
  #hero h1 { font-size: clamp(43px, 13vw, 66px); }
  #main > section, #main > .container-fluid { padding-block: 75px; }
  .about .row.content { padding: 26px 20px; border-radius: 22px; }
  .about .col-lg-6 + .col-lg-6 { margin-top: 12px; }
  .services .icon-box { padding: 27px 22px; }
  .cta .bishop { box-shadow: 12px 12px 0 var(--bicc-blue), -7px -7px 0 var(--bicc-red); }
  #ads .item img { aspect-ratio: 4 / 3; }
  #ads .Modern-Slider { grid-template-columns: 1fr; }
  #ads .item .img-fill { min-height: 440px; }
  .glass-card { padding: 26px 18px; border-radius: 20px; }
  .feed { width: calc(100% - 28px); padding: 20px 14px; border-radius: 24px; }
  .feed iframe { min-height: 470px; border-radius: 17px; }
  .back-to-top-d { right: 72px; }
  #custom-popup .close-popup { top: 28px; right: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
