@font-face {
  font-family: 'AsapCondensed';
  src: url('fonts/AsapCondensed-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'AsapCondensed';
  src: url('fonts/AsapCondensed-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'AsapCondensed';
  src: url('fonts/AsapCondensed-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

:root {
  --black-olive: #202513;
  --citrine: #c8c21c;
  --selective-yellow: #ffb109;
  --white: #ffffff;
  --background-color: #f9f9f7;
  --light-gray-text: #d0d0cc;
  --border-color: #e9e8e1;
  --input-bg: #f0f0ed;
  --font-primary: 'AsapCondensed', 'Helvetica Neue', sans-serif;
}

html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: var(--font-primary);
  color: var(--black-olive);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 1rem;
  background-color: var(--background-color);
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle fill='%23e9e8e1' cx='10' cy='10' r='1.5'/%3E%3C/svg%3E");
  background-size: 20px 20px;
}

.card {
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(32, 37, 19, 0.07);
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  border: 1px solid var(--border-color);
}

.card__header {
  position: relative;
  background-color: var(--white);
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}

.card__logo {
  max-width: 31.25rem;
  width: 100%;
  height: auto;
  display: block;
}

.card__super-title {
  position: absolute;
  top: 0.75rem;
  right: 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--light-gray-text);
  margin: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.item-group {
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed var(--border-color);
}
.item-group:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.link-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.link-item__info {
  margin: 0;
  text-align: left;
}

.link-item__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
  color: var(--black-olive);
}

.link-item__description {
  font-size: 1rem;
  font-weight: 300;
  margin: 0;
  color: var(--black-olive);
  opacity: 0.7;
}

.link-item__button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black-olive);
  background-color: var(--selective-yellow);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.link-item__button:hover,
.link-item__button:focus {
  background-color: var(--citrine);
  color: var(--black-olive);
  transform: translateY(-2px);
  outline: none;
}

.session-item {
  text-align: center;
}

.session-item__label {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
  color: var(--black-olive);
}

.session-item__id {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--black-olive);
  background-color: var(--input-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem;
  width: 100%;
  text-align: left;
  outline-color: var(--citrine);
}

.info-link {
  margin-top: 0.75rem;
  text-align: center;
}

.info-link a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--citrine);
  text-decoration: none;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.info-link a:hover {
  color: var(--black-olive);
  text-decoration: underline;
}

@media (max-width: 520px) {
  .link-item {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .link-item__info {
    margin-bottom: 1rem;
  }
  .card__body {
    padding: 1rem;
  }
  .card__super-title {
    font-size: 1rem;
    right: 1rem;
  }
}