:root {
  --vikingo-orange: #e4a92d;
  --white: #ffffff;
  --black: #000000;
  --header-height: 175.8201px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
}

.landing {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background-image: url('assets/background.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (max-width:768px){

    .landing{
        background:url("assets/background-mobile.jpg") center top no-repeat;
        background-size:cover;
        min-height:100vh;
    }

    .buttons{
        margin-top:54vh;
    }

}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: var(--header-height);
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.62) 58%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}

.brand-logo {
  width: auto;
  height: clamp(70px, 5.6vw, 108px);
  max-width: min(260px, 54vw);
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}

.country-buttons {
  position: absolute;
  left: 50%;
  bottom: clamp(34px, 5.2vw, 76px);
  transform: translateX(-50%);
  z-index: 2;
  width: min(86vw, 1500px);
  display: grid;
  grid-template-columns: repeat(4, minmax(170px, 1fr));
  gap: clamp(18px, 3vw, 52px);
}

.country-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 63px;
  padding: 11px 28px 9px;
  border: 4px solid var(--white); /* 3 pt aprox */
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  text-align: center;
  font-family: 'Evogria', 'Bebas Neue', 'Arial Narrow', Impact, sans-serif;
  font-size: 40.8px; /* 35.1 pt aprox */
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
  -webkit-tap-highlight-color: transparent;
}

.country-btn:hover,
.country-btn:focus-visible {
  background: var(--vikingo-orange);
  border-color: var(--vikingo-orange);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.36);
  outline: none;
}

.country-btn:active {
  background: var(--vikingo-orange);
  border-color: var(--vikingo-orange);
  transform: translateY(0) scale(0.98);
}

.country-btn span {
  margin-left: 8px;
  font-size: 0.78em;
  line-height: 1;
}

@media (max-width: 1100px) {
  :root {
    --header-height: 142px;
  }

  .country-buttons {
    width: min(88vw, 900px);
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    bottom: 42px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 116px;
  }

  .landing {
    background-position: center top;
  }

  .brand-logo {
    height: 70px;
  }

  .country-buttons {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    gap: 12px;
    bottom: 28px;
  }

.country-btn{
  font-size: clamp(18px, 2.2vw, 35.1pt) ;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
  }

