:root {
  --es-profile1: #1a2744;
  --es-profile2: #2c3e6b;
  --es-profile3: #e8b931;
  --es-profile4: #3a7bd5;
    --es-profile5: #46d49e;
  --es-profile6: #f5f6fa;
}
html {
  overflow-x: hidden;
}
* {
    font-family: 'Roboto', sans-serif;
  box-sizing: border-box;
}
body {
  color: #2e2e2e;
  margin: 0;
    background: #fff;
  font-size: 1rem;
  overflow-x: hidden;
  width: 100%;
}
.agegate_overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(10,15,30,0.92);
    z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.agegate_box {
  background: var(--es-profile1);
    border-radius: 16px;
  padding: 40px 32px;
  max-width: 440px;
  width: 90%;
  border: 1px solid rgba(255,255,255,0.08);
}
.agegate_title {
    color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.agegate_desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  font-weight: 300;
    line-height: 1.5;
}
.agegate_badge {
  display: inline-block;
  background: var(--es-profile3);
    color: var(--es-profile1);
  font-weight: 700;
  font-size: 1.8rem;
  width: 60px; height: 60px;
  border-radius: 50%;
  line-height: 60px;
  text-align: center;
}
.agegate_btn {
  background: var(--es-profile5) !important;
  color: var(--es-profile1) !important;
  font-weight: 700;
  border: none;
    padding: 12px 30px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}
.agegate_btn:hover {
  background: var(--es-profile3) !important;
}
.agegate_logo {
  border-radius: 8px;
}
.cookie_banner {
    position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  background: var(--es-profile1);
  z-index: 9999;
  padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.cookie_text {
  color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
  font-weight: 300;
}
.cookie_text a {
  color: var(--es-profile3);
  text-decoration: underline;
}
.cookie_accept {
  background: var(--es-profile5);
  color: var(--es-profile1);
  border: none;
  padding: 8px 20px;
    border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
}
.cookie_settings_btn {
  background: transparent;
  color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
}
.cookie_settings_panel {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 15px;
}
.cookie_toggle {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  display: flex; gap: 8px;
    align-items: center;
}
.cookie_toggle small {
  color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
}
.cookie_toggle input[type="checkbox"] {
  accent-color: var(--es-profile5);
}
.cookie_save {
  background: var(--es-profile3);
  color: var(--es-profile1);
  border: none; padding: 8px 20px;
  border-radius: 8px;
    font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
}
nav.fixed-top {
  background: rgba(26,39,68,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
    transition: background 0.3s;
  padding-top: 10px;
  z-index: 9990;
}
nav.fixed-top.darkHeader {
  background: rgba(26,39,68,0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
nav .logo img {
  max-height: 42px;
}
.featured-menu .menu {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
    gap: 0;
}
.featured-menu .menu-item a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 15px;
    border-radius: 8px;
  transition: background 0.2s;
}
.featured-menu .menu-item a:hover {
  background: rgba(255,255,255,0.1);
}
nav .fixed-top button,
nav button {
  background: none;
  border: none;
    color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}
nav button svg {
  width: 20px; height: 20px;
}
.menuitems {
  position: fixed;
  top: 0; right: -320px;
  width: 300px; height: 100vh;
  background: var(--es-profile1);
    transition: right 0.3s;
  z-index: 99999;
  overflow-y: auto;
}
.menuitems.active {
  right: 0;
    box-shadow: -4px 0 30px rgba(0,0,0,0.4);
}
.menuitems .menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menuitems .menu-item a {
  display: block;
  color: #fff;
  text-decoration: none;
    font-size: 1.1rem;
  padding: 12px 0;
  font-weight: 300;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.menuitems .menu-item a:hover {
  color: var(--es-profile3);
}
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
    background: var(--es-profile1);
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 80px;
}
.hero_bg_wrap {
  position: absolute;
  top: 0; left: 0;
    width: 100%; height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero_bg_wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(10,15,35,0.72);
    z-index: 1;
}
.hero_bg_wrap::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(26,39,68,0.4) 0%, rgba(10,15,35,0.85) 100%);
  z-index: 2;
}
.hero .container {
  position: relative;
  z-index: 3;
}
.hero h1 {
  color: #fff;
  font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
    color: var(--es-profile3);
}
.hero_sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 500px;
    line-height: 1.6;
}
.hero-textbox strong {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
    text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 8px;
}
.button.profile1 {
  background: var(--es-profile3);
    color: var(--es-profile1);
  font-weight: 700;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 8px;
  display: inline-block;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.button.profile1:hover {
  background: var(--es-profile5);
}
.nav_logo_img {
  max-height: 42px;
  filter: brightness(0) invert(1);
}
.footer_responsible {
  background: var(--es-profile2);
  border-top: 3px solid var(--es-profile3);
}
.responsible_block {
  text-align: center;
  padding: 30px 20px;
}
.responsible_badge {
  display: inline-block;
    background: var(--es-profile3);
  color: var(--es-profile1);
  font-weight: 700;
  font-size: 1.4rem;
  width: 50px; height: 50px;
  border-radius: 50%;
  line-height: 50px;
  margin-bottom: 15px;
}
.responsible_title {
  color: #fff;
  font-weight: 700;
    font-size: 1.4rem;
  margin-bottom: 15px;
}
.responsible_block p {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 300;
    line-height: 1.7;
  margin-bottom: 12px;
  text-align: left;
}
.responsible_links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
    justify-content: center;
}
.responsible_links a {
  color: var(--es-profile3);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 4px 12px;
    border: 1px solid rgba(232,185,49,0.3);
  border-radius: 20px;
  transition: background 0.2s;
}
.responsible_links a:hover {
  background: rgba(232,185,49,0.1);
}
.footer {
  background: var(--es-profile1);
    color: rgba(255,255,255,0.7);
}
.footer_logo_img {
  max-height: 40px;
  filter: brightness(0) invert(1);
    margin-bottom: 15px;
}
.footer .widgetarea {
  margin-bottom: 15px;
}
.footer .textwidget p {
  font-size: 0.85rem;
  font-weight: 300;
    line-height: 1.7;
  margin-bottom: 8px;
}
.footer .textwidget a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.footer .textwidget a:hover {
  color: var(--es-profile3);
}
.footer h4 {
  color: #fff;
  font-size: 1rem;
    font-weight: 700;
}
.footer_regul {
  display: flex;
  gap: 25px;
    align-items: center;
  flex-wrap: wrap;
}
.footer_regul a {
  display: inline-block;
  transition: opacity 0.2s;
}
.footer_regul a:hover {
  opacity: 1;
}
.regul_logo {
  max-height: 32px;
  filter: brightness(0) invert(1);
  opacity: 0.55;
    transition: opacity 0.2s;
}
.regul_logo:hover {
  opacity: 0.9;
}
.footer small {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
}
.profile1_sec {
  background: var(--es-profile6);
}
.profile2_sec {
  background: var(--es-profile1);
  color: #fff;
}
.profile2_sec h2 {
  color: #fff;
}
.profile2_sec h2 em {
  color: var(--es-profile3);
    font-style: italic;
}
.profile2_sec p {
  color: rgba(255,255,255,0.75);
  font-weight: 300;
}
.profile1_sec h2 em {
  color: var(--es-profile4);
  font-style: italic;
}
.profile1_sec p {
  font-weight: 300;
  font-size: 0.95rem;
    line-height: 1.7;
  color: #444;
}
.sec_img_round {
  border-radius: 50%;
  aspect-ratio: 1/1;
    object-fit: cover;
  max-width: 320px;
}
.sec_img_rect {
  border-radius: 16px;
  object-fit: cover;
    max-width: 100%;
  width: 100%;
}
.regul_badges {
  display: flex;
  gap: 15px;
  align-items: center;
    flex-wrap: wrap;
}
.regul_badge_img {
  max-height: 30px;
  filter: brightness(0) invert(1);
  opacity: 0.6;
    transition: opacity 0.2s;
}
.regul_badge_img:hover {
  opacity: 1;
}
.partner_showcase {
  background: #fff;
}
.section_tag {
  display: inline-block;
  background: var(--es-profile3);
  color: var(--es-profile1);
    font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.partner_card {
  background: var(--es-profile1);
  border-radius: 16px;
  padding: 30px 28px;
    border: 1px solid rgba(255,255,255,0.05);
}
.partner_showcase_logo {
  max-height: 60px;
  max-width: 200px;
    filter: brightness(0) invert(1);
}
.partner_rating {
  display: flex;
  gap: 8px;
  align-items: center;
    justify-content: center;
}
.rating_stars {
  color: var(--es-profile3);
  font-size: 1.1rem;
}
.rating_text {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
    font-weight: 300;
}
.partner_card_title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
    margin-bottom: 10px;
}
.partner_card_desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 300;
    line-height: 1.65;
  margin-bottom: 15px;
}
.partner_advantages {
  margin-bottom: 5px;
}
.adv_item {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 300;
    padding: 4px 0;
}
.adv_icon {
  color: var(--es-profile5);
  font-weight: 700;
  margin-right: 8px;
}
.nyheter {
  background: var(--es-profile6);
}
.nyheter h2 {
  color: var(--es-profile1);
  font-weight: 700;
}
.aktuelt_list figure {
  overflow: hidden;
  border-radius: 16px;
    margin: 0;
}
.card_img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
    transition: transform 0.3s;
}
.aktuelt_list:hover .card_img {
  transform: scale(1.03);
}
.news-wrap {
  color: #555;
}
.news-wrap span {
  font-size: 0.8rem;
  color: #999;
}
.news-wrap h4 {
  font-size: 1.05rem;
    font-weight: 700;
  color: var(--es-profile1);
}
.news-wrap .excerpt {
  font-size: 0.85rem;
  font-weight: 300;
    line-height: 1.6;
  color: #666;
  margin-top: 5px;
}
.news-wrap a {
  text-decoration: none;
}
.article-cat {
  font-size: 0.8rem;
  background: var(--es-profile2);
  color: #fff !important;
    border-radius: 10rem;
  padding: 3px 0.5rem 0.1rem;
}
.trusted_partner {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.partner_label {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
    font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.partner_logo_img {
  max-height: 30px;
  filter: brightness(0) invert(1);
    opacity: 0.7;
  transition: opacity 0.2s;
}
.partner_logo_img:hover {
  opacity: 1;
}
@media(max-width: 768px) {
  .hero {
    min-height: 70vh;
      padding-top: 100px;
    padding-bottom: 50px;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .hero_sub {
    font-size: 0.92rem;
  }
  .footer_regul {
    justify-content: center;
  }
  .responsible_block {
    padding: 20px 10px;
  }
  .responsible_block p {
    text-align: center;
      font-size: 0.82rem;
  }
  .partner_card {
    padding: 20px 16px;
  }
  .sec_img_round {
    max-width: 200px;
  }
  .partner_showcase_logo {
    max-height: 45px;
  }
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .row {
    margin-left: 0;
    margin-right: 0;
  }
  .row.gx-5 {
    --bs-gutter-x: 1rem;
  }
  nav .row {
    flex-wrap: nowrap;
  }
  .partner_advantages {
    margin-left: 0;
  }
  .adv_item {
    font-size: 0.8rem;
  }
  .partner_card_desc {
    font-size: 0.84rem;
  }
  .partner_card_title {
    font-size: 1.05rem;
  }
  .footer_regul {
    gap: 15px;
  }
  .regul_logo {
    max-height: 24px;
  }
  .trusted_partner {
    justify-content: center !important;
  }
  img {
    max-width: 100%;
    height: auto;
  }
}
@media(min-width: 992px) {
  .hero {
    min-height: 85vh;
  }
}
@media(min-width: 1100px) {
  .hero h1 {
    font-size: 3.2rem;
  }
}
.legal_content {
  padding-top: 160px;
  min-height: 70vh;
}
.legal_content h1 {
  color: var(--es-profile1);
  font-weight: 700;
    font-size: 1.8rem;
  margin-bottom: 8px;
}
.legal_content h1 + p {
  color: #999;
  font-size: 0.82rem;
  margin-bottom: 30px;
}
.legal_content h2 {
  color: var(--es-profile1);
  font-weight: 700;
  font-size: 1.15rem;
    margin-top: 28px;
  margin-bottom: 8px;
}
.legal_content h3 {
  color: var(--es-profile2);
  font-weight: 700;
  font-size: 1rem;
    margin-top: 22px;
  margin-bottom: 6px;
}
.legal_content p {
  font-weight: 300;
  font-size: 0.92rem;
    line-height: 1.7;
  color: #444;
  margin-bottom: 12px;
}
.article_content {
  padding-top: 160px;
  min-height: 70vh;
}
.article_content h1 {
  color: var(--es-profile1);
  font-weight: 700;
    font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.3;
  margin-bottom: 8px;
}
.article_meta {
  color: #999;
  font-size: 0.82rem;
    margin-bottom: 25px;
}
.article_content h2 {
  color: var(--es-profile1);
  font-weight: 700;
  font-size: 1.2rem;
    margin-top: 30px;
  margin-bottom: 10px;
}
.article_content p {
  font-weight: 300;
  font-size: 0.95rem;
    line-height: 1.75;
  color: #3a3a3a;
  margin-bottom: 14px;
}
.article_hero_img {
  border-radius: 12px;
  overflow: hidden;
    margin: 0;
}
.article_hero_img img {
  width: 100%;
  aspect-ratio: 16/9;
    object-fit: cover;
}
.article_back a {
  color: var(--es-profile4);
  text-decoration: none;
  font-weight: 500;
    font-size: 0.9rem;
}
.article_back a:hover {
  color: var(--es-profile3);
}
.faq_content {
  padding-top: 160px;
    min-height: 70vh;
}
.faq_content h1 {
  color: var(--es-profile1);
  font-weight: 700;
  font-size: 1.8rem;
    margin-bottom: 8px;
}
.faq_intro {
  color: #666;
  font-weight: 300;
  font-size: 0.95rem;
}
.accordion-item {
  border: 1px solid #e8e9ed;
    border-radius: 0 !important;
  margin-bottom: -1px;
}
.accordion-button {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--es-profile1);
    padding: 16px 20px;
}
.accordion-button:not(.collapsed) {
  background: var(--es-profile6);
  color: var(--es-profile1);
    box-shadow: none;
}
.accordion-button:focus {
  box-shadow: none;
  border-color: #e8e9ed;
}
.accordion-body {
  font-weight: 300;
  font-size: 0.9rem;
    line-height: 1.7;
  color: #444;
  padding: 16px 20px;
}
