* {
  box-sizing: border-box;
}

html,
body {
  color: var(--color-1);
  min-height: 100vh;
}

body{
      /* justify-content: center; */
    display: flex;
    align-items: center;
}

a {
  color: var(--color-2);
}

/* .card{ background: var(--color-3); } */
.btn {
  background: var(--color-1);
  color: #fff;
  border: 0;
  padding: .6rem .9rem;
  border-radius: .5rem;
}

.btn.secondary {
  background: var(--color-1);
}

.badge {
  background: var(--color-4);
  color: #111;
  padding: .2rem .5rem;
  border-radius: .375rem;
  font-size: .8rem;
}

body {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  margin: 0;
  background: var(--color-5);
  color: #e5e7eb;
  display: flex;
  flex-direction: column;
  background-image: url(images/brick-wall-dark.png);
}

a {
  color: inherit;
}

.logocontainer {
  display: flex;
  justify-content: center;
}

.logocontainer img {
  width: 400px;
  margin-top:10px;
}

header.container {
  max-width: none;
  max-height: 115px;
  margin: 0px;
  background-color: var(--color-1);
  display: flex;
  flex-direction: column;
  padding-bottom: 0px;
  width: 100%;
  align-items: center;

}

h1 {
  font-weight: bold;
  text-align: center;
  color: var(--color-5);
  font-size: 24px;
  font-family: "Merriweather", serif;
  text-transform: uppercase;
}

h2 {
  font-weight: bold;
  text-align: left;
  color: var(--color-5);
  font-size: 18px;
  font-family: "Merriweather", serif;
  text-transform: uppercase;
}

h3 {
  font-weight: bold;
  text-align: center;
  color: var(--color-5);
  font-size: 14px;
  font-family: "Merriweather", serif;
  text-transform: uppercase;
}

h4 {
  font-weight: bold;
  text-align: left;
  color: var(--color-5);
  font-size: 14px;
  font-family: "Merriweather", serif;
}

/* FOOTER */

footer.container {
  max-width: none;
  /* max-height: 115px; */
  margin: 0px;
  background-color: var(--color-1);
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  flex: 1;
}

footer a {
  padding: 8px 16px;
  color: var(--color-5);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer .footernav {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  max-width: 980px;
  width: 100%;
  margin: 0;
  padding: 16px;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

header h1 {
  margin: 0;
  padding: 16px 0;
}

.card {
  background: var(--color-1);
  border-radius: 0px;
  padding: 16px;
  margin-bottom: 16px;
  border: 3px outset var(--color-1);
  width: 948px;

}

/* .card h3{font-weight: bold;text-align: center;color: var(--color-5);font-size: 24px;font-family: "Merriweather", serif;text-transform: uppercase;} */
.card p {
  text-align: center;
}

.news .card p, .event-update p {
  text-align: left;
}

.event-update .card p{
  text-align: left;
}


.card .logo {
  width: 100px;
  background: #fff;
  padding: 8px;
  position: absolute;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.cover {
  width: 100%;
  height: auto;
  border-radius: 0px;
  margin: 8px 0;
}

.fights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fight {
  border: 1px solid #1f2937;
  border-radius: 0px;
  padding: 12px;
}

.meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 6px;
}

.meta .nr {
  background-color: var(--color-2);
  padding: 4px;
  font-weight: bold;
  border-radius: 50%;
  padding: 4px;
  height: 16px;
  width: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.participants {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.participant {
  background: var(--color-2);
  border: 1px solid var(--color-2);
  border-radius: 0px;
  padding: 10px;
  background-image: url(images/black-linen.png);
  position: relative;
}

.sport-toggle a{
  /* margin-right: 10px; */
  padding:8px 32px;
  color: var(--color-5);  
  text-decoration: none;
}

.sport-toggle a.active{
  background: var(--color-5);
  color:var(--color-1);
}

.participant .odds {
  position: absolute;
  right: 8px;
  bottom: 8px;
  background-color: green;
  border-radius: 8px;
  padding: 8px;
  display: none;
}

.name {
  font-weight: 600;
  margin-bottom: 6px;
}

.odds {
  font-size: 14px;
}

.cta {
  display: inline-block;
  margin-left: 6px;
  padding: 6px 10px;
  border-radius: 6px;
  background: #2563eb;
  color: white;
  text-decoration: none;
  font-size: 12px;
}

.cta:hover {
  filter: brightness(1.1);
}

.list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.list li {
  margin: 8px 0;
}

.disclaimer {
  margin-top: 24px;
  font-size: 12px;
  color: #9ca3af;
}



@media (max-width: 720px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .participants {
    grid-template-columns: 1fr;
  }

  .vs {
    display: none;
  }
    .digests ul{
      grid-template-columns:1fr  1fr!important;
  }
}
.card{
  width: 100%;
}
  header.container{
    padding:0px!important;
  }
  footer .footernav{
        flex-direction: column;
  }
.topnav {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 12px 0px 0px 0px;
  justify-content: center;
}

.topnav a {
  padding: 8px 10px;
  text-decoration: none;
  border: 0px solid #e5e7eb;
  font-weight: bold;
  text-transform: uppercase;
}

.topnav a.active {
  color: var(--color-5);
}

.topnav a:hover {
  color: var(--color-3);
  background-color: var(--color-5)
}

.participants {
  display: grid;
  gap: 12px;
  position: relative;
}

.participant {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  align-items: center;
  border: 3px outset var(--color-2);
}

.participant .avatar-wrap {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 0%;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.participant img.avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;.participant .meta-line
  display: block;
}

.participant .meta-line {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  /* height: 120px; */
  flex-direction: column;
  align-items: flex-start;
}

.participant img.flag {
  height: 40px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.participant .name {
  font-family: "Merriweather", serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--color-5);
}

.participant .corner {
  opacity: 0.7;
  font-size: 0.9em;
}

.participant .odds {
  margin-top: 4px;
}

.participant:nth-of-type(2) {
  background: var(--color-3);
  background-image: url(images/black-linen.png);
  border: 3px outset var(--color-3);
}

.participants .vs {
  position: absolute;
  height: 146px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: none;
}

.record {
  font-weight: bold;
}

/* HOME */

.home-list{
      width: 948px;
}

.major-events__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.major-events__item {
  border-bottom: 1px dashed rgba(255,255,255,.12);
}

.major-events__item:last-child {
  border-bottom: 0;
}

.major-events__link {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  color: inherit;
}

.major-events__link a {
  text-decoration: none;
}

.major-events__meta a {
  color: var(--color-5);
  font-weight: 700;
}

.major-events__link strong {
  display: block;
  color: var(--color-5);
  font-family: "Merriweather", serif;
}

.major-events__meta {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  opacity: .8;
}

.breadcrumbs {
  width: 100%;
  margin-bottom: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.72);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 6px;
  opacity: .55;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--color-5);
  text-decoration: underline;
}

.breadcrumbs [aria-current="page"] {
  color: var(--color-5);
}

.organisation-hub__header {
  display: flex;
  gap: 16px;
  align-items: center;
}

.organisation-logo-link {
  display: inline-block;
  color: inherit;
}

.organisation-logo-link:hover,
.organisation-link a:hover {
  color: var(--color-5);
}

.organisation-link a {
  font-weight: 700;
}

.organisation-hub__header .logo {
  position: relative;
  flex: 0 0 auto;
}

.organisation-hub__header h1,
.organisation-hub__header p {
  text-align: left;
}

.organisation-hub__external {
  color: var(--color-5);
  font-weight: 700;
}

.organisation-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.organisation-list__item {
  border-bottom: 1px dashed rgba(255,255,255,.12);
}

.organisation-list__item:last-child {
  border-bottom: 0;
}

.organisation-list__link {
  display: block;
  padding: 12px 0;
  text-decoration: none;
}

.organisation-list__link strong {
  display: block;
  color: var(--color-5);
  font-family: "Merriweather", serif;
}

.organisation-list__meta {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  opacity: .8;
}

/*  EVENTS */

.event-item img {
  width: 100px;
  background: #fff;
  padding: 8px;
  position: absolute;
}

.events-list .event-img{
  display: grid;
  place-items: center;

}

.events-list .event-img img
{
    width: 400px;
  max-width: 100%;
}

.events-list {
  width: 948px;
}

.news-list .event-item img{
  position: relative;
}

.events-list a{
  display: flex;
  flex-direction: column;
}

.event-updates {
  /* margin-top: 18px; */
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.event-updates__section {
  margin-top: 12px;
}

.event-updates h5 {
  margin: 10px 0 8px;
  font-size: 14px;
  opacity: .9;
}

.event-update {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,.08);
}

.event-update__meta {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  opacity: .8;
  margin-bottom: 4px;
}

.event-update__date{
  font-size: 12px;
}

.event-update__title {
  font-weight: 700;
  margin-bottom: 4px;
}

.event-update__body {
  opacity: .92;
  line-height: 1.4;
}

.badge {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
}

.badge--pinned {
  font-weight: 700;
}


img.cover {
  width: 100%;
  border: 1px solid #1f2937;
}

/* NEWS */
article.news {
  /* width: 948px; */
}

.img-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* CONTENT */
.content p {
  text-align: left;
}

/* LANGUAGE SWITCHER */
.language-switcher {
  display: flex;
  gap: .5rem;
  justify-content: flex-end;
  font-size: .9rem
}

.language-switcher a {
  color: #666;
  text-decoration: none;
  border-radius: .25rem
}

/* .language-switcher a:hover{background:#f0f0f0} */
.language-switcher .active {
  font-weight: 600;
  color: #000
}

div.lang {
  position: absolute;
  right: 0px;
  padding: 16px;
  top: 0px;
}

div.lang img {
  width: 30px;
}

.active img {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

.date {
  font-style: italic;
}

/* LANGUAGE SWITCHER */

    .language-switcher {
        display: flex;
        gap: .5rem;
        justify-content: flex-end;
        font-size: .9rem
    }

    .language-switcher a {
        color: #666;
        text-decoration: none;
        padding: .15rem .4rem;
        border-radius: .25rem;
        display: inline-flex;
        align-items: center
    }

    .language-switcher a:hover {
        background: #f0f0f0
    }

    .language-switcher .active {
        font-weight: 600;
        color: #000;
        display: inline-flex;
        align-items: center
    }

    .language-switcher img {
        width: 20px;
        height: 14px;
        display: block
    }

    /* Desktop: normaal menu */
.topnav {
  display: flex;
  gap: 20px;
}
/* Close button standaard verbergen (desktop) */
.closebtn {
  display: none;
}


/* Hamburger-knop standaard verbergen */
.hamburger {
  display: none;
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width:1000px){
  .events-list,.home-list {
  width: 100%;
}

}

/* --- MOBIEL --- */
@media (max-width: 768px) {

  .record{
        font-size: 12px;
  }
  .participant .name, h1{
    font-size: 16px;
  }
.logocontainer img {
    width: 50%;
    margin-bottom: 10px;
}

.card .logo, .event-item img{
  position: relative;
}

header.container{
  padding-bottom: 16px;
}
  .hamburger {
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    /* background: red; */
    color: var(--color-5);
    /* margin-top: 12px; */
  }

    /* Sluitknop tonen op mobiel */
  .closebtn {
    display: block;
    font-size: 32px;
    background: none;
    border: none;
    align-self: flex-end;
    cursor: pointer;
    color: white;
    margin-bottom: 10px;
    position: absolute;
    top: 0px;
    right: 0px;
    margin: 16px;
    color:var(--color-5);
  }
  .topnav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 0px;
    right: 0px;
    background: #111;
    padding: 10px 20px;
    border-radius: 6px;
    width:100%;
    height:100%;

    z-index: 999;
  }

  .topnav a {
    padding: 10px 0;
    display: block;
    color: white;
  }

  /* Actief menu zichtbaar */
  .topnav.active {
    display: flex;
  }
}


/* COOKIE BANNER */
  #cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: #111827;
            color: #fff;
            padding: 18px 22px;
            font-size: 15px;
            z-index: 9999;
            border-top: 2px solid #0EA5E9;
            box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.4);
        }

        .cookie-content {
            max-width: 1100px;
            margin: auto;
            display: flex;
            flex-direction: row;
            gap: 16px;
            align-items: center;
            justify-content: space-between;
        }

        .cookie-text {
            line-height: 1.4;
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
        }

        #cookie-accept {
            padding: 8px 16px;
            background: #0EA5E9;
            border: none;
            border-radius: 4px;
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: 0.25s;
        }

        #cookie-accept:hover {
            background: #0284C7;
        }

        @media (max-width: 600px) {
            .cookie-content {
                flex-direction: column;
                text-align: center;
            }

            #cookie-accept {
                width: 100%;
            }

          }
          .post-media-single img,
.post-media-slider img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.post-media-single {
  margin-bottom: 16px;
}

.post-media-slider {
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}

.post-media-slider .slides {
  position: relative;
}

.post-media-slider .slide {
  display: none;
}

.post-media-slider .slide.active {
  display: block;
}

.post-media-slider .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
}

.post-media-slider .prev { left: 8px; }
.post-media-slider .next { right: 8px; }
.post-image{width: 100%;}

.pagination .btn{
  padding:8px 12px;
  /* border:1px solid #ddd; */
      border: 3px outset var(--color-1);
  border-radius:8px;
  text-decoration:none;
  color:var(--color-5);
  display:inline-block;
}
.pagination .btn.active{
  font-weight:700;
  border-color:#999;
}
.pagination .btn.disabled{
  opacity:.5;
  cursor:not-allowed;
}

img.social{
  height: 40px;
}

.news-link{
  display: flex;
  align-items: center;
}

.news-link img{
  margin-right:40px;
}

.news-featured-image{
  width:200px;
  max-width: 100%;
}

@media (max-width: 720px) {
.news-featured-image{
  width: 100px;
}
}

.bet-banner {
  width: 100%;
  margin: 16px 0;
  padding: 14px 18px;
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.bet-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.bet-text {
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

.bet-text strong {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.bet-text span {
  font-size: 13px;
  color: #bfbfbf;
}

.bet-text img{
  margin-left: -10px;
width: 200px;
}

.bet-button {
  background: #EDB92E;
  color: #000;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.bet-button:hover {
  background: #d9a922;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0,0,0,0.4);
}

.bet-logo {
  /* height: 28px; */
  width: auto;
  opacity: 0.9;
}

/* Mobile */
@media (max-width: 640px) {
  .bet-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .bet-button {
    width: 100%;
    text-align: center;
  }

  .bet-logo {
    /* align-self: flex-end; */
    margin-top: 6px;
  }
  .digests ul{
    grid-template-columns:1fr!important;
  }
}


.digests{

}

.digests ul{
  display: grid;
  grid-template-columns: repeat(3,1fr);
}

.digests .news-link{
  display: flex;
  flex-direction: column;
}

.digests .news-link img{
  margin-right: 0;
}

.digests .news-link>div{
  flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
}

.event-update__date{

}

.digests .news-featured-image{

}

.digest-update__date{
  /* margin:12px; */
  margin-top: 12px;
}

.section-subtitle {
    display: block;
    margin-top: -6px;
    margin-bottom: 12px;
    color: #888;
    font-size: 13px;
    font-weight: 500;
}
