/* =============================================================
   OceanicHost.com — Offshore Privacy Hosting Theme
   Clean rewrite. Works with CDN Bootstrap 4.6.2
   ============================================================= */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* --- Variables --- */
:root {
  --bg-base: #03060f;
  --bg-deep: #070b1a;
  --bg-card: #111827;
  --bg-elevated: #1a2640;
  --cyan: #00d4ff;
  --cyan-dim: #0891b2;
  --purple: #8b5cf6;
  --gradient-main: linear-gradient(135deg, #00d4ff, #8b5cf6);
  --gradient-btn: linear-gradient(135deg, #06b6d4, #7c3aed);
  --text-1: #f1f5f9;
  --text-2: #94a3b8;
  --text-3: #64748b;
  --border-1: rgba(148,163,184,.08);
  --border-2: rgba(148,163,184,.15);
  --border-hl: rgba(0,212,255,.25);
  --glow: 0 0 25px rgba(0,212,255,.12);
  --r: 12px;
}

/* --- Base --- */
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-base);
  color: var(--text-1);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}
a { color: var(--cyan); transition: color .2s; }
a:hover, a:focus { color: #67e8f9; text-decoration: none; }
img { max-width: 100%; height: auto; }
::selection { background: rgba(0,212,255,.3); color: #fff; }

/* Grid bg */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(0,212,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: -1;
}
/* Sections don't need position:relative - keeps dropdown stacking clean */

/* Kill old animated dot backgrounds from original */
body.offshorehosting,
div.main,
div.morefea,
div.infos,
div.footery,
div.payments_methods_container {
  background: var(--bg-base) !important;
  animation: none !important;
  padding-bottom: 0;
}


/* ===========================================================
   TOPBAR
   =========================================================== */
.topbar {
  padding: 10px 0;
  background: #020408;
  border-bottom: 1px solid var(--border-1);
  color: var(--text-2);
  font-size: 13px;
  position: static;
  z-index: auto;
}
.topbar b { color: var(--cyan); }
.topbar .topleft { display: inline-block; }
.topbar .topright { float: right; }
.topbar .topright a { color: var(--cyan); }
.topbar img { margin-top: -3px; margin-right: 4px; max-width: 16px; opacity: .8; }



/* ===========================================================
   NAVBAR — position:sticky so dropdowns always render above hero
   =========================================================== */
.navbar,
#scroll {
  background: #070b1a;
  border-bottom: 1px solid var(--border-1);
  padding: 10px 0;
  transition: background .3s, box-shadow .3s;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1050;
}

/* Scrolled state — just visual enhancement, no position change needed */
.zeus-fixed {
  background: rgba(3,6,15,.97) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 30px rgba(0,0,0,.5);
  border-bottom: 1px solid var(--border-hl);
}



/* ===========================================================
   DROPDOWNS — must override Bootstrap defaults
   =========================================================== */
.navbar-dark .navbar-nav .nav-item.dropdown .dropdown-menu {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-2);
  border-radius: var(--r);
  box-shadow: 0 10px 40px rgba(0,0,0,.6);
  padding: 8px;
  min-width: 260px;
  z-index: 1060;
}
.navbar-dark .navbar-nav .nav-item.dropdown .dropdown-menu hr {
  border-color: var(--border-1);
  margin: 4px 0;
}
.navbar-dark .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
  color: var(--text-2);
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all .15s;
}
.navbar-dark .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover,
.navbar-dark .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:focus {
  background: rgba(0,212,255,.1);
  color: var(--cyan);
}
.dropdown-item i {
  width: 20px;
  text-align: center;
  margin-right: 8px;
  opacity: .7;
}


/* ===========================================================
   BUTTONS — override Bootstrap btn-primary / btn-dark
   =========================================================== */
.btn-primary,
.btn-primary:active,
.btn-primary:visited {
  background: var(--gradient-btn) !important;
  border: none !important;
  color: #fff !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  border-radius: var(--r);
  box-shadow: 0 2px 12px rgba(0,212,255,.2);
  transition: all .3s;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--gradient-btn) !important;
  border: none !important;
  color: #fff !important;
  box-shadow: 0 6px 25px rgba(0,212,255,.35) !important;
  transform: translateY(-1px);
}
.btn-primary img {
  margin-top: -3px;
  margin-right: 6px;
  max-width: 20px;
  filter: brightness(10);
}
.btn-dark,
.btn-dark:visited {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-2) !important;
  color: var(--text-1) !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  border-radius: var(--r);
}
.btn-dark:hover {
  background: var(--bg-elevated) !important;
  border-color: var(--border-hl) !important;
}
.btn-dark img { margin-top: -3px; margin-right: 6px; max-width: 20px; }

.btn-outline-primary {
  border: 2px solid var(--cyan) !important;
  color: var(--cyan) !important;
  background: transparent !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  border-radius: var(--r);
  transition: all .3s;
}
.btn-outline-primary:hover {
  background: var(--cyan) !important;
  color: var(--bg-base) !important;
  box-shadow: var(--glow);
}
.btn-link {
  color: var(--text-1);
  text-decoration: none;
  box-shadow: none !important;
}
.btn-link:hover { color: var(--cyan); text-decoration: none; }

#scroll .btn-primary { padding: 10px 22px; font-size: 13px; }


/* ===========================================================
   HERO
   =========================================================== */
.heading {
  background: var(--bg-base);
}
.main {
  padding-top: 140px;
  padding-bottom: 80px;
  text-align: center;
  background: transparent !important;
}
.main h1 {
  font-size: 62px;
  font-weight: 900;
  color: var(--text-1);
  text-shadow: none;
  line-height: 1.1;
  letter-spacing: -.03em;
}
.main h1 b {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}
.main h3 {
  margin-top: 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-2);
  text-shadow: none;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.main h3 strong { color: var(--cyan); }

.main-two {
  padding-top: 80px;
  padding-bottom: 50px;
  text-align: center;
  background: transparent !important;
}
.main-two h1 {
  font-size: 46px;
  text-shadow: none;
  color: var(--text-1);
}
.main-two h1 b {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

/* Hero buttons */
.mbuttons { margin-top: 50px; }
.mbuttons .btn {
  padding: 16px 32px;
  margin-right: 12px;
  font-size: 15px;
}
.mbuttons .btn img {
  margin-top: -3px;
  margin-right: 8px;
  max-width: 22px;
  filter: brightness(10);
}


/* ===========================================================
   FEATURES BAR
   =========================================================== */
.features,
div.features {
  margin-top: 0 !important;
  padding: 50px 0 !important;
  background: rgba(0,212,255,.04) !important;
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
  color: var(--text-1);
  backdrop-filter: none !important;
}
.features .featuretext,
.featuretext {
  text-align: center;
  font-size: 16px;
  color: var(--text-2);
  margin-bottom: 10px;
}
.featuretext b { color: var(--cyan); }
.features .depth-fea {
  text-align: center;
  background: transparent;
  padding: 30px 20px;
  border: 1px solid transparent;
  border-radius: var(--r);
  transition: all .3s;
}
.features .depth-fea:hover {
  background: rgba(0,212,255,.08);
  border-color: var(--border-hl);
  transform: translateY(-4px);
  box-shadow: var(--glow);
}
.features .depth-fea img { margin-bottom: 18px; max-width: 50px; }
.features .depth-fea h4 { font-size: 15px; font-weight: 600; }
.features .depth-fea h4 b { color: var(--cyan); }
.features .intro-fea { margin-top: 60px; }
.features .dtl-fea { padding-bottom: 30px; }
.features .dtl-fea p { opacity: .75; }


/* ===========================================================
   PRICING CARDS  (.morefea)
   =========================================================== */
.morefea,
div.morefea {
  padding: 100px 0 !important;
  background: var(--bg-base) !important;
}
.morefea h2 {
  color: var(--text-1) !important;
  text-shadow: none !important;
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 60px;
}
.morefea h2 b {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.morefea .row { margin-top: 20px; }
.morefea .row .boxy {
  text-align: center;
  padding: 50px 30px 40px;
  color: var(--text-1);
  background: var(--bg-card) !important;
  border: 1px solid var(--border-1) !important;
  border-left: 1px solid var(--border-1) !important;
  border-radius: 16px;
  transition: all .35s;
  cursor: default;
  position: relative;
  overflow: hidden;
  backdrop-filter: none !important;
  background-size: auto !important;
  background-position: initial !important;
  background-image: none !important;
}
.morefea .row .boxy::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity .35s;
}
.morefea .row .boxy:hover {
  border-color: var(--border-hl) !important;
  box-shadow: var(--glow);
  transform: translateY(-6px);
}
.morefea .row .boxy:hover::before { opacity: 1; }
.morefea .row .boxy h3 { font-weight: 700; font-size: 22px; }
.morefea .row .boxy p { color: var(--text-2); font-size: 14px; }
.morefea .row .boxy img { max-width: 36px; margin-right: 8px; margin-top: -4px; }
.morefea .boxy h4 .btn-primary img { max-width: 20px; }
.morefea ul {
  background: rgba(0,212,255,.03);
  border: 1px solid var(--border-1);
  border-radius: var(--r);
  margin-top: 30px;
  padding: 15px 30px 20px 40px;
  margin-bottom: 30px;
}
.morefea ul li {
  text-align: left;
  list-style: none;
  margin-top: 14px;
  color: var(--text-2);
  font-size: 14px;
}
.morefea ul li b { color: var(--text-1); }
.morefea ul li i { color: var(--cyan-dim); width: 20px; text-align: center; margin-right: 8px; }
.morefea ul li img { margin-top: 4px; width: 20px; }
.morefea h4 { font-size: 16px; }
.morefea h4 b { color: var(--cyan); font-size: 22px; }
.morefea h4 .btn { padding: 10px 24px; }
.morefea hr { border-color: var(--border-1); width: 40%; }
div.boxy h4 button { margin-top: 10px; }


/* ===========================================================
   DOMAIN SEARCH
   =========================================================== */
.searchdomain,
div.searchdomain {
  background: rgba(0,212,255,.04) !important;
  backdrop-filter: none !important;
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
  padding: 100px 0 80px !important;
  text-align: center;
  color: var(--text-1);
}
.searchdomain h2 { font-size: 36px; }
.searchdomain h2 b {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.searchdomain p { color: var(--text-2); }
div.searchdomain p { display: flex; }
.searchdomain .info { margin-top: 8px; }
.searchdomain .info h2 { font-size: 36px; margin-bottom: 24px; }
.searchdomain .sd .form-control {
  height: 56px;
  border: 1px solid var(--border-2);
  background: var(--bg-card);
  color: var(--text-1);
  border-radius: var(--r) 0 0 var(--r);
  padding-left: 22px;
}
.searchdomain .sd .form-control::placeholder { color: var(--text-3); }
.searchdomain .sd .form-group,
.searchdomain .sd .form-control { height: 56px; }
.searchdomain .sd .btn { border-radius: 0 var(--r) var(--r) 0; }
.searchdomain .btn-primary { border-top-right-radius: var(--r) !important; border-bottom-right-radius: var(--r) !important; }
.searchdomain .domain-price span {
  background: var(--bg-card);
  border: 1px solid var(--border-1);
  border-radius: 6px;
  padding: 6px 10px;
  margin-right: 6px;
  font-size: 14px;
}
.searchdomain .domain-price span small { opacity: .6; margin-right: 6px; }
.searchdomain .sd { margin-top: 5px; }


/* ===========================================================
   FAQ & INFOS
   =========================================================== */
.infos,
div.infos {
  padding: 100px 0 80px !important;
  text-align: center;
  background: var(--bg-base) !important;
}
.infos h2,
.infos h3 { color: var(--text-1) !important; }
.infos h2 b {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.infos .row { margin-top: 50px; }
.infos .boxy {
  border: 1px solid var(--border-1) !important;
  border-left: 1px solid var(--border-1) !important;
  background: var(--bg-card) !important;
  backdrop-filter: none !important;
  padding: 50px 40px;
  border-radius: 16px;
  text-align: left;
  height: auto !important;
  box-shadow: 0 1px 3px rgba(0,0,0,.4);
}
.infos .boxy:hover { border-color: var(--border-hl) !important; }
.infos .boxy img { display: block; margin: auto; }
.infos h4 { color: var(--text-1); font-size: 22px; }
.infos p { color: var(--text-2); line-height: 1.7; }
.infos hr { border-color: var(--border-1); }
.sf h3 { font-size: 32px; margin-bottom: 16px; }
.sf p { color: var(--text-2); max-width: 700px; margin: 0 auto 30px; }

/* Accordion / FAQ cards */
#faq .card,
#accordion .card,
#accordionExample .card,
.infos .card {
  background: transparent;
  border: none;
  margin-bottom: 8px;
}
#faq .card-header,
#accordion .card-header,
#accordionExample .card-header,
.infos .card-header {
  background: var(--bg-card);
  border: 1px solid var(--border-1);
  border-radius: var(--r) !important;
  padding: 4px 8px;
}
#faq .btn-link,
#accordion .btn-link,
#accordionExample .btn-link,
.infos .btn-link {
  color: var(--text-1) !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 15px;
  width: 100%;
  text-align: left;
  text-transform: none;
  box-shadow: none !important;
  text-decoration: none;
  white-space: normal;
}
#faq .btn-link:hover,
#accordion .btn-link:hover,
#accordionExample .btn-link:hover {
  color: var(--cyan) !important;
  text-decoration: none;
}
#faq .card-body,
#accordion .card-body,
#accordionExample .card-body,
.infos .card-body {
  background: var(--bg-deep);
  color: var(--text-2);
  border: 1px solid var(--border-1);
  border-top: 2px solid var(--cyan);
  border-radius: 0 0 var(--r) var(--r);
  padding: 20px 24px;
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
}
#faq .card-body ul li,
#accordionExample .card-body ul li { color: var(--text-2); }
#faq h5, #accordion h5, #accordionExample h5 { text-align: left; text-transform: none; margin: 0; }


/* ===========================================================
   STATS
   =========================================================== */
.stats { padding-top: 50px; }
.stats .col-md-3 { text-align: center; }
.stats .col-md-3 h4 { color: var(--text-2); font-size: 16px; }
.stats .col-md-3 h4 b {
  font-size: 36px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  display: block;
  margin-bottom: 6px;
}


/* ===========================================================
   SUPPORT BAR
   =========================================================== */
.supporty,
div.supporty {
  padding: 50px 0 !important;
  text-align: center;
  background: rgba(0,212,255,.04) !important;
  backdrop-filter: none !important;
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
}
.supporty h3 {
  color: var(--text-1) !important;
  font-size: 24px;
  font-weight: 600;
}
.supporty h3 span { color: var(--text-1); }
.supporty button,
.supporty h3 button {
  margin-left: 15px;
  padding: 12px 28px;
}


/* ===========================================================
   FOOTER
   =========================================================== */
.footery,
div.footery {
  padding: 60px 0 !important;
  background: var(--bg-deep) !important;
  border-top: 1px solid var(--border-1);
}
.footery .col-md-2 { text-align: center; }
.footery a { color: var(--text-3); transition: color .2s; font-size: 14px; }
.footery a:hover,
.footery a:focus { color: var(--cyan); text-decoration: none; }
.footery img { max-width: 60px; border-radius: 8px; }
.footery h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.footery hr {
  border-color: var(--border-hl);
  width: 40px;
  margin-left: 0;
  border-width: 2px;
}
.footery ol,
.footery .footer-list { padding: 0; list-style: none; margin: 0; }
.footery ol li,
.footery .footer-list li { margin-bottom: 8px; line-height: 1.6; }
div.footery .container .row { justify-content: center; }
div.footery .container .row .col-md-3 { text-align: left; }
div.footery .container .row .col-md-3 ol { padding: 0; }
.center-container { text-align: left; }


/* ===========================================================
   PAYMENTS
   =========================================================== */
.payments_methods_container,
div.payments_methods_container {
  clear: both;
  padding: 40px 0 30px !important;
  text-align: center;
  background: var(--bg-deep) !important;
  border-top: 1px solid var(--border-1);
}
.payments_methods_container * { box-sizing: border-box; }
.payments_methods_container h3 { color: var(--text-3); font-size: 14px; font-weight: 500; }
.payments_methods_container .pm_label,
.payments_methods_container .pm_items { display: inline-block; vertical-align: middle; margin-right: -.25em; }
.payments_methods_container .pm_label { width: 200px; font-size: 14px; }
.payments_methods_container .pm_item { display: inline-block; vertical-align: top; height: 44px; text-align: center; padding: 0 4px; margin-top: 8px; }
.payments_methods_container .pm_item .item-inner { border: 1px solid rgba(255,255,255,.08); border-radius: 8px; background: rgba(255,255,255,.95); padding: 2px 4px; transition: all .2s; }
.payments_methods_container .pm_item:hover .item-inner { border-color: var(--cyan); background: #fff; box-shadow: 0 0 12px rgba(0,212,255,.15); }
.payments_methods_container .pm_item img { max-width: 100%; max-height: 100%; opacity: .8; width: 70px; transition: all .2s; }
.payments_methods_container .pm_item:hover img { opacity: 1; }


/* ===========================================================
   COPYRIGHT
   =========================================================== */
.copyright {
  background: var(--bg-base) !important;
  text-align: center;
  padding: 20px 0 15px;
  border-top: 1px solid var(--border-1);
}
.copyright .copyright-text { color: var(--text-3); font-size: 12px; line-height: 22px; display: inline-block; }
.copyright a { color: var(--text-3); }
.copyright a:hover { color: var(--cyan); }
.copyright img { max-width: 60px; margin-left: 8px; opacity: .5; }


/* ===========================================================
   COOKIE BOX
   =========================================================== */
#cookieBox { display: none; }
.cookie-box {
  background: var(--bg-card);
  color: var(--text-1);
  border-top: 1px solid var(--border-hl);
  text-align: center;
  padding: 16px 20px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
}
.cookie-box a { color: var(--cyan); text-decoration: underline; }
.accept-button {
  background: var(--gradient-btn);
  color: #fff;
  padding: 8px 24px;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  margin-left: 12px;
}


/* ===========================================================
   PRICING TABLES (dedicated servers)
   =========================================================== */
.spricing .table-dark {
  background: var(--bg-card);
  border: 1px solid var(--border-1);
  border-radius: var(--r);
  overflow: hidden;
}
.spricing .table-dark thead th {
  background: var(--bg-deep);
  border-color: var(--border-1);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-2);
  text-align: center;
  padding: 22px 16px;
}
.spricing .table-dark td {
  border-color: var(--border-1);
  color: var(--text-2);
  font-size: 14px;
  line-height: 47px;
  text-align: center;
  padding: 20px;
}
.spricing .table-dark span { color: var(--cyan); font-size: 20px; font-weight: 700; }
.spricing .table-dark button { border-radius: 6px; padding: 10px 16px; }
.spricing .table-dark img { margin-left: 9px; max-width: 34px; }
.spricing .table-dark th img { max-width: 22px; margin-right: 6px; margin-top: -3px; }
.spricing .table-dark td button img { width: 18px; margin-right: 4px; margin-top: -3px; margin-left: 0; }


/* ===========================================================
   MISC PAGES
   =========================================================== */
/* Service agreement */
.npage { padding: 60px 0; background: var(--bg-card); color: var(--text-2); }
.npage h4 { color: var(--text-1); }
.npage hr { border-color: var(--border-1); }
.npage a { color: var(--cyan); }
.npage p { color: var(--text-2); line-height: 1.8; }
#container { display: flex; }
#left-menu { width: 200px; padding: 10px; margin-bottom: 30px; }
#left-menu a { display: block; padding: 8px 12px; color: var(--text-3); border-left: 2px solid var(--border-1); font-size: 13px; transition: all .2s; text-decoration: none; }
#left-menu a:hover { color: var(--cyan); border-left-color: var(--cyan); background: rgba(0,212,255,.08); }
#content { flex: 1; padding: 20px; }

/* Datacenter map */
.datacenter #container { width: 100%; height: 90vh; margin: 0; padding: 0; }

/* Order banner */
.ordernow { padding-top: 50px; padding-bottom: 100px; }
.ordernow h2 { color: var(--text-1); }
.ordernow h2 b {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 42px;
}
.ordernow button { margin-left: 20px; padding: 12px 28px; }
.ordernow button img { margin-top: -3px; max-width: 18px; }

/* wpricing */
.wpricing .col-md-4 { padding-left: 10px; padding-right: 10px; }
.wpricing .boxy h4 button { margin-top: 18px; }
.wpricing { padding-top: 0 !important; padding-bottom: 10px !important; }

/* Utility */
.hidden { display: none; }

/* special-h3 (dedicated server pages) */
.special-h3 { font-family: 'Outfit', sans-serif; font-size: 22px; text-align: center; color: var(--text-1); margin: 20px 0; }
.special-h3 b { font-weight: bold; color: var(--cyan); }
.special-h3 a { text-decoration: none; color: #fff; background: var(--gradient-btn); padding: 10px 20px; border-radius: 6px; transition: all .3s; display: inline-block; }
.special-h3 a:hover { box-shadow: var(--glow); transform: translateY(-2px); }

/* offshore-domains bold override */
.dprice h3 { display: inline-block; background: rgba(0,212,255,.1); padding: 10px; border-radius: 5px; margin: 10px 0; }
.dprice h3 b { display: inline-block; margin-right: 10px; }
b { color: var(--cyan); }

/* vpn-countries page */
.circle { width: 20px; height: 20px; background-color: var(--cyan); border-radius: 50%; margin-right: 10px; animation: pulse 1s infinite; display: inline-block; vertical-align: middle; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.2); opacity: .5; } }
.notification { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; text-align: center; background: rgba(0,212,255,.1); padding: 10px; border-radius: 5px; width: 100%; }
.message { font-size: 16px; color: var(--text-1); flex-grow: 1; }
.close-button { cursor: pointer; color: var(--text-1); font-size: 20px; padding-left: 10px; }

/* FAQ sidebar block */
.faqbc { background: var(--bg-card); border: 1px solid var(--border-1); border-radius: 16px; }
.faqbc img { margin-top: 30px; }
.faq { padding: 80px 0; }

/* Back to top */
.btn-to-top { position: fixed; right: 30px; bottom: 30px; padding: 10px 12px; display: none; background: var(--bg-card); border: 1px solid var(--border-2); border-radius: var(--r); z-index: 999; }
.btn-to-top:hover { border-color: var(--cyan); box-shadow: var(--glow); }
.btn-to-top img { max-width: 16px; }


/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1200px) {
  .mbuttons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 10px; }
  .mbuttons button { width: 100%; }
}
@media (max-width: 1000px) {
  .morefea .col-md-4 { flex: none; max-width: 100%; margin-bottom: 16px; }
  .searchdomain .col-md-7 { flex: none; max-width: 100%; margin-bottom: 16px; }
  .searchdomain .col-md-5 { flex: none; max-width: unset; }
  div.searchdomain p { justify-content: center; }
  div.infos .col-md-6 { flex: none; max-width: unset; }
  div.infos .col-md-3, div.footery .col-md-3, div.features .col-md-3 { flex: 0 0 50%; max-width: unset; }
}
@media (max-width: 991px) {
  .navbar-nav { text-align: center; }
  .center-container { text-align: center; }
  .footer-list { list-style: none; padding: 0; display: inline-block; }
  .footer-list li { margin-bottom: .5em; }
  .footer-list a { color: var(--text-3); text-decoration: none; }
  .payments_methods_container .pm_label { display: block; text-align: center; width: 100%; padding-bottom: 20px; }
  .payments_methods_container .pm_items { width: 100%; }
  .footery .col-md-3 { text-align: center; }
  .footery hr { margin-left: auto; margin-right: auto; }
  #container { flex-direction: column; }
  #left-menu { width: 100%; margin-bottom: 10px; }
}
@media (max-width: 767px) {
  .main { padding-top: 50px; padding-bottom: 0; }
  .main h1 { font-size: 36px; }
  .main h3 { font-size: 16px; margin-top: 20px; }
  .main .mbuttons { margin-top: 35px; }
  .main .mbuttons .btn { padding: 12px 18px; font-size: 13px; }
  .main .mbuttons .btn img { display: none; }
  .hidemobile { display: none !important; }
  .mbuttons { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .mbuttons button { width: 100%; }
  .morefea { padding: 60px 0 !important; }
  .morefea h2 { font-size: 28px; margin-bottom: 30px; }
  .morefea .row { margin-top: 0; }
  .morefea .col-md-6 { margin-top: 16px; }
  .morefea .row .boxy { margin-bottom: 16px; }
  .main-two { padding-top: 40px; padding-bottom: 20px; }
  .main-two h1 { font-size: 30px; text-align: center; }
  .features, div.features { padding: 20px 0 !important; }
  .features .depth-fea { margin-bottom: 10px; }
  .topbar { text-align: center; font-size: 12px; }
  .topbar .topright { display: none; }
  .searchdomain { padding: 50px 0 40px !important; }
  .searchdomain .info h2 { font-size: 24px; }
  .searchdomain .sd .form-control { height: 48px; }
  .searchdomain .sd .btn { height: 48px; }
  .infos { padding: 60px 0 !important; }
  .infos .boxy { border-radius: var(--r); }
  .supporty button { margin-left: 0; margin-top: 16px; }
  .supporty h3 { display: flex; flex-direction: column; align-items: center; font-size: 20px; }
  .supporty h3 a { margin-top: 10px; }
  .footery { padding: 40px 0 !important; }
  .footery img { margin-top: 20px; max-width: 50px; }
  .stats { padding-top: 10px; }
  .stats .col-md-3 { padding: 10px 0; }
  .stats .col-md-3 h4 b { font-size: 28px; }
  .zeus-fixed { background: var(--bg-deep) !important; }
  .faqbc { background: transparent !important; border: none; }
  .wpricing .col-md-4 { margin-top: 16px; }
  .spricing .table-dark td { padding: 8px; }
  .ordernow { padding-bottom: 60px; }
  .ordernow button { display: block; margin: 16px auto 0; }
  .navbar-brand { font-size: 16px; padding: 0; }
  div.infos .col-md-3 { flex: 0 0 50%; }
  .payments_methods_container .pm_items { max-width: 320px; margin: 0 auto; display: block; }
  .payments_methods_container .pm_item { width: 25%; margin-bottom: 10px; height: 32px; }
  .payments_methods_container .pm_item img { width: 60px; }
  div.boxy { margin-bottom: 12px; }
  div.features .col-md-3 { flex: 0 0 100%; }
}
@media (max-width: 510px) { div.infos .col-md-3 { flex: 0 0 100%; } }
@media (max-width: 410px) {
  p.domain-price.text-center { flex-wrap: wrap; flex-direction: column; }
  .mbuttons { grid-template-columns: 1fr; }
  .navbar-brand { padding: 0; margin-right: 0; font-size: 14px; }
}
@media screen and (max-width: 1011px) and (min-width: 991px) {
  #scroll button.btn.btn-primary { transform: scale(.85); }
}
