:root {
  --background: #ffffff;
  --surface: #ededed;
  --primary: #8d3c65;
  --text-primary: #000000;
  --muted: #ded9d9;
  --outline: #cccccc;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
}

body,
html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: var(--background);
  color: var(--text-primary);
}

.screen {
  display: flex;
  flex-direction: column;
  min-height: 43vh;
}

.header {
  background: #8d3c65;
  padding: var(--spacing-md);
  text-align: center;
  border-bottom: 1px solid var(--outline);
}

.logo {
  margin: 0;
  width: 240px;
  height: 112px;
  font-size: 20px;
  aspect-ratio: 240 / 112;
  color: var(--primary);
  display: block;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: var(--spacing-md);
}

.content {
  width: 100%;

  padding: var(--spacing-lg);
}

.heading {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}

.description {
  font-size: clamp(14px, 2vw, 20px);
  color: black;
  line-height: 1.5;
  margin-bottom: var(--spacing-lg);
}

.actions {
  justify-content: center;
  gap: var(--spacing-sm);
}

.btn {
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn.outline {
  background: var(--primary);
  color: #fff;
}

.btn.primary {
  background: var(--primary);
  color: #fff;
}
.btn.outline:hover {
  background-color: white;
  color: rgb(2, 2, 2);
  letter-spacing: 1px;
}
.btn.primary:hover {
  background-color: white;
  color: rgb(2, 2, 2);
  letter-spacing: 1px;
}

.list-wrapper {
  background: #ffffff;

  overflow: hidden;
  text-align: left;
}

.list-title {
  font-size: 40px;
  font-weight: 700;
  padding: 16px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: center;
}

.casino-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 50px;
  border-bottom: 1px solid #eee;
  background: #fff;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.casino-row:last-child {
  border-bottom: none;
}

.casino-brand {
  font-weight: bold;
  font-size: 16px;
}

.casino-info {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
  padding: 15px;
}

.casino-rating {
  font-size: 16px;
  color: gold;
}

@media (max-width: 768px) {
  .casino-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
  }

  .actions {
    flex-direction: column;
  }
}

.casino-logo {
  width: 75px;
  height: auto;
  aspect-ratio: 75 / 50;
  display: block;
}

.btn.small {
  background: #8d3c65;
  color: #fff;
  padding: 12px 17px;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 10px;
}

.casino-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* box-shadow: 0 4px 12px rgba(0,0,0,0.08); */
}

.casino-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.casino-logo,
.btn {
  position: relative;
  z-index: 2;
}

.btn.small:hover {
  background-color: white;
  color: rgb(2, 2, 2);
}

.footer {
  background-color: #ededed;
  color: #000000;
  padding: 14px 50px;
  font-family: revert;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #00b2ff;
  text-decoration: none;
  font-weight: 500;
}

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

.telegram-icon {
  width: 20px;
  height: 20px;
}

.footer-copy {
  font-size: 14px;
  margin-top: 10px;
  width: 100%;
  text-align: center;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  .footer-copy {
    margin-top: 0;
  }
}

.casino-quotes {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 16px;
  padding: 16px;
  background: #ededed;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin: 20px auto;
  max-width: 1000px;
}

.quote {
  flex: 1;
  text-align: center;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #a29494;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  line-height: 1.4;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* .quote:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
} */

@media (max-width: 768px) {
  .casino-quotes {
    flex-direction: column;
  }
}

.footer {
  background-color: #ededed;
  color: #000000;
  padding: 30px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-contact,
.footer-links {
  flex: 1 1 200px;
}

.footer h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #000000;
}

.footer a {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  text-decoration: none;
  color: #000000;
  gap: 8px;
  transition: color 0.3s;
}

.footer a:hover {
  color: #005bee;
}

.footer-icon {
  width: 75px;
  height: auto;
  aspect-ratio: 75 / 50;
  display: inline-block;
}

.footer-copy {
  flex-basis: 100%;
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #020202;
}
.footer-icon-a {
  width: 100px;
  height: 30px;
  aspect-ratio: 100 / 30;
  display: inline-block;
}

.footer-icon-b {
  width: 50px;
  height: 50px;
  display: inline-block;
}

.image-links {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}

.linkable-image {
  width: 20rem;
  height: auto;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.linkable-image:hover {
  transform: scale(1.1);
}
