/* Reset and basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'HockeynightSansRoughBold';
  src: url('../fonts/HockeynightSansRough-Bold.eot');
  src: url('../fonts/HockeynightSansRough-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/HockeynightSansRough-Bold.woff2') format('woff2'), url('../fonts/HockeynightSansRough-Bold.woff') format('woff'), url('../fonts/HockeynightSansRough-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

html,
body {
  height: 100%;
  font-family: 'HockeynightSansRoughBold', Arial, sans-serif;
  font-weight: 400;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
  font-size: 16px;
}

body {
  background: #000 url('../images/background.jpg') no-repeat bottom center;
  background-size: cover;
  /* backdrop-filter: grayscale(100%); */
}

/* App container */
.app {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(5px);
  text-transform: uppercase;
}

/* Language picker */
.lang-picker {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 20;
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 4px;
  backdrop-filter: blur(10px);
}

.lang-picker__btn {
  background: transparent;
  border: none;
  color: white;
  font-family: 'HockeynightSansRoughBold', sans-serif;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.2s ease;
}

.lang-picker__btn:hover {
  opacity: 1;
}

.lang-picker__btn--active {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  opacity: 1;
}

/* Main layout */
.main {
  display: flex;
  flex: 1;
}

/* Left column */
.main__left-column {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 40px;
  overflow: hidden;
  width: 100%;
}

.main__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.main__logo-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 48px 0;
}

.main__logo {
  display: inline-flex;
  max-width: 400px;
  width: 100%;
}

.main__logo img {
  width: 100%;
  height: auto;
}

/* Social media section */
.follow-us {
  position: relative;
  z-index: 10;
  color: white;
  margin-bottom: 20px;
}

.follow-us__label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.follow-us__channel-list {
  display: flex;
  gap: 16px;
  list-style: none;
  margin-bottom: 20px;
  justify-content: center;
}

.follow-us__channel {
  display: flex;
}

.follow-us__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.follow-us__link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.follow-us__icon {
  width: 16px;
  height: 16px;
}

/* Terms and conditions */
.follow-us__disclaimer {
  position: relative;
  z-index: 10;
}

.follow-us__disclaimer ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 16px;
}

.follow-us__disclaimer a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.follow-us__disclaimer a:hover {
  opacity: 1;
  text-decoration: underline;
}

.message {
  font-size: 24px;
  font-weight: bold;
  color: white;
  font-family: 'HockeynightSansRoughBold', sans-serif;
  margin-bottom: 2rem;
  max-width: 500px;
  text-transform: uppercase;
  min-height: 2em;
}

.main__button {
  background: url(../images/button-bg.png);
  background-color: transparent;
  background-size: 100% 100%;
  background-position: center center;
  background-position-x: 20%;
  background-repeat: no-repeat;
  border-color: transparent;
  color: rgb(0, 0, 0);
  padding: 1rem 2rem;
  font-size: 2rem;
  line-height: .8;
  min-width: 10rem;
  font-weight: bold;
  font-family: 'HockeynightSansRoughBold', sans-serif;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
}

.main__button:hover {
  background: url(../images/button-danger-bg.png);
  background-color: transparent;
  background-size: 100% 100%;
  background-position: center center;
  background-position-x: 20%;
  background-repeat: no-repeat;
}

/* Responsive design */
@media (max-width: 768px) {
  .main__left-column {
    padding: 20px;
  }

  .main__logo {
    max-width: 250px;
  }

  .main__button {
    font-size: 2rem;
    padding: 0.75rem 1.5rem;
    min-width: 8rem;
  }

  .message {
    font-size: 18px;
  }
}

@media (max-width: 480px) {

  .main__button {
    font-size: 2rem;
    padding: 0.6rem 1.2rem;
    min-width: 7rem;
  }

  .message {
    font-size: 16px;
  }

  .follow-us__disclaimer ul {
    align-items: center;
  }
}

/* Loading states */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Transitions */
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s;
}

.fade-enter,
.fade-leave-to {
  opacity: 0;
}