/* ============================================================
   Betanet – Főstíluslap
   ============================================================ */

/* CSS változók */
:root {
    --bn-blue:        #1a5276;
    --bn-blue-light:  #2e86c1;
    --bn-blue-mid:    #1565C0;
    --bn-orange:      #e67e22;
    --bn-orange-dark: #ca6f1e;
    --bn-dark:        #1a1a2e;
    --bn-gray:        #6c757d;
    --bn-light:       #f4f7fb;
    --bn-white:       #ffffff;
    --bn-border:      #dee2e6;
    --bn-shadow:      0 2px 12px rgba(26,82,118,.10);
    --bn-radius:      8px;
    --bn-radius-lg:   16px;
    --transition:     all .22s ease;
}

/* ============================================================
   Alap
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #212529;
    background: #fff;
    line-height: 1.6;
}

a { color: var(--bn-blue-light); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--bn-blue); text-decoration: underline; }

img { max-width: 100%; height: auto; }

/* ============================================================
   Topbar
   ============================================================ */
.header-topbar {
    background: var(--bn-blue);
    color: rgba(255,255,255,.9);
    padding: .45rem 0;
    font-size: .85rem;
}

.topbar-link {
    color: rgba(255,255,255,.9);
    text-decoration: none;
}
.topbar-link:hover { color: #fff; text-decoration: underline; }

/* Email obfuszkáció link */
.email-protect a,
.email-protect-link {
    color: rgba(255,255,255,.9);
    text-decoration: none;
}
.email-protect a:hover { color: #fff; text-decoration: underline; }

.footer-list .email-protect a {
    color: rgba(255,255,255,.75);
}
.footer-list .email-protect a:hover { color: #fff; }

/* ============================================================
   Navigáció
   ============================================================ */
#main-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: var(--bn-shadow);
}

.navbar-logo {
    max-height: 55px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--bn-dark);
    font-weight: 500;
    padding: .5rem .8rem;
    border-radius: var(--bn-radius);
    transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--bn-blue-light);
    background: var(--bn-light);
}
.navbar-nav .nav-link.active {
    font-weight: 600;
}

/* ============================================================
   Hero / Slider
   ============================================================ */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: var(--bn-dark);
}
.hero-slide {
    display: none;
    position: relative;
    opacity: 0;
    transition: opacity .6s ease;
	height: 460px;
    overflow: hidden;
}
.hero-slide.active {
    display: block;
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    object-position: center;
    display: block;
}
@media (max-width: 768px) {
    .hero-slide img { height: 260px; }
	.hero-slide { height: 260px; }
}
.hero-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,.65));
    color: #fff;
    padding: 2rem 1.5rem 1.5rem;
}
.hero-caption h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: .3rem; }
.hero-caption p  { font-size: .95rem; margin: 0; opacity: .9; }

/* Slider navigation dots */
.slider-dots {
    position: absolute;
    bottom: .75rem;
    right: 1rem;
    display: flex;
    gap: .4rem;
    z-index: 10;
}
.slider-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}
.slider-dot.active { background: #fff; }

/* ============================================================
   Szekciók
   ============================================================ */
.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bn-blue);
    margin-bottom: .5rem;
}
.section-subtitle {
    color: var(--bn-gray);
    font-size: 1rem;
    margin-bottom: 2rem;
}
.section-divider {
    width: 60px;
    height: 3px;
    background: var(--bn-orange);
    border: none;
    margin: .75rem auto 1.5rem;
}

/* ============================================================
   Csomag kártyák
   ============================================================ */
.package-card {
    border: 1px solid var(--bn-border);
    border-radius: var(--bn-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.package-card:hover {
    box-shadow: 0 8px 30px rgba(26,82,118,.15);
    transform: translateY(-3px);
}
.package-card.featured {
    border-color: var(--bn-blue-light);
    border-width: 2px;
    position: relative;
}
.package-badge {
    position: absolute;
    top: -1px;
    right: 1.5rem;
    background: var(--bn-orange);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: .2rem .7rem;
    border-radius: 0 0 var(--bn-radius) var(--bn-radius);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.package-header {
    background: linear-gradient(135deg, var(--bn-blue) 0%, var(--bn-blue-mid) 100%);
    color: #fff;
    padding: 1.5rem;
    text-align: center;
}
.package-header h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: .25rem; }
.package-header .subtitle { font-size: .85rem; opacity: .85; margin-bottom: 0; }

.package-price {
    text-align: center;
    padding: 1.25rem 1.5rem .75rem;
    background: var(--bn-light);
    border-bottom: 1px solid var(--bn-border);
}
.package-price .amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--bn-blue);
    line-height: 1;
}
.package-price .currency { font-size: 1rem; color: var(--bn-gray); }
.package-price .period  { font-size: .8rem; color: var(--bn-gray); }
.package-price .action-price {
    font-size: .9rem;
    color: var(--bn-orange-dark);
    font-weight: 600;
    margin-top: .3rem;
}

.package-body {
    padding: 1.25rem 1.5rem;
    flex-grow: 1;
}
.package-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.package-body ul li {
    padding: .3rem 0;
    font-size: .9rem;
    display: flex;
    align-items: flex-start;
    gap: .5rem;
}
.package-body ul li::before {
    content: '';
    display: inline-block;
    width: 18px; height: 18px;
    min-width: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%232e86c1' d='M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425z'/%3E%3C/svg%3E") center/contain no-repeat;
    margin-top: 1px;
}

.package-footer {
    padding: 1rem 1.5rem 1.5rem;
    text-align: center;
}

/* ============================================================
   Gombok
   ============================================================ */
.btn-bn-primary {
    background: var(--bn-blue-light);
    border-color: var(--bn-blue-light);
    color: #fff;
    font-weight: 600;
    border-radius: var(--bn-radius);
    padding: .55rem 1.4rem;
    transition: var(--transition);
}
.btn-bn-primary:hover {
    background: var(--bn-blue);
    border-color: var(--bn-blue);
    color: #fff;
    transform: translateY(-1px);
}

.btn-bn-outline {
    border: 2px solid var(--bn-blue-light);
    color: var(--bn-blue-light);
    font-weight: 600;
    border-radius: var(--bn-radius);
    padding: .5rem 1.3rem;
    transition: var(--transition);
    background: transparent;
}
.btn-bn-outline:hover {
    background: var(--bn-blue-light);
    color: #fff;
}

.btn-bn-orange {
    background: var(--bn-orange);
    border-color: var(--bn-orange);
    color: #fff;
    font-weight: 600;
    border-radius: var(--bn-radius);
    padding: .55rem 1.4rem;
    transition: var(--transition);
}
.btn-bn-orange:hover {
    background: var(--bn-orange-dark);
    border-color: var(--bn-orange-dark);
    color: #fff;
}

/* ============================================================
   Kalkulátor
   ============================================================ */
.calc-card {
    background: #fff;
    border: 1px solid var(--bn-border);
    border-radius: var(--bn-radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.calc-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bn-blue);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--bn-light);
    padding-bottom: .5rem;
}

.calc-option {
    display: flex;
    align-items: center;
    padding: .7rem 1rem;
    border: 1px solid var(--bn-border);
    border-radius: var(--bn-radius);
    margin-bottom: .5rem;
    cursor: pointer;
    transition: var(--transition);
}
.calc-option:hover { border-color: var(--bn-blue-light); background: var(--bn-light); }
.calc-option input[type=radio]:checked + .calc-option-label {
    color: var(--bn-blue);
}
.calc-option:has(input:checked) {
    border-color: var(--bn-blue-light);
    background: #e8f4fc;
}
.calc-option input { margin-right: .75rem; width: 18px; height: 18px; }
.calc-option-label { flex-grow: 1; font-size: .95rem; }
.calc-option-price { font-weight: 700; color: var(--bn-blue); white-space: nowrap; margin-left: .5rem; }

.calc-total {
    background: linear-gradient(135deg, var(--bn-blue) 0%, var(--bn-blue-mid) 100%);
    color: #fff;
    border-radius: var(--bn-radius-lg);
    padding: 1.5rem 2rem;
    text-align: center;
}
.calc-total .total-label { font-size: .95rem; opacity: .85; margin-bottom: .25rem; }
.calc-total .total-amount { font-size: 3rem; font-weight: 800; line-height: 1; }
.calc-total .total-unit   { font-size: 1rem; opacity: .85; }

.huseg-toggle .btn-check + .btn {
    border: 2px solid var(--bn-border);
    color: var(--bn-dark);
    font-weight: 600;
    padding: .5rem 1.2rem;
}
.huseg-toggle .btn-check:checked + .btn {
    background: var(--bn-blue-light);
    border-color: var(--bn-blue-light);
    color: #fff;
}

/* ============================================================
   Csatornák
   ============================================================ */
.channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: .75rem;
}
.channel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .4rem;
}
.channel-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: var(--bn-radius);
    border: 1px solid var(--bn-border);
    background: #fff;
    padding: 4px;
}
.channel-logo-placeholder {
    width: 70px;
    height: 70px;
    border-radius: var(--bn-radius);
    border: 1px solid var(--bn-border);
    background: var(--bn-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    color: var(--bn-gray);
    text-align: center;
    padding: 4px;
}
.channel-name { font-size: .72rem; color: #444; line-height: 1.2; }

/* Tab stílusok a csatornalistához */
.channel-tabs .nav-link {
    font-size: .85rem;
    color: var(--bn-gray);
    border-radius: var(--bn-radius) var(--bn-radius) 0 0;
}
.channel-tabs .nav-link.active {
    color: var(--bn-blue);
    font-weight: 600;
    border-bottom-color: #fff;
}

/* ============================================================
   Kapcsolat oldal
   ============================================================ */
.contact-info-box {
    background: var(--bn-light);
    border-radius: var(--bn-radius-lg);
    padding: 1.5rem;
    height: 100%;
}
.contact-info-box h3 {
    font-size: 1.1rem;
    color: var(--bn-blue);
    font-weight: 700;
    margin-bottom: 1rem;
}
.contact-info-item {
    display: flex;
    gap: .75rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}
.contact-info-item .icon {
    width: 36px; height: 36px;
    min-width: 36px;
    background: var(--bn-blue-light);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
}

/* Kapcsolat form */
.contact-form-wrapper {
    background: #fff;
    border-radius: var(--bn-radius-lg);
    padding: 2rem;
    box-shadow: var(--bn-shadow);
}
.form-control, .form-select {
    border-radius: var(--bn-radius);
    border-color: var(--bn-border);
    padding: .6rem .9rem;
    font-size: .95rem;
}
.form-control:focus, .form-select:focus {
    border-color: var(--bn-blue-light);
    box-shadow: 0 0 0 .2rem rgba(46,134,193,.2);
}

/* ============================================================
   Internet speedometer kártya
   ============================================================ */
.speed-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--bn-blue) 0%, var(--bn-blue-mid) 100%);
    color: #fff;
    font-size: 2.5rem;
    font-weight: 900;
    padding: 1rem 1.5rem;
    border-radius: var(--bn-radius-lg);
    line-height: 1;
    min-width: 120px;
    text-align: center;
}
.speed-badge .unit { font-size: .9rem; font-weight: 400; opacity: .85; display: block; }

/* ============================================================
   Page hero (belső oldalak)
   ============================================================ */
.page-hero {
    background: linear-gradient(135deg, var(--bn-blue) 0%, var(--bn-blue-mid) 100%);
    color: #fff;
    padding: 3rem 0 2.5rem;
    margin-bottom: 2.5rem;
}
.page-hero h1 { font-size: 2rem; font-weight: 800; margin-bottom: .5rem; }
.page-hero .breadcrumb-item { color: rgba(255,255,255,.75); }
.page-hero .breadcrumb-item a { color: rgba(255,255,255,.85); }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,.95); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5); }

/* ============================================================
   Akciós banner sáv
   ============================================================ */
.promo-bar {
    background: var(--bn-orange);
    color: #fff;
    text-align: center;
    padding: .6rem 1rem;
    font-weight: 600;
    font-size: .95rem;
}
.promo-bar a { color: #fff; text-decoration: underline; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
    margin-top: 4rem;
    background: var(--bn-dark);
    color: rgba(255,255,255,.8);
}
.footer-ribbon-bar {
    background: var(--bn-blue);
    color: #fff;
    padding: .8rem 0;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
}
.footer-main { padding: 2.5rem 0; }
.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-list li {
    margin-bottom: .6rem;
    font-size: .88rem;
    line-height: 1.5;
}
.footer-link {
    color: rgba(255,255,255,.75);
    text-decoration: none;
    transition: var(--transition);
}
.footer-link:hover { color: #fff; text-decoration: none; }
.footer-bottom {
    background: rgba(0,0,0,.3);
    padding: .75rem 0;
    font-size: .82rem;
    color: rgba(255,255,255,.5);
}
.footer-link-sm {
    color: rgba(255,255,255,.5);
    text-decoration: none;
}
.footer-link-sm:hover { color: rgba(255,255,255,.8); }

/* ============================================================
   Phone link
   ============================================================ */
.phone-link { color: inherit; text-decoration: none; }
.phone-link:hover { text-decoration: underline; }

/* ============================================================
   Dokumentumok oldal
   ============================================================ */
.doc-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: 1px solid var(--bn-border);
    border-radius: var(--bn-radius);
    margin-bottom: .75rem;
    transition: var(--transition);
    background: #fff;
}
.doc-item:hover {
    border-color: var(--bn-blue-light);
    box-shadow: var(--bn-shadow);
    text-decoration: none;
}
.doc-icon { font-size: 1.8rem; color: #e74c3c; flex-shrink: 0; }
.doc-info .doc-name { font-weight: 600; color: var(--bn-dark); display: block; }
.doc-info .doc-desc { font-size: .85rem; color: var(--bn-gray); }

/* ============================================================
   Alerts / Flash üzenetek
   ============================================================ */
.alert { border-radius: var(--bn-radius); font-size: .95rem; }

/* ============================================================
   Breadcrumb override a page-hero-ban
   ============================================================ */
.page-hero .breadcrumb { margin-bottom: 0; }

/* ============================================================
   Rólunk oldal
   ============================================================ */
.about-icon-box {
    text-align: center;
    padding: 1.5rem;
    background: var(--bn-light);
    border-radius: var(--bn-radius-lg);
    height: 100%;
}
.about-icon-box .icon {
    font-size: 2.5rem;
    color: var(--bn-blue-light);
    margin-bottom: 1rem;
}
.about-icon-box h4 { font-size: 1rem; font-weight: 700; color: var(--bn-blue); }
.about-icon-box p  { font-size: .88rem; color: var(--bn-gray); margin: 0; }

/* ============================================================
   Admin gomb a fejlécben (ha be van lépve)
   ============================================================ */
.admin-bar {
    background: #212529;
    color: rgba(255,255,255,.7);
    font-size: .8rem;
    padding: .3rem 0;
    text-align: center;
}
.admin-bar a { color: rgba(255,255,255,.9); }

/* ============================================================
   Responsive tweaks
   ============================================================ */
@media (max-width: 576px) {
    .page-hero { padding: 2rem 0 1.5rem; }
    .page-hero h1 { font-size: 1.5rem; }
    .package-price .amount { font-size: 1.8rem; }
    .calc-total .total-amount { font-size: 2.2rem; }
    .hero-caption h2 { font-size: 1.1rem; }
    .channel-grid { grid-template-columns: repeat(auto-fill, minmax(75px, 1fr)); }
    .channel-logo, .channel-logo-placeholder { width: 60px; height: 60px; }
    .speed-badge { font-size: 1.8rem; }
}

@media (max-width: 768px) {
    .section-title { font-size: 1.5rem; }
    .calc-total .total-amount { font-size: 2.5rem; }
}

/* ============================================================
   Print stílusok
   ============================================================ */
@media print {
    .header-topbar,
    #main-header .navbar-toggler,
    .site-footer,
    .promo-bar { display: none; }
}

/* ============================================================
   Főoldal – három szolgáltatáskártya hero
   ============================================================ */
.service-cards-hero { overflow: hidden; }

.service-card-link {
    display: block;
    text-decoration: none;
}

.service-card {
    position: relative;
    height: 340px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: transform .35s ease;
}

.service-card-link:hover .service-card {
    transform: scale(1.03);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.05) 60%);
    transition: background .3s;
}

.service-card-link:hover .service-card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.15) 60%);
}

.service-card-label {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

@media (max-width: 768px) {
    .service-card { height: 200px; }
    .service-card-label { font-size: 1.1rem; bottom: 1rem; }
}

/* ============================================================
   Slider progress bar
   ============================================================ */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255,255,255,.25);
    z-index: 20;
}
.slider-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--bn-orange);
    transition: none;
}

/* ============================================================
   Observatory – unsafe-inline eltávolításához szükséges osztályok
   ============================================================ */

/* Sticky sidebar top offset */
.sticky-80 { position: sticky; top: 80px; }

/* Csomag kártyák full height */
.pkg-card-full { height: 100%; }

/* Package card headings */
.pkg-h2-lg { font-size: 1.4rem; font-weight: 700; margin-bottom: .3rem; }
.pkg-h2-md { font-size: 1.3rem; font-weight: 700; margin-bottom: .25rem; }
.pkg-h2-sm { font-size: 1.2rem; font-weight: 700; margin-bottom: .15rem; }
.pkg-subtitle { font-size: .8rem; }
.pkg-info-text { font-size: .85rem; }
.pkg-section-h3 { color: var(--bn-blue); font-size: 1.1rem; }
.pkg-section-h3-sm { color: var(--bn-blue); font-size: 1rem; }

/* Szöveg szín segédosztályok */
.text-bn-blue       { color: var(--bn-blue); }
.text-bn-blue-light { color: var(--bn-blue-light); }
.text-bn-gray       { color: var(--bn-gray); }

/* Háttér szín segédosztályok */
.bg-bn-light      { background: var(--bn-light); }
.bg-gradient-blue { background: linear-gradient(135deg, var(--bn-blue) 0%, var(--bn-blue-mid) 100%); }
.bg-promo-yellow  { background: #fff3cd; }

/* Oldal hero szekció */
.section-bg-light { background: var(--bn-light); padding-top: 3rem; padding-bottom: 3rem; }
.section-bg-blue  { background: linear-gradient(135deg, var(--bn-blue) 0%, var(--bn-blue-mid) 100%); padding-top: 3rem; padding-bottom: 3rem; }

/* Internet sebesség kijelző */
.speed-number      { font-size: 2rem; font-weight: 700; color: var(--bn-blue); line-height: 1; }
.speed-number-unit { font-size: 1rem; }
.speed-guaranteed  { font-size: 1.5rem; font-weight: 700; color: var(--bn-blue-light); }
.speed-guaranteed-unit { font-size: .85rem; }

/* 404 oldal nagy szám */
.error-number {
    font-size: 5rem;
    color: var(--bn-blue-light);
    opacity: .3;
}

/* Kapcsolat – tárgy link szín */
.link-bn-blue { color: var(--bn-blue-light); }

/* Kapcsolat – honeypot elrejtés */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
}

/* Logó szöveg fallback */
.navbar-brand-text {
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--bn-blue);
}

/* Csatorna badge */
.channel-count-badge { font-size: .7rem; }

/* Info box */
.info-box-bg {
    background: var(--bn-light);
    font-size: .85rem;
}

/* Scroll-to-top gomb */
.btn-scroll-top {
    display: none;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bn-blue-light);
    color: #fff;
    border: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(0,0,0,.3);
    cursor: pointer;
}
.btn-scroll-top.visible { display: flex; }

/* Kalkulátor checkbox */
.calc-checkbox-input {
    width: 18px;
    height: 18px;
    margin-right: .75rem;
}

/* Letöltés oldal – nem hatályos ikon */
.doc-icon-gray { color: var(--bn-gray); }

/* Info panel padding */
.info-panel {
    background: var(--bn-light);
    border-radius: var(--bn-radius-lg);
    padding: 1.5rem;
    height: 100%;
}

/* ============================================================
   Matematikai CAPTCHA
   ============================================================ */
.captcha-box { margin-bottom: .5rem; }
.captcha-question {
    font-size: 1.15rem;
    color: var(--bn-blue);
    font-family: 'Courier New', monospace;
    background: var(--bn-light);
    padding: .1rem .5rem;
    border-radius: 4px;
}
.captcha-input { font-size: 1rem; font-weight: 700; }
