    body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: 'Alba';
  src: url('ALBA____.TTF') format('truetype');
}

@font-face {
  font-family: 'Albas';
  src: url('ALBAS___.TTF') format('truetype');
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  transition: all 0.3s ease;
  margin-top: 5%;
}

.content {
  background: rgba(255, 255, 255, 0.342);
  backdrop-filter: saturate(180%) blur(30px);
  -webkit-backdrop-filter: saturate(180%) blur(30px);
  border-radius: 30px;
  box-shadow:
    0 8px 32px 0 rgba(31, 38, 135, 0.37),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  padding: 28px 28px 50px 28px;
  margin-top: 32px;
  color: #000000;
}

.logo {
  font-family: Alba, sans-serif;
  font-size: 30px;
}

.credits-heading {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 36px;
  margin-bottom: 15px;
}

.footer {
  color: #fff;
  text-align: center;
  padding: 8px 0; 
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 35px 35px 0 0;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: saturate(180%) blur(30px);
  -webkit-backdrop-filter: saturate(180%) blur(30px);

  box-shadow:
    0 8px 32px 0 rgba(31, 38, 135, 0.37),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);

  transition: background-color 0.3s ease;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.cookie-card {
  max-width: 320px;
  padding: 1rem;
  
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: saturate(180%) blur(30px);
  -webkit-backdrop-filter: saturate(180%) blur(30px);
  
  border-radius: 15px;
  
  box-shadow:
    0 8px 32px 0 rgba(31, 38, 135, 0.37),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  
  display: none; 
  
  position: fixed;
  bottom: 20px;
  right: 20px;
  
  z-index: 9999;
  
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

  
  .title {
    font-weight: 600;
    color: rgb(31 41 55);
  }
  
  .description {
    margin-top: 1rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: rgb(75 85 99);
  }
  
  .description a {
    color: rgb(59 130 246);
  }
  
  .description a:hover {
    text-decoration: underline;
  }
  
  .actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
  }
  
  .pref {
    font-size: 0.75rem;
    line-height: 1rem;
    color: rgb(31 41 55);
    text-decoration: underline;
    border: none;
    background-color: transparent;
  }
  
  .pref:hover {
    color: rgb(156 163 175);
  }
  
  .accept {
    font-size: 0.75rem;
    line-height: 1rem;
    background-color: rgb(17 24 39);
    font-weight: 500;
    border-radius: 0.5rem;
    color: #fff;
    padding: 0.625rem 1rem;
    border: none;
  }
  
  .accept:hover {
    background-color: rgb(55 65 81);
  }

#background-slideshow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1s ease-in-out;
}

@media (max-width: 768px) {
  .container {
    width: 90%;
    margin: 0 auto;
    padding: 10px;
  }

  .content {
    padding: 15px;
  }

  .footer {
    font-size: 14px;
    padding: 10px 0;
  }

  .cookie-card {
    max-width: 280px; /* Smaller card on mobile */
    padding: 0.75rem;
  }

  .credits-heading {
    font-size: 24px; /* Smaller font on mobile */
  }

  .logo {
    font-size: 25px;
  }
}
