/* inline-style */
/* =========================================
                   1. PREMIUM VARIABLES (Cinematic UI)
                ========================================= */
                :root {
                    /* Color Palette */
                    --bg-super-dark: #020203;       /* Deeper Black */
                    --bg-panel: #0a0a0d;            /* Main Dark Surface */
                    --bg-card: rgba(255, 255, 255, 0.02); /* Frost/Glass */
                    --bg-card-hover: rgba(255, 255, 255, 0.05);

                    /* Text Elements */
                    --text-heading: #ffffff;
                    --text-body: #94a3b8;           /* Elegant Slate */
                    --text-dim: #475569;            /* Deep Muted */

                    /* Brand / Accent Gradients */
                    --accent-main: #3b82f6;         /* Solid Blue */
                    --accent-glow: rgba(59, 130, 246, 0.3);
                    --gradient-accent: linear-gradient(135deg, #2563eb, #0ea5e9);
                    --success: #10b981;

                    /* Structural */
                    --border-thin: rgba(255, 255, 255, 0.06);
                    --border-highlight: rgba(255, 255, 255, 0.15);

                    /* Shadow Engine */
                    --shadow-float: 0 10px 30px -10px rgba(0, 0, 0, 0.8);
                    --shadow-neon: 0 0 20px -5px var(--accent-main);
                }


                ul { list-style: none; padding: 0; margin: 0; }
                a { text-decoration: none; color: inherit; transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
                * { box-sizing: border-box; }

                /* =========================================
                   2. MAIN WRAPPER & GLOW EFFECT
                ========================================= */
                .premium-footer {
                    background-color: var(--bg-panel);
                    color: var(--text-body);
                    font-size: 15px;
                    position: relative;
                    padding-top: 80px;
                    overflow: hidden;
                    box-shadow: 0 -20px 40px -20px rgba(0,0,0,0.5);
                }

                /* Cinematic Top Neon Edge */
                .premium-footer::before {
                    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
                    background: linear-gradient(90deg, transparent, var(--accent-main), transparent);
                    opacity: 0.6;
                }

                /* Background Aurora Effect */
                .premium-footer::after {
                    content: ''; position: absolute; top: -50px; left: 50%; transform: translateX(-50%);
                    width: 70%; height: 250px;
                    background: radial-gradient(ellipse at top, rgba(37, 99, 235, 0.12), transparent 70%);
                    pointer-events: none; z-index: 0;
                }

                .container {
                    max-width: 1280px;
                    margin: 0 auto;
                    padding: 0 24px;
                    position: relative;
                    z-index: 2; /* Sits above the aurora */
                }

                .footer-grid {
                    display: grid;
                    grid-template-columns: 320px 1fr 1fr 300px; /* Precise column control */
                    gap: 50px;
                    margin-bottom: 70px;
                }

                /* =========================================
                   3. BRAND & SOCIAL COLUMN
                ========================================= */
                .brand-logo {
                    height: 48px;
                    width: auto;
                    margin-bottom: 24px;
                    display: block;
                    filter: drop-shadow(0px 4px 10px rgba(0,0,0,0.5));
                    transition: 0.4s;
                }
                .brand-logo:hover { filter: drop-shadow(0px 0px 15px rgba(255,255,255,0.2)); }

                .brand-desc {
                    line-height: 1.7;
                    font-weight: 400;
                    margin-bottom: 30px;
                    color: #cbd5e1;
                }

                .social-row { display: flex; gap: 12px; }
                .social-btn {
                    width: 44px; height: 44px;
                    border-radius: 12px;
                    background: var(--bg-card);
                    border: 1px solid var(--border-thin);
                    color: var(--text-heading);
                    display: flex; align-items: center; justify-content: center;
                    font-size: 18px;
                    backdrop-filter: blur(10px);
                    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                }
                .social-btn:hover {
                    background: var(--gradient-accent);
                    border-color: transparent;
                    transform: translateY(-5px) scale(1.05);
                    box-shadow: var(--shadow-neon);
                    color: white;
                }

                /* =========================================
                   4. HEADINGS & LINKS
                ========================================= */
                .widget-title {
                    color: var(--text-heading);
                    font-weight: 700;
                    font-size: 17px;
                    margin-bottom: 28px;
                    letter-spacing: 0.5px;
                    text-transform: uppercase;
                }

                .footer-links li { margin-bottom: 16px; position: relative; }
                .footer-links a {
                    display: inline-flex; align-items: center;
                    color: var(--text-body);
                    font-weight: 500;
                }
                .footer-links a i {
                    margin-right: 12px; font-size: 15px;
                    color: var(--accent-main);
                    opacity: 0.7; transition: 0.3s;
                }
                .footer-links a:hover { color: var(--text-heading); transform: translateX(8px); }
                .footer-links a:hover i { opacity: 1; text-shadow: var(--shadow-neon); }

                .live-badge {
                    font-size: 9px; font-weight: 800; letter-spacing: 1px;
                    background: rgba(16, 185, 129, 0.15); color: var(--success);
                    padding: 3px 8px; border-radius: 6px; margin-left: 10px;
                    border: 1px solid rgba(16, 185, 129, 0.3);
                    box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
                    animation: pulse-badge 2s infinite;
                }
                @keyframes pulse-badge { 0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); } 70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); } 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); } }

                /* =========================================
                   5. COMPATIBILITY (SMART TV STYLE CARDS)
                ========================================= */
                .compat-item {
                    display: flex; align-items: center; gap: 16px;
                    background: var(--bg-card); border: 1px solid var(--border-thin);
                    padding: 14px 18px; border-radius: 14px;
                    margin-bottom: 12px; backdrop-filter: blur(8px);
                    transition: all 0.3s ease;
                    position: relative; overflow: hidden;
                }
                /* Glow inside the card on hover */
                .compat-item::before {
                    content: ''; position: absolute; left: 0; top: 0; width: 3px; height: 100%;
                    background: var(--gradient-accent); transform: scaleY(0); transition: 0.3s;
                }
                .compat-item:hover {
                    background: var(--bg-card-hover);
                    border-color: var(--border-highlight);
                    transform: scale(1.02);
                }
                .compat-item:hover::before { transform: scaleY(1); }

                .c-icon-wrap { font-size: 22px; color: var(--text-heading); opacity: 0.9; }
                .c-text strong { display: block; font-size: 14px; color: var(--text-heading); font-weight: 600; letter-spacing: 0.3px; }
                .c-text span { display: block; font-size: 12px; color: var(--text-body); margin-top: 3px; }

                /* =========================================
                   6. HELP & SUPPORT CARD (VIP STYLE)
                ========================================= */
                .support-card {
                    background: linear-gradient(145deg, rgba(255,255,255,0.03), transparent);
                    border: 1px solid var(--border-thin);
                    padding: 24px; border-radius: 16px;
                    position: relative; overflow: hidden;
                    box-shadow: inset 0 0 20px rgba(255,255,255,0.01);
                }

                .support-row { margin-bottom: 18px; display: flex; align-items: flex-start; gap: 14px; }
                .support-icon {
                    color: #fff; background: var(--gradient-accent);
                    width: 38px; height: 38px; border-radius: 10px;
                    display: grid; place-items: center; font-size: 16px;
                    box-shadow: 0 4px 12px var(--accent-glow);
                }
                .support-info strong { display: block; color: var(--text-heading); font-size: 15px; margin-bottom: 4px; font-weight: 600; }
                .support-info span { font-size: 13px; color: var(--text-body); display: block; }

                .contact-btn {
                    display: block; width: 100%;
                    background: var(--text-heading); color: var(--bg-super-dark);
                    padding: 14px; border-radius: 10px;
                    font-weight: 700; font-size: 14px; text-align: center;
                    margin-top: 24px; position: relative; z-index: 1;
                    transition: all 0.3s ease; border: none; overflow: hidden;
                }
                .contact-btn::before {
                    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
                    background: var(--gradient-accent); opacity: 0; z-index: -1; transition: 0.3s;
                }
                .contact-btn:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 10px 20px var(--accent-glow); }
                .contact-btn:hover::before { opacity: 1; }

                /* =========================================
                   7. FOOTER BOTTOM (Tech Partner & Crypto)
                ========================================= */
                .footer-bottom {
                    background: rgba(0,0,0,0.6);
                    border-top: 1px solid var(--border-thin);
                    padding: 30px 0; backdrop-filter: blur(10px);
                    margin-top: 20px;
                }
                .bottom-flex {
                    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;
                }

                /* Copyright & Legal */
                .copy-col { font-size: 13px; color: var(--text-dim); }
                .copy-text { color: var(--text-body); margin-bottom: 8px; display: block; }
                .copy-text b { color: var(--text-heading); }
                .legal-links { display: flex; gap: 16px; }
                .legal-links a { color: var(--text-dim); position: relative; padding-bottom: 2px;}
                .legal-links a:hover { color: var(--accent-main); }

                /* Tech Badge Modern */
                .tech-badge {
                    display: flex; align-items: center; gap: 14px;
                    background: rgba(255,255,255,0.02); padding: 8px 20px;
                    border-radius: 50px; border: 1px solid rgba(255,255,255,0.05);
                    transition: 0.3s; text-decoration: none !important;
                }
                .tech-badge span { font-size: 10px; text-transform: uppercase; font-weight: 700; letter-spacing: 0.8px; color: var(--text-dim); }
                .tech-badge img { height: 18px; filter: grayscale(1) opacity(0.7); transition: 0.4s; }
                .tech-badge:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.15); box-shadow: 0 5px 15px rgba(0,0,0,0.3); transform: translateY(-2px); }
                .tech-badge:hover img { filter: grayscale(0) opacity(1); }

                /* Payment Icons */
                .pay-icons { display: flex; gap: 18px; align-items: center; }
                .pay-icon-box {
                    color: var(--text-dim); font-size: 24px; transition: 0.3s;
                    display: flex; align-items: center; justify-content: center;
                }
                .pay-icon-box:hover.pay-transfer { color: var(--accent-main); transform: scale(1.1) rotate(10deg); }
                .pay-icon-box:hover.pay-cash { color: #f59e0b; transform: scale(1.1); }
                .pay-icon-box:hover.pay-btc { color: #f7931a; transform: scale(1.1) rotate(5deg); text-shadow: 0 0 10px rgba(247, 147, 26, 0.4); }

                /* =========================================
                   8. RESPONSIVE MATRIX
                ========================================= */
                @media (max-width: 1024px) {
                    .footer-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
                    .col-brand, .col-help { grid-column: auto; }
                }
                @media (max-width: 768px) {
                    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
                    .bottom-flex { flex-direction: column; text-align: center; gap: 30px; }
                    .legal-links { justify-content: center; flex-wrap: wrap; }
                    .brand-logo { margin: 0 auto 24px; }
                    .col-brand, .brand-desc { text-align: center; margin: 0 auto; }
                    .social-row { justify-content: center; margin-bottom: 20px; }
                }

                /* =========================================
                   9. SCROLL TO TOP (Elevated)
                ========================================= */
                .scroll-top-btn {
                    position: fixed;
                    bottom: 35px;
                    left: 35px; /* cleaned legacy comment */
                    z-index: 999;
                    width: 50px;
                    height: 50px;
                    background: #0d6efd; /* Albastru complet / full blue */
                    border: none; /* Am eliminat bordura pentru un aspect solid modern */
                    color: #ffffff; /* cleaned legacy comment */
                    border-radius: 50%;
                    font-size: 18px;
                    cursor: pointer;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    opacity: 0;
                    visibility: hidden;

                    /* cleaned legacy comment */
                    transform: translateX(-40px) scale(0.9);

                    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
                    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.4); /* cleaned legacy comment */
                }

                /* cleaned legacy comment */
                .scroll-top-btn.is-visible {
                    opacity: 1;
                    visibility: visible;
                    transform: translateX(0) scale(1);
                }

                /* cleaned legacy comment */
                .scroll-top-btn:hover {
                    background: #0056b3; /* cleaned legacy comment */
                    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.6); /* cleaned legacy comment */
                    transform: translateY(-5px) scale(1.1);
                }
                /* cleaned legacy comment */
                /* cleaned legacy comment */
                /* cleaned legacy comment */
                .premium-footer{
                  flex-shrink: 0 !important;
                }

/* novaplay-footer-logo-only-support-hours */
html body .np-footer-clean .np-footer-support-mini--online {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  width: fit-content !important;
  margin-top: 14px !important;
  padding: 9px 12px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(32, 226, 151, .34) !important;
  background: rgba(16, 185, 129, .12) !important;
  color: #d9fff1 !important;
}

html body .np-footer-clean .np-footer-support-mini--online .np-footer-support-icon {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  border-radius: 50% !important;
  color: #06140f !important;
  background: linear-gradient(135deg, #37f2a2, #10b981) !important;
  box-shadow: 0 0 22px rgba(16, 185, 129, .28) !important;
}

html body .np-footer-clean .np-footer-support-mini--online strong {
  display: block !important;
  color: #ffffff !important;
  font-size: .9rem !important;
  line-height: 1.1 !important;
  font-weight: 950 !important;
}

html body .np-footer-clean .np-footer-support-mini--online small {
  display: block !important;
  margin-top: 2px !important;
  color: #80ffd0 !important;
  font-size: .72rem !important;
  font-weight: 850 !important;
}

html body .np-footer-clean .np-footer-bottom {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 22px !important;
}

html body .np-footer-clean .np-footer-bottom-brand {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

html body .np-footer-clean .np-footer-bottom-logo {
  width: 74px !important;
  max-width: 74px !important;
  height: auto !important;
  display: block !important;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .55)) drop-shadow(0 0 14px rgba(35, 211, 255, .22)) !important;
}

html body .np-footer-clean .np-footer-payments {
  display: none !important;
}

html body .np-footer-clean .np-footer-legal {
  justify-content: flex-end !important;
}

@media (max-width: 760px) {
  html body .np-footer-clean .np-footer-bottom {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
  }

  html body .np-footer-clean .np-footer-legal {
    justify-content: center !important;
  }
}

/* novaplay-cookie-core-theme */
.legal-cookie-button{border:0;background:transparent;color:inherit;font:inherit;cursor:pointer;padding:0;position:relative}
.legal-cookie-button:hover{color:#9bdcff}
.novaplay-cookie-consent{position:fixed;left:18px;right:18px;bottom:18px;z-index:10050;display:none;width:min(1080px,calc(100% - 36px));max-width:1080px;margin:0 auto;color:rgba(235,245,255,.9);background:radial-gradient(circle at 0 0,rgba(35,211,255,.18),transparent 34%),radial-gradient(circle at 100% 0,rgba(255,178,26,.14),transparent 30%),linear-gradient(145deg,rgba(10,18,33,.98),rgba(3,6,13,.99));border:1px solid rgba(151,213,255,.18);border-radius:18px;box-shadow:0 28px 90px rgba(0,0,0,.56),inset 0 1px 0 rgba(255,255,255,.06);overflow:hidden;backdrop-filter:blur(22px) saturate(118%);-webkit-backdrop-filter:blur(22px) saturate(118%)}
.novaplay-cookie-consent.is-visible{display:block}
.novaplay-cookie-shell{display:grid;grid-template-columns:minmax(0,1fr) 330px;gap:0}
.novaplay-cookie-main,.novaplay-cookie-side{padding:clamp(18px,2.2vw,26px)}
.novaplay-cookie-main{background:transparent}
.novaplay-cookie-side{background:linear-gradient(160deg,rgba(35,211,255,.11),rgba(255,178,26,.10)),rgba(255,255,255,.035);border-left:1px solid rgba(151,213,255,.14);color:rgba(235,245,255,.86);display:flex;flex-direction:column;justify-content:space-between;gap:18px}
.novaplay-cookie-eyebrow{min-height:28px;display:inline-flex;align-items:center;gap:9px;margin-bottom:12px;padding:6px 11px;border-radius:999px;border:1px solid rgba(151,213,255,.18);color:#9bdcff;background:rgba(35,211,255,.08);font-size:.72rem;font-weight:900;letter-spacing:.06em;line-height:1;text-transform:uppercase}
.novaplay-cookie-eyebrow i{color:#ffb21a}
.novaplay-cookie-side .novaplay-cookie-eyebrow{color:#ffd166;background:rgba(255,178,26,.10);border-color:rgba(255,178,26,.24)}
.novaplay-cookie-title,.novaplay-cookie-side h3{margin:0 0 10px;color:#fff;font-weight:950;letter-spacing:0}
.novaplay-cookie-title{font-size:clamp(1.35rem,2vw,2rem);line-height:1.08}
.novaplay-cookie-side h3{font-size:1.1rem;line-height:1.22}
.novaplay-cookie-copy,.novaplay-cookie-side p{margin:0;color:rgba(226,239,255,.78);font-size:.94rem;line-height:1.6}
.novaplay-cookie-side p{font-size:.86rem}
.novaplay-cookie-copy a,.novaplay-cookie-side a{color:#9bdcff;font-weight:900;text-decoration-color:rgba(155,220,255,.5);text-underline-offset:3px}
.novaplay-cookie-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}
.novaplay-cookie-btn{min-height:44px;display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:0 16px;border-radius:999px;border:1px solid rgba(151,213,255,.18);color:rgba(241,247,255,.9);background:rgba(255,255,255,.055);font-size:.84rem;font-weight:900;line-height:1;white-space:nowrap;box-shadow:inset 0 1px 0 rgba(255,255,255,.05),0 14px 28px rgba(0,0,0,.18);cursor:pointer;transition:transform .16s ease,border-color .16s ease,background .16s ease}
.novaplay-cookie-btn:hover{transform:translateY(-1px);border-color:rgba(151,213,255,.34);background:rgba(255,255,255,.085)}
.novaplay-cookie-btn.primary{color:#07101d;border-color:rgba(255,178,26,.84);background:linear-gradient(135deg,#23d3ff 0%,#ffb21a 72%);box-shadow:0 18px 38px rgba(35,211,255,.16),0 12px 26px rgba(255,178,26,.14)}
.novaplay-cookie-btn.reject,.novaplay-cookie-btn.ghost,.novaplay-cookie-btn.dark{color:rgba(235,245,255,.9);background:rgba(255,255,255,.055);border:1px solid rgba(151,213,255,.18)}
.novaplay-cookie-btn.dark{width:100%}
.novaplay-cookie-settings{display:none;padding:18px 24px 22px;border-top:1px solid rgba(151,213,255,.14);background:rgba(2,8,18,.68)}
.novaplay-cookie-settings.is-open{display:block}
.novaplay-cookie-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.novaplay-cookie-card,.novaplay-cookie-details{color:rgba(226,239,255,.78);background:rgba(255,255,255,.045);border:1px solid rgba(151,213,255,.14);border-radius:14px;box-shadow:inset 0 1px 0 rgba(255,255,255,.045)}
.novaplay-cookie-card{padding:14px}
.novaplay-cookie-card-head{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;margin-bottom:8px}
.novaplay-cookie-card strong{display:block;color:#fff;font-size:14px;font-weight:900}
.novaplay-cookie-card small,.novaplay-cookie-card p,.novaplay-cookie-details div,.novaplay-cookie-status{color:rgba(226,239,255,.68)}
.novaplay-cookie-card small{display:block;font-size:12px;margin-top:2px}
.novaplay-cookie-card p{margin:0;font-size:12px;line-height:1.5}
.novaplay-cookie-switch{position:relative;display:inline-flex;width:48px;height:28px;flex:0 0 auto}
.novaplay-cookie-switch input{opacity:0;width:0;height:0}
.novaplay-cookie-slider{position:absolute;cursor:pointer;inset:0;background:rgba(255,255,255,.18);border:1px solid rgba(151,213,255,.16);border-radius:999px;transition:.2s}
.novaplay-cookie-slider:before{content:'';position:absolute;width:22px;height:22px;left:3px;top:2px;background:#fff;border-radius:50%;box-shadow:0 4px 12px rgba(0,0,0,.28);transition:.2s}
.novaplay-cookie-switch input:checked+.novaplay-cookie-slider,.novaplay-cookie-switch input:disabled+.novaplay-cookie-slider{background:linear-gradient(135deg,#23d3ff,#8ee64f)}
.novaplay-cookie-switch input:checked+.novaplay-cookie-slider:before{transform:translateX(20px)}
.novaplay-cookie-switch input:disabled+.novaplay-cookie-slider{cursor:not-allowed}
.novaplay-cookie-details{margin-top:14px;overflow:hidden}
.novaplay-cookie-details summary{cursor:pointer;font-weight:900;color:#fff;padding:13px 14px}
.novaplay-cookie-details div{padding:0 14px 14px;font-size:12px;line-height:1.55}
.novaplay-cookie-table{width:100%;border-collapse:collapse;margin-top:8px}
.novaplay-cookie-table th,.novaplay-cookie-table td{color:rgba(226,239,255,.76);border-top:1px solid rgba(151,213,255,.12);text-align:left;padding:8px;vertical-align:top}
.novaplay-cookie-table th{color:#9bdcff;font-size:11px;text-transform:uppercase;letter-spacing:.04em}
.novaplay-cookie-footer-actions{display:flex;justify-content:space-between;align-items:center;gap:14px;margin-top:14px;flex-wrap:wrap}
.novaplay-cookie-status{font-size:12px}
.novaplay-cookie-status strong{color:#fff}
@media(max-width:860px){.novaplay-cookie-consent{left:10px;right:10px;bottom:10px;width:calc(100% - 20px);max-height:min(86vh,760px);border-radius:18px;overflow:auto}.novaplay-cookie-shell{grid-template-columns:1fr}.novaplay-cookie-side{order:-1;border-left:0;border-bottom:1px solid rgba(151,213,255,.14)}.novaplay-cookie-grid{grid-template-columns:1fr}.novaplay-cookie-actions,.novaplay-cookie-footer-actions .novaplay-cookie-actions{display:grid;grid-template-columns:1fr;width:100%}.novaplay-cookie-btn{width:100%}}
@media(max-width:520px){.novaplay-cookie-title{font-size:1.35rem}.novaplay-cookie-copy{font-size:.88rem}.novaplay-cookie-table{display:block;overflow-x:auto;white-space:nowrap}}

/* np-footer-compact-inline */
html body .premium-footer.np-site-footer.np-footer-clean{padding:clamp(1.9rem,3vw,3rem) 0 0!important;background:radial-gradient(circle at 10% 12%,rgba(255,185,45,.10),transparent 24%),radial-gradient(circle at 84% 0%,rgba(0,156,255,.16),transparent 30%),linear-gradient(180deg,#05070c 0%,#06111c 54%,#030509 100%)!important}
html body .np-footer-clean .np-footer-wrap{width:min(1180px,calc(100% - 42px))!important}
html body .np-footer-clean .np-footer-hero{grid-template-columns:minmax(0,1fr) minmax(330px,.78fr) auto!important;gap:18px!important;padding:18px!important;margin-bottom:22px!important;border-radius:18px!important;background:rgba(255,255,255,.035)!important;border-color:rgba(151,213,255,.14)!important;box-shadow:inset 0 1px 0 rgba(255,255,255,.055),0 18px 44px rgba(0,0,0,.22)!important}
html body .np-footer-clean .np-footer-brand-block{grid-template-columns:165px minmax(0,1fr)!important;gap:16px!important}
html body .np-footer-clean .np-footer-brand-block img{width:165px!important;max-width:165px!important;filter:brightness(1.18) contrast(1.14) saturate(1.18) drop-shadow(0 10px 20px rgba(0,0,0,.55))!important}
html body .np-footer-clean .np-footer-brand-block p,html body .np-footer-clean .np-footer-support-card p{font-size:.9rem!important;line-height:1.45!important}
html body .np-footer-clean .np-footer-metrics{gap:8px!important}
html body .np-footer-clean .np-footer-metrics span{min-height:58px!important;padding:9px 10px!important;border-radius:13px!important;background:rgba(255,255,255,.04)!important}
html body .np-footer-clean .np-footer-metrics strong{font-size:1.13rem!important}
html body .np-footer-clean .np-footer-metrics small{margin-top:4px!important;font-size:.72rem!important;line-height:1.12!important}
html body .np-footer-clean .np-footer-cta{min-height:42px!important;padding:0 17px!important;font-size:.88rem!important;box-shadow:0 10px 24px rgba(255,255,255,.08)!important}
html body .np-footer-clean .np-footer-grid-clean{gap:26px!important;margin-bottom:18px!important;padding:20px 2px 0!important;border-top:1px solid rgba(255,255,255,.075)!important}
html body .np-footer-clean .np-footer-col{padding:0!important;border:0!important;border-radius:0!important;background:transparent!important;box-shadow:none!important}
html body .np-footer-clean .np-footer-col h3{margin-bottom:10px!important;font-size:.78rem!important;letter-spacing:.11em!important;color:rgba(255,255,255,.92)!important}
html body .np-footer-clean .np-footer-col ul{gap:7px!important}
html body .np-footer-clean .np-footer-col a{gap:8px!important;font-size:.88rem!important;line-height:1.25!important}
html body .np-footer-clean .np-footer-badges{margin-top:12px!important;gap:7px!important}
html body .np-footer-clean .np-footer-badges span{padding:6px 9px!important;font-size:.72rem!important}
html body .np-footer-clean .np-footer-bottom{padding:15px 0 18px!important;gap:14px!important;font-size:.84rem!important}
@media (max-width:1080px){html body .np-footer-clean .np-footer-hero{grid-template-columns:1fr!important}html body .np-footer-clean .np-footer-grid-clean{grid-template-columns:repeat(2,minmax(0,1fr))!important}}
@media (max-width:720px){html body .premium-footer.np-site-footer.np-footer-clean{padding-top:24px!important}html body .np-footer-clean .np-footer-wrap{width:calc(100% - 28px)!important}html body .np-footer-clean .np-footer-hero{gap:12px!important;padding:14px!important;margin-bottom:18px!important;border-radius:16px!important}html body .np-footer-clean .np-footer-brand-block{grid-template-columns:118px minmax(0,1fr)!important;gap:12px!important}html body .np-footer-clean .np-footer-brand-block img{width:118px!important;max-width:118px!important}html body .np-footer-clean .np-footer-brand-block p,html body .np-footer-clean .np-footer-support-card p{font-size:.78rem!important;line-height:1.35!important}html body .np-footer-clean .np-footer-metrics{grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:6px!important}html body .np-footer-clean .np-footer-metrics span{min-height:0!important;padding:8px 5px!important;text-align:center!important;border-radius:12px!important}html body .np-footer-clean .np-footer-metrics strong{font-size:.95rem!important}html body .np-footer-clean .np-footer-metrics small{font-size:.58rem!important;line-height:1.08!important}html body .np-footer-clean .np-footer-cta{min-height:40px!important;width:100%!important;font-size:.82rem!important}html body .np-footer-clean .np-footer-grid-clean{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:18px 16px!important;padding-top:16px!important;margin-bottom:12px!important}html body .np-footer-clean .np-footer-support-card{grid-column:1/-1!important}html body .np-footer-clean .np-footer-col h3{font-size:.68rem!important;margin-bottom:8px!important}html body .np-footer-clean .np-footer-col a{font-size:.78rem!important;gap:6px!important}html body .np-footer-clean .np-footer-col a i{width:13px!important}html body .np-footer-clean .np-footer-badges{margin-top:9px!important}html body .np-footer-clean .np-footer-bottom{padding:12px 0 96px!important;text-align:left!important;justify-items:start!important}html body .np-footer-clean .np-footer-legal{justify-content:flex-start!important;gap:9px!important}html body .np-footer-clean .np-footer-legal a,html body .np-footer-clean .legal-cookie-button{font-size:.74rem!important}}

/* np-footer-reference-refresh */
html body .premium-footer.np-site-footer.np-footer-clean {
  padding: 54px 0 0 !important;
  background:
    linear-gradient(90deg, rgba(255,178,26,.08), transparent 34%, rgba(14,165,255,.08)),
    linear-gradient(180deg, #03050b 0%, #050914 58%, #020307 100%) !important;
  border-top: 1px solid rgba(255,255,255,.12) !important;
}

html body .np-footer-clean .np-footer-wrap {
  width: min(1240px, calc(100% - 56px)) !important;
}

html body .np-footer-clean .np-footer-hero {
  grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr) auto !important;
  align-items: center !important;
  gap: 22px !important;
  padding: 22px !important;
  margin-bottom: 28px !important;
  border-radius: 0 !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  background: rgba(255,255,255,.035) !important;
  box-shadow: none !important;
}

html body .np-footer-clean .np-footer-brand-block {
  grid-template-columns: 205px minmax(0, 1fr) !important;
  gap: 18px !important;
  align-items: center !important;
}

html body .np-footer-clean .np-footer-brand-block img {
  width: 205px !important;
  max-width: 205px !important;
  filter: brightness(1.22) contrast(1.18) saturate(1.18) drop-shadow(0 14px 26px rgba(0,0,0,.62)) drop-shadow(0 0 16px rgba(14,165,255,.30)) !important;
}

html body .np-footer-clean .np-footer-brand-block p {
  color: rgba(255,255,255,.76) !important;
  font-size: .96rem !important;
  line-height: 1.55 !important;
}

html body .np-footer-clean .np-footer-brand-block p strong {
  display: block !important;
  margin-bottom: 5px !important;
  color: #ffffff !important;
  font-weight: 950 !important;
}

html body .np-footer-clean .np-footer-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

html body .np-footer-clean .np-footer-metrics span {
  min-height: 66px !important;
  padding: 11px 12px !important;
  border-radius: 0 !important;
  border: 1px solid rgba(255,255,255,.13) !important;
  background: rgba(255,255,255,.035) !important;
}

html body .np-footer-clean .np-footer-metrics strong {
  color: #fff !important;
  font-size: 1.12rem !important;
}

html body .np-footer-clean .np-footer-metrics small {
  color: rgba(255,255,255,.62) !important;
  font-size: .72rem !important;
}

html body .np-footer-clean .np-footer-cta {
  min-height: 46px !important;
  padding: 0 20px !important;
  border-radius: 0 !important;
  color: #050608 !important;
  background: #ffb21a !important;
  border: 1px solid #ffb21a !important;
  box-shadow: none !important;
  font-weight: 950 !important;
  white-space: nowrap !important;
}

html body .np-footer-clean .np-footer-grid-clean {
  grid-template-columns: 1fr 1.18fr 1fr 1.1fr !important;
  gap: 34px !important;
  padding: 26px 0 0 !important;
  border-top: 1px solid rgba(255,255,255,.10) !important;
}

html body .np-footer-clean .np-footer-col h3 {
  color: #fff !important;
  font-size: .78rem !important;
  font-weight: 950 !important;
  letter-spacing: .08em !important;
}

html body .np-footer-clean .np-footer-col ul {
  display: grid !important;
  gap: 8px !important;
}

html body .np-footer-clean .np-footer-col a {
  color: rgba(255,255,255,.72) !important;
  font-size: .9rem !important;
}

html body .np-footer-clean .np-footer-col a i {
  color: #ffb21a !important;
}

html body .np-footer-clean .np-footer-col a:hover {
  color: #fff !important;
}

html body .np-footer-clean .np-footer-col del {
  color: rgba(255,255,255,.42) !important;
  text-decoration-color: #ffb21a !important;
  text-decoration-thickness: 2px !important;
}

html body .np-footer-clean .np-footer-support-card {
  padding: 18px !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  background: rgba(255,255,255,.035) !important;
}

html body .np-footer-clean .np-footer-support-card p {
  color: rgba(255,255,255,.72) !important;
  line-height: 1.55 !important;
}

html body .np-footer-clean .np-footer-badges span {
  border-radius: 0 !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  color: rgba(255,255,255,.82) !important;
  background: transparent !important;
}

html body .np-footer-clean .np-footer-bottom {
  margin-top: 24px !important;
  padding: 18px 0 22px !important;
  border-top: 1px solid rgba(255,255,255,.10) !important;
  color: rgba(255,255,255,.58) !important;
}

html body .np-footer-clean .np-footer-legal a,
html body .np-footer-clean .legal-cookie-button {
  color: rgba(255,255,255,.62) !important;
}

html body .np-footer-clean .np-footer-legal a:hover,
html body .np-footer-clean .legal-cookie-button:hover {
  color: #ffb21a !important;
}

@media (max-width: 1080px) {
  html body .np-footer-clean .np-footer-hero,
  html body .np-footer-clean .np-footer-grid-clean {
    grid-template-columns: 1fr !important;
  }

  html body .np-footer-clean .np-footer-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  html body .premium-footer.np-site-footer.np-footer-clean {
    padding-top: 34px !important;
  }

  html body .np-footer-clean .np-footer-wrap {
    width: calc(100% - 28px) !important;
  }

  html body .np-footer-clean .np-footer-hero {
    padding: 16px !important;
  }

  html body .np-footer-clean .np-footer-brand-block {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  html body .np-footer-clean .np-footer-brand-block img {
    width: 160px !important;
    max-width: 160px !important;
  }

  html body .np-footer-clean .np-footer-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  html body .np-footer-clean .np-footer-grid-clean {
    gap: 22px !important;
  }
}

/* novaplay-footer-logo-transparent-final */
html body .np-footer-clean .np-footer-brand-block {
  grid-template-columns: 230px minmax(0, 1fr) !important;
  align-items: center !important;
}

html body .np-footer-clean .np-footer-brand-block img {
  width: 230px !important;
  max-width: 230px !important;
  height: auto !important;
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  mix-blend-mode: normal !important;
  object-fit: contain !important;
  filter:
    drop-shadow(0 16px 30px rgba(0,0,0,.48))
    drop-shadow(0 0 18px rgba(0,184,255,.22))
    brightness(1.12)
    contrast(1.12)
    saturate(1.14) !important;
}

html body .np-footer-clean .np-footer-hero {
  background:
    linear-gradient(135deg, rgba(255,255,255,.052), rgba(255,255,255,.022)) !important;
}

@media (max-width: 720px) {
  html body .np-footer-clean .np-footer-brand-block {
    grid-template-columns: 1fr !important;
    justify-items: start !important;
  }

  html body .np-footer-clean .np-footer-brand-block img {
    width: 190px !important;
    max-width: 190px !important;
  }
}

/* novaplay-footer-wordmark-balance-final */
html body .np-footer-clean .np-footer-hero {
  grid-template-columns: minmax(440px, 1.05fr) minmax(360px, .95fr) auto !important;
  align-items: center !important;
}

html body .np-footer-clean .np-footer-brand-block {
  grid-template-columns: 210px minmax(0, 1fr) !important;
  gap: 22px !important;
  align-items: center !important;
}

html body .np-footer-clean .np-footer-brand-block img {
  width: 210px !important;
  max-width: 210px !important;
  height: auto !important;
  display: block !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  object-fit: contain !important;
  filter:
    drop-shadow(0 18px 34px rgba(0,0,0,.52))
    drop-shadow(0 0 20px rgba(0,184,255,.28))
    brightness(1.14)
    contrast(1.14)
    saturate(1.14) !important;
}

html body .np-footer-clean .np-footer-brand-block p {
  max-width: 340px !important;
}

@media (max-width: 1080px) {
  html body .np-footer-clean .np-footer-hero {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 720px) {
  html body .np-footer-clean .np-footer-brand-block {
    grid-template-columns: 1fr !important;
    justify-items: start !important;
    gap: 12px !important;
  }

  html body .np-footer-clean .np-footer-brand-block img {
    width: 184px !important;
    max-width: 184px !important;
  }
}

/* novaplay-footer-wordmark-rebuild-final */
html body .np-footer-clean .np-footer-brand-block {
  grid-template-columns: 250px minmax(0, 1fr) !important;
  gap: 24px !important;
  align-items: center !important;
}

html body .np-footer-clean .np-footer-wordmark {
  width: 250px !important;
  min-height: 112px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 82px !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 0 !important;
  color: #fff !important;
  text-decoration: none !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

html body .np-footer-clean .np-footer-wordmark-text {
  display: grid !important;
  gap: 8px !important;
  line-height: .88 !important;
  min-width: 0 !important;
}

html body .np-footer-clean .np-footer-wordmark-text strong {
  display: block !important;
  color: #f8fbff !important;
  font-size: 2.2rem !important;
  line-height: .9 !important;
  font-weight: 950 !important;
  letter-spacing: .03em !important;
  text-shadow: 0 14px 26px rgba(0,0,0,.42), 0 0 18px rgba(76,190,255,.22) !important;
}

html body .np-footer-clean .np-footer-wordmark-text em {
  display: block !important;
  font-style: normal !important;
  font-size: 1.16rem !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  letter-spacing: .48em !important;
  color: transparent !important;
  background: linear-gradient(90deg, #14c8ff 0%, #1f7cff 33%, #a7e340 60%, #ffd84d 78%, #ff334f 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  text-shadow: none !important;
}

html body .np-footer-clean .np-footer-wordmark-icon {
  width: 82px !important;
  height: 82px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 50% !important;
  color: #9fe9ff !important;
  background:
    radial-gradient(circle at 38% 34%, rgba(30, 210, 255, .58), rgba(0, 86, 255, .30) 38%, rgba(4, 10, 25, .22) 62%, transparent 72%) !important;
  border: 1px solid rgba(113, 213, 255, .42) !important;
  box-shadow:
    0 20px 40px rgba(0,0,0,.45),
    0 0 34px rgba(0, 150, 255, .28),
    inset 0 1px 0 rgba(255,255,255,.20) !important;
}

html body .np-footer-clean .np-footer-wordmark-icon i {
  margin-left: 5px !important;
  font-size: 2rem !important;
  color: #dff8ff !important;
  filter: drop-shadow(0 0 12px rgba(74, 210, 255, .72)) !important;
}

html body .np-footer-clean .np-footer-brand-block p {
  max-width: 360px !important;
}

@media (max-width: 720px) {
  html body .np-footer-clean .np-footer-brand-block {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  html body .np-footer-clean .np-footer-wordmark {
    width: 220px !important;
    min-height: 94px !important;
    grid-template-columns: minmax(0, 1fr) 68px !important;
    gap: 10px !important;
  }

  html body .np-footer-clean .np-footer-wordmark-text strong {
    font-size: 1.88rem !important;
  }

  html body .np-footer-clean .np-footer-wordmark-text em {
    font-size: .98rem !important;
  }

  html body .np-footer-clean .np-footer-wordmark-icon {
    width: 68px !important;
    height: 68px !important;
  }

  html body .np-footer-clean .np-footer-wordmark-icon i {
    font-size: 1.55rem !important;
  }
}

/* novaplay-footer-original-hq-logo-final */
html body .np-footer-clean .np-footer-brand-block {
  grid-template-columns: 285px minmax(0, 1fr) !important;
  gap: 24px !important;
  align-items: center !important;
}

html body .np-footer-clean .np-footer-logo-hq,
html body .np-footer-clean .np-footer-brand-block > img {
  width: 285px !important;
  max-width: 285px !important;
  height: auto !important;
  display: block !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  object-fit: contain !important;
  object-position: center center !important;
  filter:
    drop-shadow(0 18px 34px rgba(0,0,0,.55))
    drop-shadow(0 0 22px rgba(0,184,255,.30))
    brightness(1.12)
    contrast(1.12)
    saturate(1.13) !important;
}

html body .np-footer-clean .np-footer-wordmark {
  display: none !important;
}

html body .np-footer-clean .np-footer-brand-block p {
  max-width: 360px !important;
}

@media (max-width: 720px) {
  html body .np-footer-clean .np-footer-brand-block {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    justify-items: start !important;
  }

  html body .np-footer-clean .np-footer-logo-hq,
  html body .np-footer-clean .np-footer-brand-block > img {
    width: 220px !important;
    max-width: 220px !important;
  }
}

/* novaplay-footer-cta-buttons-pro */
html body .np-footer-clean .np-footer-cta {
  min-width: 0 !important;
  min-height: 42px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  padding: 0 16px !important;
  border-radius: 0 !important;
  border: 1px solid rgba(255, 178, 26, .34) !important;
  background: rgba(255, 178, 26, .075) !important;
  color: #ffd37a !important;
  font-size: .82rem !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

html body .np-footer-clean .np-footer-cta i {
  width: 20px !important;
  height: 20px !important;
  flex: 0 0 20px !important;
  display: inline-grid !important;
  place-items: center !important;
  border-radius: 0 !important;
  border: 1px solid rgba(255, 178, 26, .22) !important;
  background: rgba(255, 178, 26, .10) !important;
  color: #ffb21a !important;
  font-size: .7rem !important;
  box-shadow: none !important;
}

html body .np-footer-clean .np-footer-cta:hover {
  transform: translateY(-1px) !important;
  color: #ffe1a0 !important;
  border-color: rgba(255, 178, 26, .52) !important;
  background: rgba(255, 178, 26, .115) !important;
  box-shadow: none !important;
}

html body .np-footer-clean .np-footer-col a {
  min-height: 28px !important;
  align-items: center !important;
  gap: 8px !important;
  color: rgba(204, 228, 247, .84) !important;
  font-weight: 850 !important;
}

html body .np-footer-clean .np-footer-col a i {
  width: 18px !important;
  height: 18px !important;
  flex: 0 0 18px !important;
  display: inline-grid !important;
  place-items: center !important;
  border-radius: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #8ed8ff !important;
  font-size: .82rem !important;
  box-shadow: none !important;
}

html body .np-footer-clean .np-footer-col a:hover {
  color: #fff !important;
  transform: translateX(4px) !important;
}

html body .np-footer-clean .np-footer-col a:hover i {
  color: #ffb21a !important;
  text-shadow: none !important;
}

html body .np-footer-clean .np-footer-support-card {
  background: rgba(255, 255, 255, .028) !important;
  border-color: rgba(255, 255, 255, .12) !important;
}

html body .np-footer-clean .np-footer-badges {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
  margin-top: 14px !important;
}

html body .np-footer-clean .np-footer-badges span {
  width: auto !important;
  min-width: 0 !important;
  min-height: 28px !important;
  flex: 0 0 auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 9px !important;
  border-radius: 0 !important;
  border: 1px solid rgba(255, 255, 255, .12) !important;
  background: rgba(255, 255, 255, .035) !important;
  color: rgba(226, 239, 255, .72) !important;
  font-size: .68rem !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  text-align: center !important;
  box-shadow: none !important;
}

@media (max-width: 720px) {
  html body .np-footer-clean .np-footer-cta {
    width: 100% !important;
  }

  html body .np-footer-clean .np-footer-badges {
    display: flex !important;
  }
}

/* novaplay-status-final-card-fix */
html body .status-page .status-hero,
html body .status-page .status-live-card,
html body .status-page .status-stat,
html body .status-page .server-card,
html body .status-page .status-info-panel,
html body .status-page .status-info-card,
html body .status-page .status-alert{
    color:#f7fbff!important;
    background:linear-gradient(145deg,rgba(255,255,255,.078),rgba(255,255,255,.032))!important;
    border:1px solid rgba(255,255,255,.13)!important;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.07),0 20px 54px rgba(0,0,0,.32)!important;
}
html body .status-page .status-live-card{
    background:radial-gradient(circle at 50% 0%,rgba(20,200,255,.26),transparent 54%),linear-gradient(145deg,rgba(255,255,255,.09),rgba(255,255,255,.038))!important;
}
html body .status-page .server-card{
    background:radial-gradient(circle at 86% 0%,color-mix(in srgb,var(--status-color,#38bdf8) 18%,transparent),transparent 42%),linear-gradient(145deg,rgba(255,255,255,.068),rgba(255,255,255,.03))!important;
}
html body .status-page .status-stat{
    background:linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.028))!important;
}
html body .status-page .metric{
    background:rgba(255,255,255,.05)!important;
    border:1px solid rgba(255,255,255,.08)!important;
    color:#f7fbff!important;
}
html body .status-page .status-hero h1,
html body .status-page .status-section-title h2,
html body .status-page .status-info-panel h2,
html body .status-page .status-live-value,
html body .status-page .status-stat span,
html body .status-page .node-name,
html body .status-page .metric-value,
html body .status-page .status-info-card h3{
    color:#fff!important;
    -webkit-text-fill-color:#fff!important;
    background:none!important;
}
html body .status-page .status-hero p,
html body .status-page .status-section-title p,
html body .status-page .status-info-card p,
html body .status-page .status-info-card li,
html body .status-page .status-stat em,
html body .status-page .node-role,
html body .status-page .metric-label,
html body .status-page .metric-sub-value,
html body .status-page .status-live-label,
html body .status-page .status-live-note{
    color:rgba(226,239,255,.74)!important;
    -webkit-text-fill-color:rgba(226,239,255,.74)!important;
}
html body .status-page .status-kicker,
html body .status-page .status-refresh-pill{
    color:#d8eeff!important;
    background:rgba(255,255,255,.072)!important;
    border:1px solid rgba(255,255,255,.14)!important;
}
html body .status-page .status-pill{
    color:#06101d!important;
    -webkit-text-fill-color:#06101d!important;
    background:var(--status-bg,#dbeafe)!important;
}
html body .status-page .status-pill .icon{
    color:var(--status-color,#38bdf8)!important;
    -webkit-text-fill-color:var(--status-color,#38bdf8)!important;
}
html body .status-page .progress-bar-container{
    background:rgba(255,255,255,.08)!important;
    border:1px solid rgba(255,255,255,.08)!important;
}
html body .status-page .maintenance-window{
    color:#06101d!important;
    -webkit-text-fill-color:#06101d!important;
    background:linear-gradient(135deg,#ffe766,#ffbd4a)!important;
}

/* novaplay-cookie-absolute-final */
html body #novaplayCookieConsent.novaplay-cookie-consent {
  width: min(1040px, calc(100% - 36px)) !important;
  max-width: 1040px !important;
  left: 18px !important;
  right: 18px !important;
  bottom: 18px !important;
  color: rgba(232, 241, 255, .88) !important;
  background: #050914 !important;
  background-image:
    radial-gradient(circle at 0% 0%, rgba(35, 211, 255, .18), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(255, 178, 26, .14), transparent 31%),
    linear-gradient(145deg, #081324 0%, #04070e 100%) !important;
  border: 1px solid rgba(151, 213, 255, .18) !important;
  border-radius: 18px !important;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .62), inset 0 1px 0 rgba(255, 255, 255, .06) !important;
  overflow: hidden !important;
}

html body #novaplayCookieConsent .novaplay-cookie-shell {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 330px !important;
  background: #050914 !important;
}

html body #novaplayCookieConsent .novaplay-cookie-main {
  background: linear-gradient(145deg, rgba(7, 16, 30, .98), rgba(3, 7, 15, .98)) !important;
  color: rgba(232, 241, 255, .88) !important;
  padding: 26px !important;
}

html body #novaplayCookieConsent .novaplay-cookie-side {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 178, 26, .14), transparent 40%),
    linear-gradient(160deg, rgba(7, 24, 43, .98), rgba(6, 13, 24, .98)) !important;
  color: rgba(232, 241, 255, .86) !important;
  border-left: 1px solid rgba(151, 213, 255, .14) !important;
  padding: 26px !important;
}

html body #novaplayCookieConsent .novaplay-cookie-title,
html body #novaplayCookieConsent .novaplay-cookie-side h3,
html body #novaplayCookieConsent .novaplay-cookie-card strong,
html body #novaplayCookieConsent .novaplay-cookie-details summary {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-shadow: none !important;
}

html body #novaplayCookieConsent .novaplay-cookie-title {
  font-size: clamp(1.4rem, 2.1vw, 2.05rem) !important;
  line-height: 1.08 !important;
  margin-bottom: 12px !important;
}

html body #novaplayCookieConsent .novaplay-cookie-copy,
html body #novaplayCookieConsent .novaplay-cookie-side p,
html body #novaplayCookieConsent .novaplay-cookie-card p,
html body #novaplayCookieConsent .novaplay-cookie-card small,
html body #novaplayCookieConsent .novaplay-cookie-details div,
html body #novaplayCookieConsent .novaplay-cookie-status,
html body #novaplayCookieConsent .novaplay-cookie-table td {
  color: rgba(216, 232, 250, .76) !important;
  -webkit-text-fill-color: rgba(216, 232, 250, .76) !important;
}

html body #novaplayCookieConsent .novaplay-cookie-copy a,
html body #novaplayCookieConsent .novaplay-cookie-side a {
  color: #8ed8ff !important;
  -webkit-text-fill-color: #8ed8ff !important;
  text-decoration-color: rgba(142, 216, 255, .52) !important;
}

html body #novaplayCookieConsent .novaplay-cookie-eyebrow {
  color: #9bdcff !important;
  -webkit-text-fill-color: #9bdcff !important;
  background: rgba(35, 211, 255, .09) !important;
  border: 1px solid rgba(151, 213, 255, .18) !important;
  border-radius: 999px !important;
}

html body #novaplayCookieConsent .novaplay-cookie-side .novaplay-cookie-eyebrow {
  color: #ffd166 !important;
  -webkit-text-fill-color: #ffd166 !important;
  background: rgba(255, 178, 26, .10) !important;
  border-color: rgba(255, 178, 26, .26) !important;
}

html body #novaplayCookieConsent .novaplay-cookie-settings {
  background: #050914 !important;
  background-image: linear-gradient(180deg, rgba(10, 24, 43, .92), rgba(4, 8, 16, .96)) !important;
  border-top: 1px solid rgba(151, 213, 255, .14) !important;
}

html body #novaplayCookieConsent .novaplay-cookie-card,
html body #novaplayCookieConsent .novaplay-cookie-details {
  background: rgba(255, 255, 255, .045) !important;
  border: 1px solid rgba(151, 213, 255, .14) !important;
  border-radius: 14px !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .045) !important;
}

html body #novaplayCookieConsent .novaplay-cookie-btn {
  min-height: 44px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(151, 213, 255, .18) !important;
  background: rgba(255, 255, 255, .055) !important;
  color: rgba(241, 247, 255, .90) !important;
  -webkit-text-fill-color: rgba(241, 247, 255, .90) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05), 0 14px 28px rgba(0, 0, 0, .18) !important;
}

html body #novaplayCookieConsent .novaplay-cookie-btn.primary {
  color: #07101d !important;
  -webkit-text-fill-color: #07101d !important;
  border-color: rgba(255, 178, 26, .88) !important;
  background: linear-gradient(135deg, #23d3ff 0%, #ffb21a 74%) !important;
}

html body #novaplayCookieConsent .novaplay-cookie-btn.reject,
html body #novaplayCookieConsent .novaplay-cookie-btn.ghost,
html body #novaplayCookieConsent .novaplay-cookie-btn.dark {
  background: rgba(255, 255, 255, .055) !important;
  color: rgba(241, 247, 255, .88) !important;
  -webkit-text-fill-color: rgba(241, 247, 255, .88) !important;
}

html body #novaplayCookieConsent .novaplay-cookie-slider {
  background: rgba(255, 255, 255, .18) !important;
  border: 1px solid rgba(151, 213, 255, .18) !important;
}

html body #novaplayCookieConsent .novaplay-cookie-switch input:checked + .novaplay-cookie-slider,
html body #novaplayCookieConsent .novaplay-cookie-switch input:disabled + .novaplay-cookie-slider {
  background: linear-gradient(135deg, #23d3ff, #8ee64f) !important;
}

html body #novaplayCookieConsent .novaplay-cookie-table th,
html body #novaplayCookieConsent .novaplay-cookie-table td {
  border-top: 1px solid rgba(151, 213, 255, .12) !important;
}

html body #novaplayCookieConsent .novaplay-cookie-table th {
  color: #9bdcff !important;
  -webkit-text-fill-color: #9bdcff !important;
}

@media (max-width: 860px) {
  html body #novaplayCookieConsent.novaplay-cookie-consent {
    left: 10px !important;
    right: 10px !important;
    bottom: 10px !important;
    width: calc(100% - 20px) !important;
  }

  html body #novaplayCookieConsent .novaplay-cookie-shell {
    grid-template-columns: 1fr !important;
  }

  html body #novaplayCookieConsent .novaplay-cookie-side {
    border-left: 0 !important;
    border-bottom: 1px solid rgba(151, 213, 255, .14) !important;
  }
}

/* novaplay-cookie-button-theme-final */
html body #novaplayCookieConsent .novaplay-cookie-actions,
html body #novaplayCookieConsent .novaplay-cookie-footer {
  gap: 12px !important;
}

html body #novaplayCookieConsent .novaplay-cookie-btn {
  min-height: 46px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(143, 218, 255, .24) !important;
  background:
    linear-gradient(135deg, rgba(143, 218, 255, .08), rgba(255, 178, 26, .045)),
    rgba(255, 255, 255, .055) !important;
  color: #edf7ff !important;
  -webkit-text-fill-color: #edf7ff !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 14px 30px rgba(0, 0, 0, .22) !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  transition: transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease !important;
}

html body #novaplayCookieConsent .novaplay-cookie-btn.primary {
  color: #05101d !important;
  -webkit-text-fill-color: #05101d !important;
  border-color: rgba(255, 178, 26, .70) !important;
  background: linear-gradient(135deg, #26d7ff 0%, #8fe86a 42%, #ffb21a 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .35),
    0 18px 42px rgba(35, 211, 255, .12),
    0 16px 34px rgba(255, 178, 26, .12) !important;
}

html body #novaplayCookieConsent .novaplay-cookie-btn.reject,
html body #novaplayCookieConsent .novaplay-cookie-btn.ghost,
html body #novaplayCookieConsent .novaplay-cookie-btn.dark {
  border-color: rgba(151, 213, 255, .24) !important;
  background:
    linear-gradient(135deg, rgba(35, 211, 255, .09), rgba(255, 255, 255, .04)),
    rgba(8, 16, 28, .86) !important;
  color: rgba(239, 247, 255, .92) !important;
  -webkit-text-fill-color: rgba(239, 247, 255, .92) !important;
}

html body #novaplayCookieConsent .novaplay-cookie-side .novaplay-cookie-btn {
  border-color: rgba(255, 178, 26, .28) !important;
  background:
    linear-gradient(135deg, rgba(255, 178, 26, .10), rgba(35, 211, 255, .055)),
    rgba(255, 255, 255, .052) !important;
}

html body #novaplayCookieConsent .novaplay-cookie-btn:hover,
html body #novaplayCookieConsent .novaplay-cookie-btn:focus-visible {
  transform: translateY(-1px) !important;
  border-color: rgba(151, 226, 255, .52) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .12),
    0 20px 42px rgba(0, 0, 0, .30),
    0 0 26px rgba(35, 211, 255, .10) !important;
}

html body #novaplayCookieConsent .novaplay-cookie-btn.primary:hover,
html body #novaplayCookieConsent .novaplay-cookie-btn.primary:focus-visible {
  border-color: rgba(255, 214, 112, .86) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .38),
    0 22px 48px rgba(35, 211, 255, .15),
    0 18px 38px rgba(255, 178, 26, .16) !important;
}

@media (max-width: 720px) {
  html body #novaplayCookieConsent .novaplay-cookie-actions,
  html body #novaplayCookieConsent .novaplay-cookie-footer {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
}

/* novaplay-checkout-cookie-compact */
html body.nv-checkout-theme #novaplayCookieConsent.novaplay-cookie-consent {
  width: min(720px, calc(100% - 28px)) !important;
  max-width: 720px !important;
  left: 50% !important;
  right: auto !important;
  bottom: 14px !important;
  transform: translateX(-50%) !important;
  border-radius: 14px !important;
  background: rgba(5, 9, 20, .96) !important;
  border: 1px solid rgba(142, 223, 255, .18) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,.42) !important;
}
html body.nv-checkout-theme #novaplayCookieConsent .novaplay-cookie-shell {
  display: block !important;
  background: transparent !important;
}
html body.nv-checkout-theme #novaplayCookieConsent .novaplay-cookie-main {
  padding: 15px 16px !important;
  background: transparent !important;
}
html body.nv-checkout-theme #novaplayCookieConsent .novaplay-cookie-side,
html body.nv-checkout-theme #novaplayCookieConsent .novaplay-cookie-settings,
html body.nv-checkout-theme #novaplayCookieConsent .novaplay-cookie-copy {
  display: none !important;
}
html body.nv-checkout-theme #novaplayCookieConsent .novaplay-cookie-eyebrow {
  margin-bottom: 8px !important;
  padding: 5px 9px !important;
  font-size: .68rem !important;
}
html body.nv-checkout-theme #novaplayCookieConsent .novaplay-cookie-title {
  margin: 0 0 12px !important;
  font-size: 1.05rem !important;
  line-height: 1.18 !important;
}
html body.nv-checkout-theme #novaplayCookieConsent .novaplay-cookie-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}
html body.nv-checkout-theme #novaplayCookieConsent .novaplay-cookie-btn {
  min-height: 38px !important;
  width: auto !important;
  padding: 0 14px !important;
  border-radius: 10px !important;
  font-size: .78rem !important;
  white-space: nowrap !important;
}
@media (max-width: 560px) {
  html body.nv-checkout-theme #novaplayCookieConsent.novaplay-cookie-consent {
    width: calc(100% - 18px) !important;
    bottom: 9px !important;
  }
  html body.nv-checkout-theme #novaplayCookieConsent .novaplay-cookie-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
  html body.nv-checkout-theme #novaplayCookieConsent .novaplay-cookie-btn {
    width: 100% !important;
  }
}

/* checkout toast position: keep the form clear */
html body.nv-checkout-theme #novaplayCookieConsent.novaplay-cookie-consent {
  width: min(360px, calc(100% - 24px)) !important;
  max-width: 360px !important;
  left: 14px !important;
  right: auto !important;
  bottom: 14px !important;
  transform: none !important;
}
html body.nv-checkout-theme #novaplayCookieConsent .novaplay-cookie-main {
  padding: 12px !important;
}
html body.nv-checkout-theme #novaplayCookieConsent .novaplay-cookie-title {
  margin: 0 0 9px !important;
  font-size: .92rem !important;
}
html body.nv-checkout-theme #novaplayCookieConsent .novaplay-cookie-eyebrow {
  margin-bottom: 7px !important;
  padding: 4px 8px !important;
  font-size: .62rem !important;
}
html body.nv-checkout-theme #novaplayCookieConsent .novaplay-cookie-actions {
  gap: 6px !important;
}
html body.nv-checkout-theme #novaplayCookieConsent .novaplay-cookie-btn {
  min-height: 34px !important;
  padding: 0 10px !important;
  font-size: .70rem !important;
}

/* novaplay-cookie-premium-button-fix */
html body #novaplayCookieConsent .novaplay-cookie-btn.primary,
html body #novaplayCookieConsent button[data-cookie-accept-all],
html body #novaplayCookieConsent button[data-cookie-save],
html body.nv-checkout-theme #novaplayCookieConsent .novaplay-cookie-btn.primary,
html body.nv-checkout-theme #novaplayCookieConsent button[data-cookie-accept-all],
html body.nv-checkout-theme #novaplayCookieConsent button[data-cookie-save] {
  color: #07101d !important;
  -webkit-text-fill-color: #07101d !important;
  border: 1px solid rgba(255, 189, 47, .88) !important;
  background: #ffbd2f !important;
  background-image: linear-gradient(135deg, #ffce55 0%, #ffbd2f 48%, #ff9f1c 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .32),
    0 16px 34px rgba(255, 174, 31, .22) !important;
}

html body #novaplayCookieConsent .novaplay-cookie-btn.primary:hover,
html body #novaplayCookieConsent .novaplay-cookie-btn.primary:focus-visible,
html body #novaplayCookieConsent button[data-cookie-accept-all]:hover,
html body #novaplayCookieConsent button[data-cookie-accept-all]:focus-visible,
html body #novaplayCookieConsent button[data-cookie-save]:hover,
html body #novaplayCookieConsent button[data-cookie-save]:focus-visible {
  color: #050b14 !important;
  -webkit-text-fill-color: #050b14 !important;
  border-color: rgba(255, 214, 112, .96) !important;
  background-image: linear-gradient(135deg, #ffe08a 0%, #ffc247 46%, #ffa31f 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .42),
    0 18px 40px rgba(255, 174, 31, .30) !important;
  transform: translateY(-1px) !important;
}

html body #novaplayCookieConsent .novaplay-cookie-btn.reject,
html body #novaplayCookieConsent .novaplay-cookie-btn.ghost,
html body #novaplayCookieConsent .novaplay-cookie-btn.dark,
html body.nv-checkout-theme #novaplayCookieConsent .novaplay-cookie-btn.reject,
html body.nv-checkout-theme #novaplayCookieConsent .novaplay-cookie-btn.ghost,
html body.nv-checkout-theme #novaplayCookieConsent .novaplay-cookie-btn.dark {
  color: rgba(232, 243, 255, .92) !important;
  -webkit-text-fill-color: rgba(232, 243, 255, .92) !important;
  border: 1px solid rgba(143, 231, 255, .22) !important;
  background: linear-gradient(180deg, rgba(13, 28, 48, .76), rgba(7, 15, 28, .72)) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), 0 12px 26px rgba(0, 0, 0, .18) !important;
}

html body #novaplayCookieConsent .novaplay-cookie-btn.reject:hover,
html body #novaplayCookieConsent .novaplay-cookie-btn.ghost:hover,
html body #novaplayCookieConsent .novaplay-cookie-btn.dark:hover,
html body #novaplayCookieConsent .novaplay-cookie-btn.reject:focus-visible,
html body #novaplayCookieConsent .novaplay-cookie-btn.ghost:focus-visible,
html body #novaplayCookieConsent .novaplay-cookie-btn.dark:focus-visible {
  border-color: rgba(143, 231, 255, .36) !important;
  background: linear-gradient(180deg, rgba(18, 39, 64, .86), rgba(9, 20, 36, .82)) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .09), 0 14px 30px rgba(0, 0, 0, .22) !important;
}

html body #novaplayCookieConsent .novaplay-cookie-switch input:checked + .novaplay-cookie-slider,
html body #novaplayCookieConsent .novaplay-cookie-switch input:disabled + .novaplay-cookie-slider {
  border-color: rgba(255, 189, 47, .78) !important;
  background: linear-gradient(135deg, #ffce55 0%, #ffbd2f 54%, #ff9f1c 100%) !important;
  box-shadow: 0 0 0 4px rgba(255, 189, 47, .10) !important;
}

html body #novaplayCookieConsent .novaplay-cookie-switch input:checked + .novaplay-cookie-slider:before,
html body #novaplayCookieConsent .novaplay-cookie-switch input:disabled + .novaplay-cookie-slider:before {
  background: #07101d !important;
  box-shadow: 0 3px 10px rgba(7, 16, 29, .28) !important;
}

html body #novaplayCookieConsent .novaplay-cookie-btn svg,
html body #novaplayCookieConsent .novaplay-cookie-btn i {
  color: currentColor !important;
  fill: currentColor !important;
  stroke: currentColor !important;
}

/* novaplay-cookie-mobile-unblock-20260723 */
html body #novaplayCookieConsent .novaplay-cookie-close {
  display: none !important;
}

@media (max-width: 760px) {
  html body #novaplayCookieConsent.novaplay-cookie-consent {
    left: 8px !important;
    right: 8px !important;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 8px) !important;
    width: calc(100vw - 16px) !important;
    max-width: none !important;
    max-height: min(72vh, 560px) !important;
    overflow: hidden !important;
    border-radius: 16px !important;
    z-index: 2147483000 !important;
  }

  html body #novaplayCookieConsent .novaplay-cookie-close {
    display: inline-flex !important;
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    z-index: 6 !important;
    width: 38px !important;
    height: 38px !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(151, 213, 255, .28) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, .08) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .08) !important;
  }

  html body #novaplayCookieConsent .novaplay-cookie-shell {
    display: flex !important;
    flex-direction: column !important;
    max-height: min(72vh, 560px) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior: contain !important;
  }

  html body #novaplayCookieConsent .novaplay-cookie-main {
    padding: 16px 14px 12px !important;
    padding-right: 56px !important;
    background: linear-gradient(145deg, rgba(7, 16, 30, .98), rgba(3, 7, 15, .98)) !important;
  }

  html body #novaplayCookieConsent .novaplay-cookie-side {
    order: 2 !important;
    padding: 10px 14px 14px !important;
    border-left: 0 !important;
    border-top: 1px solid rgba(151, 213, 255, .14) !important;
    border-bottom: 0 !important;
  }

  html body #novaplayCookieConsent .novaplay-cookie-side p,
  html body #novaplayCookieConsent .novaplay-cookie-side .novaplay-cookie-eyebrow,
  html body #novaplayCookieConsent .novaplay-cookie-side .novaplay-cookie-btn.dark {
    display: none !important;
  }

  html body #novaplayCookieConsent .novaplay-cookie-title {
    margin: 0 0 7px !important;
    font-size: 1.04rem !important;
    line-height: 1.18 !important;
  }

  html body #novaplayCookieConsent .novaplay-cookie-copy {
    margin: 0 !important;
    max-height: 4.15em !important;
    overflow: hidden !important;
    font-size: .82rem !important;
    line-height: 1.38 !important;
  }

  html body #novaplayCookieConsent .novaplay-cookie-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    width: 100% !important;
    margin-top: 12px !important;
    position: sticky !important;
    bottom: 0 !important;
    z-index: 3 !important;
    padding-top: 9px !important;
    background: linear-gradient(180deg, rgba(7, 17, 31, 0), rgba(7, 17, 31, .98) 34%) !important;
  }

  html body #novaplayCookieConsent .novaplay-cookie-btn {
    width: 100% !important;
    min-height: 42px !important;
    border-radius: 11px !important;
    padding: 0 10px !important;
    font-size: .78rem !important;
    line-height: 1.12 !important;
    white-space: normal !important;
  }

  html body #novaplayCookieConsent button[data-cookie-settings] {
    grid-column: 1 / -1 !important;
    min-height: 36px !important;
  }

  html body #novaplayCookieConsent .novaplay-cookie-settings {
    padding: 12px !important;
    max-height: 46vh !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  html body #novaplayCookieConsent .novaplay-cookie-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  html body #novaplayCookieConsent .novaplay-cookie-card {
    padding: 10px !important;
    border-radius: 10px !important;
  }

  html body #novaplayCookieConsent .novaplay-cookie-details {
    display: none !important;
  }

  html body #novaplayCookieConsent .novaplay-cookie-footer-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    position: sticky !important;
    bottom: 0 !important;
    z-index: 3 !important;
    padding-top: 9px !important;
    background: linear-gradient(180deg, rgba(7, 17, 31, 0), rgba(7, 17, 31, .98) 34%) !important;
  }
}

/* novaplay-footer-top-gap-fix */
html body.nv-page .premium-footer.np-site-footer.np-footer-clean,
html body.nva-page .premium-footer.np-site-footer.np-footer-clean {
  margin-top: 0 !important;
  padding-top: clamp(26px, 3vw, 38px) !important;
}

html body.nv-page .np-footer-clean .np-footer-hero,
html body.nva-page .np-footer-clean .np-footer-hero {
  margin-top: 0 !important;
}

@media (max-width: 720px) {
  html body.nv-page .premium-footer.np-site-footer.np-footer-clean,
  html body.nva-page .premium-footer.np-site-footer.np-footer-clean {
    padding-top: 18px !important;
  }
}

/* novaplay-policy-faq-final-readable-fix */
html body.np-shell-body:has(.np-policy),
html body.np-shell-body:has(.np-faq-pro) {
  background: #03050a !important;
}

html body .np-policy,
html body .np-faq-pro {
  color: #f8fbff !important;
  background:
    radial-gradient(circle at 4% 22%, rgba(242, 170, 31, .10), transparent 26%),
    radial-gradient(circle at 92% 14%, rgba(45, 201, 255, .14), transparent 31%),
    linear-gradient(180deg, #03050a 0%, #07101b 46%, #03050a 100%) !important;
}

html body .np-policy-hero,
html body .np-faq-hero {
  min-height: 0 !important;
  padding-top: clamp(34px, 4vw, 56px) !important;
  padding-bottom: clamp(26px, 3.4vw, 44px) !important;
  background:
    linear-gradient(90deg, rgba(3, 5, 10, .98) 0%, rgba(6, 15, 27, .98) 56%, rgba(6, 26, 42, .92) 100%) !important;
  border-bottom: 1px solid rgba(161, 214, 255, .14) !important;
}

html body .np-policy-hero::before,
html body .np-faq-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  background:
    linear-gradient(90deg, rgba(242, 170, 31, .10), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(45, 201, 255, .18), transparent 33%) !important;
  opacity: .7 !important;
}

html body .np-policy-hero > *,
html body .np-faq-hero > * {
  position: relative !important;
  z-index: 1 !important;
}

html body .np-policy h1,
html body .np-policy h2,
html body .np-policy h3,
html body .np-policy strong,
html body .np-faq-pro h1,
html body .np-faq-pro h2,
html body .np-faq-pro h3,
html body .np-faq-pro strong,
html body .np-faq-pro .np-faq-question strong {
  color: #ffffff !important;
  text-shadow: none !important;
}

html body .np-policy h1,
html body .np-faq-pro h1 {
  max-width: 740px !important;
  font-size: clamp(2.35rem, 4.25vw, 4.2rem) !important;
  line-height: 1.02 !important;
  letter-spacing: 0 !important;
}

html body .np-policy-hero p,
html body .np-policy p,
html body .np-policy li,
html body .np-policy-main-head span,
html body .np-policy-toc a,
html body .np-policy-final span,
html body .np-doc-meta span,
html body .np-faq-hero p,
html body .np-faq-pro p,
html body .np-faq-pro li,
html body .np-faq-answer,
html body .np-faq-panel-head span,
html body .np-faq-sidebox p,
html body .np-faq-check li,
html body .np-faq-mini span {
  color: rgba(226, 239, 255, .80) !important;
}

html body .np-policy a,
html body .np-faq-pro a {
  color: #9de8ff !important;
}

html body .np-policy-eyebrow,
html body .np-faq-eyebrow {
  color: #9de8ff !important;
  background: rgba(45, 201, 255, .10) !important;
  border-color: rgba(161, 214, 255, .28) !important;
}

html body .np-policy-doccard,
html body .np-policy-toc,
html body .np-policy-main,
html body .np-faq-status,
html body .np-faq-sidebox,
html body .np-faq-list-panel {
  background: linear-gradient(180deg, rgba(17, 26, 38, .96), rgba(7, 13, 23, .98)) !important;
  border: 1px solid rgba(161, 214, 255, .18) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34) !important;
}

html body .np-policy-main-head,
html body .np-faq-panel-head {
  background: rgba(255, 255, 255, .035) !important;
  border-bottom-color: rgba(161, 214, 255, .14) !important;
}

html body .np-policy-section,
html body .np-faq-item {
  background: transparent !important;
  border-bottom-color: rgba(161, 214, 255, .11) !important;
}

html body .np-policy-band,
html body .np-faq-filter-band {
  background: rgba(3, 5, 10, .88) !important;
  border-top: 1px solid rgba(161, 214, 255, .10) !important;
  border-bottom: 1px solid rgba(161, 214, 255, .12) !important;
}

html body .np-policy-pill,
html body .np-faq-filter,
html body .np-policy-btn,
html body .np-faq-primary,
html body .np-faq-search {
  border-radius: 8px !important;
  text-shadow: none !important;
}

html body .np-policy-btn.is-primary,
html body .np-faq-primary,
html body .np-faq-filter.is-active {
  background: linear-gradient(135deg, #f2aa1f, #ffd761) !important;
  border-color: rgba(255, 215, 97, .84) !important;
  color: #06101d !important;
}

html body .np-policy-btn.is-primary *,
html body .np-faq-primary *,
html body .np-faq-filter.is-active * {
  color: #06101d !important;
}

html body .np-policy-btn:not(.is-primary),
html body .np-policy-pill,
html body .np-faq-filter:not(.is-active) {
  background: rgba(255, 255, 255, .055) !important;
  border-color: rgba(161, 214, 255, .18) !important;
  color: #dff4ff !important;
}

html body .np-policy-icon,
html body .np-faq-qicon {
  background: rgba(45, 201, 255, .14) !important;
  border-color: rgba(45, 201, 255, .28) !important;
  color: #9de8ff !important;
}

html body .np-policy-doccard img,
html body .np-faq-status img {
  width: 176px !important;
  height: auto !important;
  max-height: 86px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .58)) !important;
}

html body .np-faq-answer {
  background: transparent !important;
}

html body .np-faq-note {
  color: #ffe1a0 !important;
  background: rgba(242, 170, 31, .09) !important;
  border-color: rgba(242, 170, 31, .32) !important;
}

@media (max-width: 760px) {
  html body .np-policy h1,
  html body .np-faq-pro h1 {
    font-size: clamp(2.1rem, 10vw, 3rem) !important;
  }

  html body .np-policy-hero,
  html body .np-faq-hero {
    padding-top: 26px !important;
  }
}

/* novaplay-policy-faq-hero-specific-fix */
html body.np-shell-body:not(:has(.np-home)) main.np-policy > section.np-policy-hero,
html body.np-shell-body:not(:has(.np-home)) main.np-faq-pro > section.np-faq-hero {
  color: #ffffff !important;
  border-bottom: 1px solid rgba(161, 214, 255, .14) !important;
  box-shadow: none !important;
}

html body.np-shell-body:not(:has(.np-home)) main.np-policy > section.np-policy-hero {
  background:
    radial-gradient(circle at 8% 0%, rgba(242, 170, 31, .10), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(45, 201, 255, .13), transparent 32%),
    linear-gradient(108deg, #03050a 0%, #07101b 58%, #04111d 100%) !important;
}

html body.np-shell-body:not(:has(.np-home)) main.np-faq-pro > section.np-faq-hero {
  isolation: isolate !important;
  overflow: hidden !important;
  background:
    linear-gradient(90deg, rgba(3, 5, 10, .98) 0%, rgba(3, 8, 18, .94) 43%, rgba(3, 8, 18, .58) 68%, rgba(3, 5, 10, .92) 100%),
    linear-gradient(180deg, rgba(3, 5, 10, .28), rgba(3, 5, 10, .86)),
    url('/images/novaplay-contact-support.webp.webp') 72% 42% / cover no-repeat !important;
}

html body.np-shell-body:not(:has(.np-home)) main.np-faq-pro > section.np-faq-hero::before {
  background:
    radial-gradient(circle at 18% 12%, rgba(45, 201, 255, .18), transparent 30%),
    radial-gradient(circle at 84% 20%, rgba(242, 170, 31, .13), transparent 28%) !important;
  opacity: .82 !important;
}

html body.np-shell-body:not(:has(.np-home)) main.np-policy > section.np-policy-hero h1,
html body.np-shell-body:not(:has(.np-home)) main.np-faq-pro > section.np-faq-hero h1 {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
  text-shadow: none !important;
}

html body.np-shell-body:not(:has(.np-home)) main.np-policy > section.np-policy-hero p,
html body.np-shell-body:not(:has(.np-home)) main.np-faq-pro > section.np-faq-hero p {
  color: rgba(226, 239, 255, .82) !important;
  -webkit-text-fill-color: rgba(226, 239, 255, .82) !important;
}

html body.np-shell-body:not(:has(.np-home)) main.np-policy > section.np-policy-hero .np-policy-doccard,
html body.np-shell-body:not(:has(.np-home)) main.np-faq-pro > section.np-faq-hero .np-faq-status {
  background: linear-gradient(180deg, rgba(15, 24, 36, .88), rgba(6, 12, 22, .94)) !important;
  border-color: rgba(161, 214, 255, .18) !important;
}

/* novaplay-official-footer-20260711 */
html body .premium-footer.np-site-footer.np-footer-clean.np-footer-official {
  position: relative !important;
  margin: 0 !important;
  padding: 58px 0 0 !important;
  overflow: hidden !important;
  color: rgba(236, 244, 255, .88) !important;
  background:
    radial-gradient(circle at 10% 0%, rgba(17, 153, 255, .13), transparent 28%),
    radial-gradient(circle at 90% 8%, rgba(0, 237, 189, .08), transparent 27%),
    linear-gradient(180deg, #04131f 0%, #06111d 46%, #020711 100%) !important;
  border: 0 !important;
  box-shadow: inset 0 1px 0 rgba(147, 205, 255, .10) !important;
}

html body .premium-footer.np-site-footer.np-footer-clean.np-footer-official::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: auto !important;
  bottom: 126px !important;
  height: 3px !important;
  opacity: 1 !important;
  background: linear-gradient(90deg, #14b8ff, #8c4dff 35%, #ff2e8d 64%, #ffd400) !important;
  pointer-events: none !important;
}

html body .premium-footer.np-site-footer.np-footer-clean.np-footer-official::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  width: auto !important;
  height: auto !important;
  transform: none !important;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .025), transparent 14%, transparent 86%, rgba(255, 255, 255, .025)),
    radial-gradient(circle at 50% 0%, rgba(31, 143, 255, .10), transparent 30%) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

html body .np-footer-official .np-footer-wrap {
  position: relative !important;
  z-index: 1 !important;
  width: min(1880px, calc(100% - 150px)) !important;
  max-width: none !important;
  margin: 0 auto !important;
}

html body .np-footer-official .np-footer-hero {
  display: grid !important;
  grid-template-columns: minmax(620px, 1.12fr) minmax(560px, .95fr) 250px !important;
  align-items: center !important;
  gap: 44px !important;
  min-height: 236px !important;
  margin: 0 0 62px !important;
  padding: 34px 46px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(168, 216, 255, .16) !important;
  background:
    radial-gradient(circle at 0% 0%, rgba(35, 211, 255, .07), transparent 30%),
    linear-gradient(135deg, rgba(10, 24, 38, .88), rgba(4, 12, 22, .96)) !important;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, .28),
    inset 0 1px 0 rgba(255, 255, 255, .045) !important;
}

html body .np-footer-official .np-footer-brand-block {
  display: grid !important;
  grid-template-columns: 300px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 54px !important;
  min-width: 0 !important;
}

html body .np-footer-official .np-footer-brand-block img.np-footer-logo-hq {
  width: 300px !important;
  max-width: 300px !important;
  height: auto !important;
  max-height: 148px !important;
  object-fit: contain !important;
  filter:
    drop-shadow(0 18px 30px rgba(0, 0, 0, .55))
    drop-shadow(0 0 24px rgba(0, 145, 255, .18))
    brightness(1.14)
    contrast(1.08)
    saturate(1.12) !important;
}

html body .np-footer-official .np-footer-hero-copy {
  max-width: 470px !important;
}

html body .np-footer-official .np-footer-hero-copy strong {
  display: block !important;
  margin: 0 0 24px !important;
  color: #fff !important;
  font-size: 1.08rem !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
}

html body .np-footer-official .np-footer-hero-copy p,
html body .np-footer-official .np-footer-brand-block p {
  max-width: 470px !important;
  margin: 0 !important;
  color: rgba(236, 244, 255, .75) !important;
  font-size: 1rem !important;
  line-height: 1.88 !important;
  font-weight: 500 !important;
}

html body .np-footer-official .np-footer-metrics {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  align-items: stretch !important;
  gap: 0 !important;
  min-height: 156px !important;
  background: transparent !important;
  border: 0 !important;
}

html body .np-footer-official .np-footer-metrics span {
  min-height: 156px !important;
  padding: 6px 20px 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 12px !important;
  text-align: center !important;
  border-left: 1px solid rgba(168, 216, 255, .16) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

html body .np-footer-official .np-footer-metrics span:last-child {
  border-right: 1px solid rgba(168, 216, 255, .16) !important;
}

html body .np-footer-official .np-footer-metrics i {
  min-height: 42px !important;
  display: grid !important;
  place-items: center !important;
  font-size: 38px !important;
  line-height: 1 !important;
  filter: drop-shadow(0 0 18px currentColor) !important;
}

html body .np-footer-official .np-footer-metrics span:nth-child(1) i { color: #477cff !important; }
html body .np-footer-official .np-footer-metrics span:nth-child(2) i { color: #00e7bd !important; }
html body .np-footer-official .np-footer-metrics span:nth-child(3) i { color: #b665ff !important; }
html body .np-footer-official .np-footer-metrics span:nth-child(4) i { color: #ffbd17 !important; }

html body .np-footer-official .np-footer-metrics strong {
  display: block !important;
  color: #fff !important;
  font-size: 1.42rem !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  letter-spacing: 0 !important;
}

html body .np-footer-official .np-footer-metrics small {
  display: block !important;
  margin: 0 !important;
  color: rgba(236, 244, 255, .77) !important;
  font-size: .86rem !important;
  line-height: 1.55 !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .02em !important;
}

html body .np-footer-official .np-footer-cta {
  width: 234px !important;
  min-height: 116px !important;
  padding: 0 28px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(255, 178, 26, .62) !important;
  background: linear-gradient(135deg, rgba(255, 178, 26, .08), rgba(255, 178, 26, .02)) !important;
  color: #ffb21a !important;
  text-decoration: none !important;
  box-shadow:
    0 16px 44px rgba(255, 129, 0, .12),
    inset 0 1px 0 rgba(255, 255, 255, .05) !important;
}

html body .np-footer-official .np-footer-cta:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(255, 210, 79, .88) !important;
  background: linear-gradient(135deg, rgba(255, 178, 26, .16), rgba(255, 178, 26, .04)) !important;
}

html body .np-footer-official .np-footer-cta i {
  color: #ffb21a !important;
  font-size: 21px !important;
}

html body .np-footer-official .np-footer-cta span {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  min-width: 0 !important;
}

html body .np-footer-official .np-footer-cta strong {
  color: #ffb21a !important;
  font-size: 1rem !important;
  line-height: 1 !important;
  font-weight: 950 !important;
}

html body .np-footer-official .np-footer-cta small {
  color: rgba(236, 244, 255, .70) !important;
  font-size: .92rem !important;
  line-height: 1.2 !important;
  font-weight: 500 !important;
}

html body .np-footer-official .np-footer-grid-clean {
  display: grid !important;
  grid-template-columns: 270px 460px 250px minmax(320px, 1fr) !important;
  align-items: start !important;
  gap: 84px !important;
  margin: 0 0 66px !important;
  padding: 0 50px !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

html body .np-footer-official .np-footer-col {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

html body .np-footer-official .np-footer-col h3 {
  margin: 0 0 28px !important;
  color: #fff !important;
  font-size: .9rem !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
}

html body .np-footer-official .np-footer-col ul {
  display: grid !important;
  gap: 18px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

html body .np-footer-official .np-footer-col a {
  display: inline-grid !important;
  grid-template-columns: 24px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 18px !important;
  color: rgba(236, 244, 255, .78) !important;
  font-size: 1rem !important;
  line-height: 1.25 !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}

html body .np-footer-official .np-footer-col a:hover {
  color: #fff !important;
  transform: translateX(4px) !important;
}

html body .np-footer-official .np-footer-col a i {
  width: 24px !important;
  color: #21c9ff !important;
  font-size: 19px !important;
  text-align: center !important;
  filter: drop-shadow(0 0 12px rgba(33, 201, 255, .35)) !important;
}

html body .np-footer-official .np-footer-packages a {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: 24px minmax(145px, 1fr) 74px 68px !important;
  align-items: center !important;
  gap: 16px !important;
}

html body .np-footer-official .np-footer-packages a span {
  min-width: 0 !important;
}

html body .np-footer-official .np-footer-packages del {
  min-height: 1em !important;
  color: rgba(236, 244, 255, .42) !important;
  font-size: .9rem !important;
  line-height: 1 !important;
  text-align: right !important;
  text-decoration-color: rgba(255, 178, 26, .70) !important;
  text-decoration-thickness: 2px !important;
}

html body .np-footer-official .np-footer-packages strong {
  color: #fff !important;
  font-size: .96rem !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  text-align: right !important;
}

html body .np-footer-official .np-footer-support-card p {
  max-width: 350px !important;
  margin: 0 !important;
  color: rgba(236, 244, 255, .68) !important;
  font-size: 1rem !important;
  line-height: 1.75 !important;
  font-weight: 500 !important;
}

html body .np-footer-official .np-footer-badges {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin: 28px 0 0 !important;
  max-width: 360px !important;
}

html body .np-footer-official .np-footer-badges span {
  min-height: 44px !important;
  padding: 0 18px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(168, 216, 255, .14) !important;
  color: rgba(236, 244, 255, .82) !important;
  background: rgba(255, 255, 255, .025) !important;
  font-size: .95rem !important;
  font-weight: 700 !important;
}

html body .np-footer-official .np-footer-badges i {
  color: rgba(236, 244, 255, .72) !important;
}

html body .np-footer-official .np-footer-bottom {
  position: relative !important;
  min-height: 126px !important;
  margin: 0 !important;
  padding: 28px 0 28px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 120px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 32px !important;
  border: 0 !important;
  color: rgba(236, 244, 255, .58) !important;
  background: transparent !important;
  box-shadow: none !important;
}

html body .np-footer-official .np-footer-payline {
  display: grid !important;
  gap: 18px !important;
  justify-items: start !important;
  min-width: 0 !important;
}

html body .np-footer-official .np-footer-payline > span {
  color: rgba(236, 244, 255, .62) !important;
  font-size: .98rem !important;
  line-height: 1.2 !important;
}

html body .np-footer-official .np-footer-payments {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 18px !important;
  color: rgba(236, 244, 255, .72) !important;
}

html body .np-footer-official .np-footer-payments strong {
  color: rgba(255, 255, 255, .82) !important;
  font-size: .9rem !important;
  font-weight: 950 !important;
  letter-spacing: .02em !important;
}

html body .np-footer-official .np-mastercard {
  position: relative !important;
  width: 34px !important;
  height: 20px !important;
  display: inline-flex !important;
  align-items: center !important;
}

html body .np-footer-official .np-mastercard i {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  display: block !important;
}

html body .np-footer-official .np-mastercard i:first-child {
  background: #eb001b !important;
}

html body .np-footer-official .np-mastercard i:last-child {
  margin-left: -6px !important;
  background: #f79e1b !important;
}

html body .np-footer-official .np-footer-payments em {
  display: inline-flex !important;
  align-items: center !important;
  gap: 9px !important;
  color: rgba(236, 244, 255, .58) !important;
  font-size: .94rem !important;
  font-style: normal !important;
}

html body .np-footer-official .np-footer-bottom-mark {
  width: 70px !important;
  height: 70px !important;
  object-fit: contain !important;
  justify-self: center !important;
  filter:
    drop-shadow(0 0 22px rgba(0, 145, 255, .34))
    drop-shadow(0 12px 28px rgba(0, 0, 0, .44)) !important;
}

html body .np-footer-official .np-footer-legal {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex-wrap: wrap !important;
  gap: 0 !important;
  color: rgba(236, 244, 255, .56) !important;
}

html body .np-footer-official .np-footer-legal a,
html body .np-footer-official .legal-cookie-button {
  position: relative !important;
  padding: 0 22px !important;
  color: rgba(236, 244, 255, .58) !important;
  background: transparent !important;
  border: 0 !important;
  font: inherit !important;
  font-size: .96rem !important;
  line-height: 1.3 !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  cursor: pointer !important;
}

html body .np-footer-official .np-footer-legal a:not(:last-child)::after,
html body .np-footer-official .legal-cookie-button::before {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  right: 0 !important;
  width: 1px !important;
  height: 26px !important;
  background: rgba(236, 244, 255, .13) !important;
  transform: translateY(-50%) !important;
}

html body .np-footer-official .legal-cookie-button::before {
  left: 0 !important;
  right: auto !important;
}

html body .np-footer-official .np-footer-legal a:hover,
html body .np-footer-official .legal-cookie-button:hover {
  color: #fff !important;
}

@media (max-width: 1500px) {
  html body .np-footer-official .np-footer-wrap {
    width: min(1320px, calc(100% - 56px)) !important;
  }

  html body .np-footer-official .np-footer-hero {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  html body .np-footer-official .np-footer-metrics {
    width: 100% !important;
  }

  html body .np-footer-official .np-footer-cta {
    width: 100% !important;
    max-width: 360px !important;
    min-height: 78px !important;
  }

  html body .np-footer-official .np-footer-grid-clean {
    grid-template-columns: 220px minmax(360px, 1fr) 220px minmax(280px, .9fr) !important;
    gap: 42px !important;
    padding: 0 24px !important;
  }
}

@media (max-width: 1100px) {
  html body .np-footer-official .np-footer-wrap {
    width: calc(100% - 34px) !important;
  }

  html body .np-footer-official .np-footer-brand-block {
    grid-template-columns: 220px minmax(0, 1fr) !important;
    gap: 24px !important;
  }

  html body .np-footer-official .np-footer-brand-block img.np-footer-logo-hq {
    width: 220px !important;
    max-width: 220px !important;
  }

  html body .np-footer-official .np-footer-grid-clean {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 34px 42px !important;
  }

  html body .np-footer-official .np-footer-bottom {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
    padding-bottom: 38px !important;
  }

  html body .np-footer-official .np-footer-payline {
    justify-items: center !important;
  }

  html body .np-footer-official .np-footer-legal {
    justify-content: center !important;
  }
}

@media (max-width: 720px) {
  html body .premium-footer.np-site-footer.np-footer-clean.np-footer-official {
    padding-top: 26px !important;
  }

  html body .premium-footer.np-site-footer.np-footer-clean.np-footer-official::before {
    bottom: 172px !important;
  }

  html body .np-footer-official .np-footer-wrap {
    width: calc(100% - 22px) !important;
  }

  html body .np-footer-official .np-footer-hero {
    min-height: 0 !important;
    margin-bottom: 34px !important;
    padding: 22px !important;
    border-radius: 14px !important;
  }

  html body .np-footer-official .np-footer-brand-block {
    grid-template-columns: 1fr !important;
    justify-items: start !important;
    gap: 16px !important;
  }

  html body .np-footer-official .np-footer-brand-block img.np-footer-logo-hq {
    width: 220px !important;
    max-width: 220px !important;
  }

  html body .np-footer-official .np-footer-hero-copy strong {
    margin-bottom: 10px !important;
  }

  html body .np-footer-official .np-footer-hero-copy p,
  html body .np-footer-official .np-footer-brand-block p {
    font-size: .9rem !important;
    line-height: 1.6 !important;
  }

  html body .np-footer-official .np-footer-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1px !important;
    min-height: 0 !important;
  }

  html body .np-footer-official .np-footer-metrics span,
  html body .np-footer-official .np-footer-metrics span:last-child {
    min-height: 132px !important;
    padding: 16px 8px !important;
    border: 1px solid rgba(168, 216, 255, .12) !important;
    background: rgba(255, 255, 255, .025) !important;
  }

  html body .np-footer-official .np-footer-metrics i {
    font-size: 30px !important;
  }

  html body .np-footer-official .np-footer-grid-clean {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    margin-bottom: 34px !important;
    padding: 0 10px !important;
  }

  html body .np-footer-official .np-footer-col h3 {
    margin-bottom: 16px !important;
  }

  html body .np-footer-official .np-footer-packages a {
    grid-template-columns: 24px minmax(0, 1fr) 66px 62px !important;
    gap: 10px !important;
  }

  html body .np-footer-official .np-footer-support-card p {
    max-width: none !important;
  }

  html body .np-footer-official .np-footer-bottom {
    min-height: 172px !important;
    gap: 18px !important;
    padding: 24px 0 28px !important;
  }

  html body .np-footer-official .np-footer-legal a,
  html body .np-footer-official .legal-cookie-button {
    padding: 0 10px !important;
    font-size: .82rem !important;
  }
}

/* novaplay-footer-reference-exact-20260712 */
html body .premium-footer.np-site-footer.np-footer-clean.np-footer-official {
  position: relative !important;
  margin: 0 !important;
  padding: 26px 0 0 !important;
  overflow: hidden !important;
  color: rgba(233, 243, 255, .9) !important;
  background: radial-gradient(circle at 8% 0%, rgba(28, 151, 255, .14), transparent 28%), radial-gradient(circle at 92% 8%, rgba(18, 214, 193, .10), transparent 28%), linear-gradient(180deg, #030914 0%, #050b17 48%, #02060d 100%) !important;
  border-top: 1px solid rgba(68, 176, 255, .16) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035) !important;
}
html body .premium-footer.np-site-footer.np-footer-clean.np-footer-official::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 74px !important;
  height: 2px !important;
  background: linear-gradient(90deg, #1bbcff 0%, #764cff 34%, #ff2f92 66%, #ffb21a 100%) !important;
  opacity: .92 !important;
  pointer-events: none !important;
}
html body .premium-footer.np-site-footer.np-footer-clean.np-footer-official::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(90deg, rgba(255,255,255,.018), transparent 16%, transparent 84%, rgba(255,255,255,.018)) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}
html body .np-footer-official .np-footer-wrap {
  position: relative !important;
  z-index: 1 !important;
  width: min(1760px, calc(100% - 32px)) !important;
  max-width: 1760px !important;
  margin: 0 auto !important;
}
html body .np-footer-official .np-footer-hero {
  display: grid !important;
  grid-template-columns: minmax(460px, 1.05fr) minmax(420px, .82fr) 320px !important;
  align-items: center !important;
  gap: 32px !important;
  min-height: 112px !important;
  margin: 0 0 58px !important;
  padding: 22px 30px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(103, 184, 255, .16) !important;
  background: linear-gradient(135deg, rgba(10, 30, 53, .92), rgba(4, 12, 27, .96)) !important;
  box-shadow: 0 22px 62px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.045) !important;
}
html body .np-footer-official .np-footer-hero-left {
  display: grid !important;
  grid-template-columns: 190px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 24px !important;
  min-width: 0 !important;
}
html body .np-footer-official img.np-footer-logo-hq,
html body .np-footer-official img.np-footer-main-logo {
  display: block !important;
  height: auto !important;
  object-fit: contain !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.46)) drop-shadow(0 0 18px rgba(31,151,255,.22)) brightness(1.12) contrast(1.08) saturate(1.12) !important;
}
html body .np-footer-official img.np-footer-logo-hq { width: 178px !important; max-width: 178px !important; max-height: 82px !important; }
html body .np-footer-official img.np-footer-main-logo { width: 176px !important; max-width: 176px !important; max-height: 92px !important; margin: 0 0 22px !important; }
html body .np-footer-official .np-footer-hero-copy strong {
  display: block !important;
  margin: 0 0 8px !important;
  color: #fff !important;
  font-size: .98rem !important;
  line-height: 1.35 !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
}
html body .np-footer-official .np-footer-hero-copy p,
html body .np-footer-official .np-footer-brand-main p,
html body .np-footer-official .np-footer-help-card p {
  margin: 0 !important;
  color: rgba(213, 229, 248, .72) !important;
  font-size: .82rem !important;
  line-height: 1.65 !important;
  font-weight: 500 !important;
}
html body .np-footer-official .np-footer-metrics {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: stretch !important;
  gap: 14px !important;
  min-height: 76px !important;
  background: transparent !important;
  border: 0 !important;
}
html body .np-footer-official .np-footer-metrics span {
  display: grid !important;
  place-items: center !important;
  gap: 4px !important;
  min-height: 76px !important;
  padding: 6px 8px !important;
  text-align: center !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: transparent !important;
  box-shadow: none !important;
}
html body .np-footer-official .np-footer-metrics i {
  display: grid !important;
  place-items: center !important;
  color: #7fdcff !important;
  font-size: 28px !important;
  line-height: 1 !important;
  filter: drop-shadow(0 0 16px rgba(35,211,255,.35)) !important;
}
html body .np-footer-official .np-footer-metrics strong {
  display: block !important;
  color: #eaf7ff !important;
  font-size: .82rem !important;
  line-height: 1.18 !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
}
html body .np-footer-official .np-footer-metrics small {
  display: block !important;
  color: rgba(167, 195, 221, .86) !important;
  font-size: .66rem !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
html body .np-footer-official .np-footer-cta-box {
  display: grid !important;
  justify-items: center !important;
  gap: 9px !important;
}
html body .np-footer-official .np-footer-cta {
  width: 100% !important;
  min-height: 64px !important;
  padding: 0 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  color: #fff !important;
  background: linear-gradient(135deg, #16c7ff 0%, #0077ff 100%) !important;
  border: 1px solid rgba(97, 220, 255, .72) !important;
  border-radius: 10px !important;
  box-shadow: 0 18px 44px rgba(0, 132, 255, .34), inset 0 1px 0 rgba(255,255,255,.24) !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  font-size: .78rem !important;
  font-weight: 950 !important;
  letter-spacing: .025em !important;
  transition: transform .18s ease, filter .18s ease !important;
}
html body .np-footer-official .np-footer-cta:hover { transform: translateY(-2px) !important; filter: brightness(1.08) !important; }
html body .np-footer-official .np-footer-cta-box small {
  color: rgba(155, 220, 255, .84) !important;
  font-size: .68rem !important;
  font-weight: 800 !important;
}
html body .np-footer-official .np-footer-grid-clean {
  display: grid !important;
  grid-template-columns: minmax(300px, 1.28fr) minmax(160px, .72fr) minmax(180px, .76fr) minmax(300px, 1.08fr) minmax(300px, 1fr) !important;
  gap: 48px !important;
  align-items: start !important;
  margin: 0 0 38px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
html body .np-footer-official .np-footer-col,
html body .np-footer-official .np-footer-help-card {
  min-width: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
html body .np-footer-official .np-footer-col h3,
html body .np-footer-official .np-footer-help-card h3 {
  margin: 0 0 18px !important;
  color: #eef7ff !important;
  font-size: .72rem !important;
  line-height: 1.1 !important;
  font-weight: 950 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}
html body .np-footer-official .np-footer-col h3::after {
  content: "" !important;
  display: block !important;
  width: 34px !important;
  height: 2px !important;
  margin-top: 9px !important;
  border-radius: 999px !important;
  background: #20d5ff !important;
}
html body .np-footer-official .np-footer-col ul {
  display: grid !important;
  gap: 13px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
html body .np-footer-official .np-footer-col li { margin: 0 !important; padding: 0 !important; list-style: none !important; }
html body .np-footer-official .np-footer-col a {
  min-height: 28px !important;
  display: flex !important;
  align-items: center !important;
  gap: 11px !important;
  color: rgba(199, 218, 239, .78) !important;
  font-size: .82rem !important;
  font-weight: 750 !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  transition: color .16s ease, transform .16s ease !important;
}
html body .np-footer-official .np-footer-col a:hover { color: #fff !important; transform: translateX(2px) !important; }
html body .np-footer-official .np-footer-col a i { width: 18px !important; color: #7edcff !important; font-size: 1rem !important; text-align: center !important; }
html body .np-footer-official .np-footer-col a b { margin-left: auto !important; color: rgba(149, 179, 208, .62) !important; font-size: 1.1rem !important; font-weight: 700 !important; }
html body .np-footer-official .np-footer-brand-main { max-width: 300px !important; }
html body .np-footer-official .np-footer-brand-main p { padding-bottom: 20px !important; border-bottom: 1px solid rgba(132, 190, 242, .14) !important; }
html body .np-footer-official .np-footer-support-mini {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-top: 18px !important;
  color: #fff !important;
}
html body .np-footer-official .np-footer-support-icon,
html body .np-footer-official .np-footer-help-icon {
  display: grid !important;
  place-items: center !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 12px !important;
  color: #27e6c6 !important;
  background: rgba(27, 196, 174, .11) !important;
  border: 1px solid rgba(39, 230, 198, .28) !important;
}
html body .np-footer-official .np-footer-support-mini strong { display:block !important; font-size:.83rem !important; font-weight:900 !important; color:#fff !important; }
html body .np-footer-official .np-footer-support-mini small { display:flex !important; align-items:center !important; gap:7px !important; margin-top:3px !important; color:rgba(190,211,232,.78) !important; font-size:.7rem !important; font-weight:800 !important; }
html body .np-footer-official .np-footer-support-mini small i { width:7px !important; height:7px !important; border-radius:50% !important; background:#26e68d !important; box-shadow:0 0 12px rgba(38,230,141,.68) !important; }
html body .np-footer-official .np-footer-socials { display:flex !important; align-items:center !important; gap:16px !important; margin-top:20px !important; }
html body .np-footer-official .np-footer-socials span { display:grid !important; place-items:center !important; width:18px !important; height:18px !important; color:rgba(192,213,234,.7) !important; font-size:.95rem !important; }
html body .np-footer-official .np-footer-packages ul { gap: 10px !important; }
html body .np-footer-official .np-footer-packages a {
  display: grid !important;
  grid-template-columns: 22px minmax(0, 1fr) auto !important;
  gap: 12px !important;
  min-height: 56px !important;
  padding: 0 16px !important;
  border-radius: 10px !important;
  border: 1px solid rgba(107, 174, 235, .18) !important;
  background: linear-gradient(180deg, rgba(18, 32, 51, .82), rgba(8, 16, 31, .86)) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04) !important;
}
html body .np-footer-official .np-footer-packages a i { color: #ffb21a !important; }
html body .np-footer-official .np-footer-packages a strong { color: #23d3ff !important; font-size: .82rem !important; font-weight: 950 !important; white-space: nowrap !important; }
html body .np-footer-official .np-footer-help-card {
  padding: 28px 30px !important;
  border: 1px solid rgba(107, 174, 235, .20) !important;
  border-radius: 14px !important;
  background: linear-gradient(180deg, rgba(12, 25, 43, .82), rgba(4, 10, 21, .92)) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.045), 0 18px 48px rgba(0,0,0,.22) !important;
}
html body .np-footer-official .np-footer-help-icon { margin-bottom: 20px !important; color: #23d3ff !important; background: rgba(16, 108, 255, .11) !important; border-color: rgba(35, 211, 255, .25) !important; }
html body .np-footer-official .np-footer-help-card h3 { margin-bottom: 10px !important; font-size: 1rem !important; letter-spacing: 0 !important; text-transform: none !important; }
html body .np-footer-official .np-footer-help-card a {
  min-height: 42px !important;
  margin-top: 22px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 0 18px !important;
  border-radius: 8px !important;
  color: #35d5ff !important;
  border: 1px solid rgba(35, 211, 255, .34) !important;
  background: rgba(35, 211, 255, .055) !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  font-size: .72rem !important;
  font-weight: 950 !important;
  letter-spacing: .035em !important;
}
html body .np-footer-official .np-footer-bottom {
  display: grid !important;
  grid-template-columns: minmax(260px, 1fr) auto minmax(360px, 1fr) !important;
  align-items: center !important;
  gap: 24px !important;
  min-height: 74px !important;
  margin: 0 !important;
  padding: 18px 0 20px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
html body .np-footer-official .np-footer-bottom p { margin:0 !important; color:rgba(188,205,225,.68) !important; font-size:.76rem !important; }
html body .np-footer-official .np-footer-payments { display:flex !important; align-items:center !important; justify-content:center !important; gap:18px !important; color:rgba(205,223,241,.76) !important; }
html body .np-footer-official .np-footer-payments strong { color:#dcecff !important; font-size:.82rem !important; font-weight:950 !important; letter-spacing:.04em !important; }
html body .np-footer-official .np-mastercard { position:relative !important; width:36px !important; height:20px !important; display:inline-flex !important; align-items:center !important; }
html body .np-footer-official .np-mastercard i { position:absolute !important; width:20px !important; height:20px !important; border-radius:50% !important; opacity:.94 !important; }
html body .np-footer-official .np-mastercard i:first-child { left:0 !important; background:#ff352f !important; }
html body .np-footer-official .np-mastercard i:last-child { right:0 !important; background:#ffb21a !important; mix-blend-mode:screen !important; }
html body .np-footer-official .np-footer-payments em { display:flex !important; align-items:center !important; gap:8px !important; color:rgba(196,215,235,.72) !important; font-style:normal !important; font-size:.74rem !important; }
html body .np-footer-official .np-footer-payments em i { color:#8adfff !important; }
html body .np-footer-official .np-footer-legal { display:flex !important; align-items:center !important; justify-content:flex-end !important; flex-wrap:wrap !important; gap:0 !important; margin:0 !important; padding:0 !important; }
html body .np-footer-official .np-footer-legal a,
html body .np-footer-official .legal-cookie-button {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  min-height: 22px !important;
  padding: 0 15px !important;
  color: rgba(196, 215, 235, .72) !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
  font-size: .76rem !important;
  font-weight: 750 !important;
  cursor: pointer !important;
}
html body .np-footer-official .np-footer-legal a:not(:last-child)::after,
html body .np-footer-official .legal-cookie-button::before {
  content: "" !important;
  position: absolute !important;
  right: 0 !important;
  top: 3px !important;
  bottom: 3px !important;
  width: 1px !important;
  background: rgba(122, 155, 188, .22) !important;
}
html body .np-footer-official .legal-cookie-button::before { left: 0 !important; right: auto !important; }
html body .np-footer-official .np-footer-legal a:hover,
html body .np-footer-official .legal-cookie-button:hover { color: #fff !important; }
html body .np-footer-official .np-footer-bottom-mark,
html body .np-footer-official .np-footer-badges,
html body .np-footer-official del { display: none !important; }
@media (max-width: 1220px) {
  html body .np-footer-official .np-footer-hero { grid-template-columns: 1fr !important; gap: 22px !important; }
  html body .np-footer-official .np-footer-metrics { max-width: 620px !important; }
  html body .np-footer-official .np-footer-cta-box { justify-items: start !important; }
  html body .np-footer-official .np-footer-cta { width: min(300px, 100%) !important; }
  html body .np-footer-official .np-footer-grid-clean { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 34px !important; }
  html body .np-footer-official .np-footer-bottom { grid-template-columns: 1fr !important; justify-items: center !important; text-align: center !important; }
  html body .np-footer-official .np-footer-legal { justify-content: center !important; }
}
@media (max-width: 720px) {
  html body .premium-footer.np-site-footer.np-footer-clean.np-footer-official { padding-top: 18px !important; }
  html body .np-footer-official .np-footer-wrap { width: calc(100% - 24px) !important; }
  html body .np-footer-official .np-footer-hero { padding: 18px !important; margin-bottom: 34px !important; border-radius: 14px !important; }
  html body .np-footer-official .np-footer-hero-left { grid-template-columns: 1fr !important; gap: 14px !important; }
  html body .np-footer-official img.np-footer-logo-hq { width: 170px !important; max-width: 170px !important; }
  html body .np-footer-official .np-footer-metrics { grid-template-columns: 1fr !important; gap: 8px !important; width: 100% !important; }
  html body .np-footer-official .np-footer-metrics span { grid-template-columns: 38px 1fr !important; grid-template-rows: auto auto !important; place-items: center start !important; min-height: 62px !important; text-align: left !important; padding: 10px 12px !important; background: rgba(255,255,255,.035) !important; border: 1px solid rgba(103,184,255,.14) !important; }
  html body .np-footer-official .np-footer-metrics i { grid-row: 1 / span 2 !important; font-size: 24px !important; }
  html body .np-footer-official .np-footer-grid-clean { grid-template-columns: 1fr !important; gap: 26px !important; }
  html body .np-footer-official .np-footer-help-card { padding: 22px !important; }
  html body .np-footer-official .np-footer-payments { flex-wrap: wrap !important; }
  html body .np-footer-official .np-footer-legal a,
  html body .np-footer-official .legal-cookie-button { padding: 0 9px !important; font-size: .72rem !important; }
}

/* novaplay-buy-global-footer-fix-20260715 */
html body.np-buy-page{
  padding-bottom:0!important;
  overflow-x:hidden!important;
}
html body.np-buy-page #btnScrollTop,
html body.np-buy-page .scroll-top-btn,
html body.np-buy-page #tawkchat-container,
html body.np-buy-page #tawkchat-minified-wrapper,
html body.np-buy-page .tawk-min-container,
html body.np-buy-page .tawk-button,
html body.np-buy-page .tawk-bubble,
html body.np-buy-page .tawk-chat-panel,
html body.np-buy-page [id*="tawk"],
html body.np-buy-page [class*="tawk"],
html body.np-buy-page iframe[src*="tawk"],
html body.np-buy-page iframe[title*="chat" i],
html body.np-buy-page iframe[title*="Chat" i]{
  display:none!important;
  visibility:hidden!important;
  opacity:0!important;
  pointer-events:none!important;
}
html body.np-buy-page .checkout-mobile-summary{
  display:none!important;
}
@media(max-width:720px){
  html body.np-buy-page:has(#checkout-form) .checkout-mobile-summary{
    position:fixed!important;
    left:12px!important;
    right:12px!important;
    bottom:12px!important;
    z-index:10020!important;
    display:grid!important;
    grid-template-columns:minmax(76px,.82fr) minmax(92px,1fr) minmax(76px,.82fr)!important;
    align-items:center!important;
    gap:8px!important;
    padding:8px!important;
    border-radius:16px!important;
    border:1px solid rgba(255,198,58,.28)!important;
    background:linear-gradient(135deg,rgba(7,16,30,.96),rgba(9,22,40,.96))!important;
    box-shadow:0 18px 45px rgba(0,0,0,.42),inset 0 1px 0 rgba(255,255,255,.07)!important;
    visibility:visible!important;
    opacity:1!important;
    pointer-events:auto!important;
  }
  html body.np-buy-page:has(#checkout-form) .checkout-mobile-summary span{
    display:block!important;
    color:rgba(190,210,232,.78)!important;
    font-size:10px!important;
    font-weight:900!important;
    line-height:1.05!important;
    text-transform:uppercase!important;
  }
  html body.np-buy-page:has(#checkout-form) .checkout-mobile-summary strong{
    display:block!important;
    color:#ffd15a!important;
    font-size:15px!important;
    font-weight:950!important;
    line-height:1.05!important;
  }
  html body.np-buy-page:has(#checkout-form) .checkout-mobile-summary button{
    min-height:44px!important;
    width:100%!important;
    min-width:0!important;
    padding:0 10px!important;
    border:0!important;
    border-radius:12px!important;
    background:linear-gradient(135deg,#ffd76a,#ffb31a)!important;
    color:#07111f!important;
    font-size:12px!important;
    font-weight:950!important;
    box-shadow:none!important;
  }
  html body.np-buy-page:has(#checkout-form) .checkout-mobile-summary .mobile-summary-jump{
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    min-height:44px!important;
    width:100%!important;
    min-width:0!important;
    border-radius:12px!important;
    border:1px solid rgba(132,190,242,.28)!important;
    background:rgba(10,25,44,.92)!important;
    color:#c7edff!important;
    font-size:13px!important;
    font-weight:950!important;
    visibility:visible!important;
    opacity:1!important;
    pointer-events:auto!important;
  }
  html body.np-buy-page:has(#checkout-form){
    padding-bottom:82px!important;
  }
}
html body.np-buy-page .checkout-page,
html body.np-buy-page .checkout-page #checkout-form{
  padding-bottom:28px!important;
}
html body.np-buy-page .premium-footer.np-site-footer.np-footer-clean.np-footer-official{
  position:relative!important;
  z-index:1!important;
  display:block!important;
  clear:both!important;
  margin:28px 0 0!important;
  padding:28px 0 0!important;
  transform:none!important;
  overflow:hidden!important;
}
html body.np-buy-page .np-footer-official .np-footer-wrap{
  width:min(1240px, calc(100% - 28px))!important;
  margin:0 auto!important;
}
html body.np-buy-page .np-footer-official .np-footer-payments{
  display:none!important;
}
html body.np-buy-page .np-footer-official .np-footer-bottom{
  padding-bottom:20px!important;
  min-height:0!important;
}
html body.np-buy-page .np-footer-official .np-footer-legal{
  justify-content:center!important;
}
@media(max-width:720px){
  html body.np-buy-page .premium-footer.np-site-footer.np-footer-clean.np-footer-official{
    margin-top:22px!important;
    padding-top:20px!important;
  }
  html body.np-buy-page .np-footer-official .np-footer-wrap{
    width:calc(100% - 28px)!important;
  }
  html body.np-buy-page .np-footer-official .np-footer-hero{
    margin-bottom:20px!important;
  }
  html body.np-buy-page .np-footer-official .np-footer-bottom{
    padding:14px 0 22px!important;
  }
}
