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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: #eee;
  background-color: #121212;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(90%, 1200px);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #0b1f2f, #112c3f);
  padding: 16px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  border-bottom: 2px solid #F4C223;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  max-width: 90%;
  margin: 0 auto;
  padding: 0 10px;
  flex-wrap: wrap;
}

.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #F4C223;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header__logo:hover {
  transform: scale(1.1);
}

.header__logo-img {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid #F4C223;
  box-shadow: 0 0 10px rgba(244, 194, 35, 0.4);
}

.header__title {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #F4C223;
  letter-spacing: 1px;
  transition: text-shadow 0.3s ease, color 0.3s ease;
}

.header__title:hover {
  color: #15BEFD;
  text-shadow: 0 0 8px #15BEFD, 0 0 15px #F4C223;
}

.header.scrolled {
  background: linear-gradient(90deg, #081624, #0b1f2f);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

@media (max-width: 1024px) {
  .header__container {
    justify-content: center;
    gap: 12px;
  }

  .header__logo-img {
    width: 50px;
    height: 50px;
  }

  .header__title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 12px 0;
  }

  .header__container {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .header__logo-img {
    width: 45px;
    height: 45px;
  }

  .header__title {
    font-size: 1.4rem;
    text-align: center;
    word-break: break-word;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 10px 0;
    border-bottom: 1px solid #F4C223;
  }

  .header__container {
    padding: 0 15px;
  }

  .header__logo-img {
    width: 40px;
    height: 40px;
  }

  .header__title {
    font-size: 1.2rem;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .header__logo-img {
    width: 35px;
    height: 35px;
  }

  .header__title {
    font-size: 1.1rem;
  }
}
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: #F4C223;
  padding: 0 30px;
  background: url("../images/img.png") center center / cover no-repeat;
  overflow: hidden;
  border-bottom: 0.5px solid #15BEFD;
  transition: transform 0.5s ease;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
  z-index: 1;
  mix-blend-mode: multiply;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  width: 100%;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-sizing: border-box;
}

.hero__title {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #F4C223;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 0 6px 12px rgba(0,0,0,0.5);
  word-break: break-word;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.hero__title:hover {
  color: #15BEFD;
  text-shadow: 0 8px 18px rgba(0,0,0,0.6), 0 0 15px #F4C223;
}

.hero__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  color: #ddd;
  line-height: 1.6;
  max-width: 100%;
  word-break: break-word;
  transition: color 0.3s ease;
}

.hero__subtitle:hover {
  color: #F4C223;
}

.hero:hover {
  transform: scale(1.02);
}

.btn {
  display: inline-block;
  max-width: 100%;
  padding: 14px 36px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.35s cubic-bezier(0.25,1,0.5,1);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.btn--primary {
  background: linear-gradient(135deg, #F4C223, #15BEFD);
  color: #121212;
  box-shadow: 0 4px 20px rgba(244,194,35,0.4), 0 4px 20px rgba(21,190,253,0.4);
}

.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 25px rgba(244,194,35,0.7), 0 6px 25px rgba(21,190,253,0.7);
  color: #fff;
}

.btn--primary:hover::after {
  opacity: 1;
}

@media (max-width: 1024px) {
  .hero__title {
    font-size: 2.5rem;
  }
  .hero__subtitle {
    font-size: 1.1rem;
  }
  .btn {
    padding: 12px 32px;
  }
}

@media (max-width: 768px) {
  .hero__content {
    padding: 30px 15px;
    gap: 15px;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .btn {
    padding: 10px 28px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero__content {
    padding: 20px 10px;
    gap: 12px;
  }

  .hero__title {
    font-size: 1.6rem;
  }

  .hero__subtitle {
    font-size: 0.9rem;
  }

  .btn {
    padding: 8px 24px;
    font-size: 0.85rem;
  }
}

@media (max-width: 360px) {
  .hero__title {
    font-size: 1.4rem;
  }
  .hero__subtitle {
    font-size: 0.8rem;
  }
  .btn {
    padding: 6px 20px;
    font-size: 0.8rem;
  }
}


.casino-bonuses {
  padding: 90px 20px;
  background: linear-gradient(135deg, #0f121a, #1a1f2b);
  color: #e0e0e0;
}

.section__title {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: #F4C223; /* жовтий акцент */
  text-shadow: 0 2px 10px rgba(21, 190, 253, 0.5);
  letter-spacing: 1px;
}

.bonuses__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 40px;
}

.bonus-card {
  background-color: #1e2230; 
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  transition: transform 0.45s ease, box-shadow 0.45s ease, background 0.45s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.bonus-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(21, 190, 253, 0.6), 0 10px 20px rgba(244, 194, 35, 0.4);
  background: linear-gradient(145deg, #0d1625, #202840);
}

.bonus-card__logo {
  max-width: 140px;
  margin-bottom: -20px;
  display: inline-block;
  border-radius: 12px;
  z-index: 1;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.bonus-card__logo:hover {
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

.bonus-card__rating {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #15BEFD;
  margin-top: 20px;
  text-shadow: 0 0 5px rgba(21, 190, 253, 0.5);
}

.bonus-card__features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  color: #ccc;
  font-size: 1rem;
}

.bonus-card__features li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
  font-weight: 500;
}

.bonus-card__features li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: #F4C223; 
  font-weight: bold;
}

.btn--explore {
  display: inline-block;
  padding: 14px 38px;
  background: linear-gradient(135deg, #15BEFD, #F4C223);
  color: #121212;
  border-radius: 25px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.35s ease;
  box-shadow: 0 5px 20px rgba(21, 190, 253, 0.4), 0 5px 20px rgba(244, 194, 35, 0.4);
  position: relative;
  overflow: hidden;
}

.btn--explore:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(21, 190, 253, 0.6), 0 12px 30px rgba(244, 194, 35, 0.6);
  color: #fff;
}

@media (max-width: 992px) {
  .section__title {
    font-size: 2.3rem;
  }
  .bonus-card {
    padding: 28px 20px;
  }
}

@media (max-width: 768px) {
  .section__title {
    font-size: 2rem;
  }
  .bonus-card__features {
    font-size: 0.95rem;
  }
}

.casino-cta {
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  text-align: center;
  background: #0c1220; 
}

.casino-cta__wrapper {
  background: linear-gradient(135deg, #121b2a, #1f2a3c);
  padding: 60px 45px;
  border-radius: 25px;
  max-width: 720px;
  width: 100%;
  color: #e0e0e0;
  box-shadow: 0 12px 35px rgba(21,190,253,0.3), 0 12px 25px rgba(244,194,35,0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.casino-cta__wrapper:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 45px rgba(21,190,253,0.5), 0 15px 35px rgba(244,194,35,0.4);
}

.casino-cta__title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: #F4C223; 
  text-shadow: 0 0 10px rgba(21,190,253,0.5);
  letter-spacing: 1px;
}

.casino-cta__text {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 35px;
  color: #cde8ff;
  line-height: 1.6;
}

.btn--cta {
  display: inline-block;
  padding: 16px 42px;
  background: linear-gradient(135deg, #15BEFD, #F4C223);
  color: #121212;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 25px rgba(21,190,253,0.4), 0 6px 25px rgba(244,194,35,0.4);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.btn--cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.05);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 30px;
}

.btn--cta:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 12px 35px rgba(21,190,253,0.6), 0 12px 35px rgba(244,194,35,0.6);
  color: #fff;
}

.btn--cta:hover::after {
  opacity: 1;
}

@media (max-width: 992px) {
  .casino-cta__wrapper {
    padding: 45px 30px;
  }
  .casino-cta__title {
    font-size: 2rem;
  }
  .casino-cta__text {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .casino-cta__wrapper {
    padding: 35px 25px;
  }
  .casino-cta__title {
    font-size: 1.8rem;
  }
  .casino-cta__text {
    font-size: 0.95rem;
  }
  .btn--cta {
    padding: 14px 32px;
    font-size: 1rem;
  }
}

.trusted-logos {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0c1220, #1a1f2b);
  text-align: center;
}

.trusted-logos__title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 60px;
  color: #F4C223;
  font-family: 'Poppins', sans-serif;
  text-shadow: 0 0 8px rgba(21, 190, 253, 0.5);
  letter-spacing: 1px;
}

.trusted-logos__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 25px;
    overflow-x: auto;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 45px;
    padding-top: 25px;
    scrollbar-width: thin;
    scrollbar-color: rgba(21, 190, 253, 0.3) rgba(0, 0, 0, 0.1);
}

.trusted-logos__grid::-webkit-scrollbar {
  height: 8px;
}

.trusted-logos__grid::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.1);
  border-radius: 4px;
}

.trusted-logos__grid::-webkit-scrollbar-thumb {
  background: rgba(21,190,253,0.3);
  border-radius: 4px;
}

.trusted-logos__item {
  flex: 0 0 auto; 
  max-width: 120px;
  filter: grayscale(70%);
  transition: filter 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 12px;
  padding: 10px;
  background: rgba(255,255,255,0.05);
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.trusted-logos__item:hover {
  filter: grayscale(0%);
  transform: scale(1.15) rotate(-1deg);
  box-shadow: 0 8px 25px rgba(21, 190, 253, 0.5), 0 8px 25px rgba(244, 194, 35, 0.3);
}


@media (max-width: 992px) {
  .trusted-logos__grid {
    gap: 20px;
  }
  .trusted-logos__item {
    max-width: 100px;
  }
}

@media (max-width: 768px) {
  .trusted-logos__title {
    font-size: 2rem;
  }
  .trusted-logos__grid {
    gap: 15px;
  }
  .trusted-logos__item {
    max-width: 80px;
    padding: 6px;
  }
}

.site-footer {
  background: linear-gradient(150deg, #0c1220, #1a1f2b);
  color: #e0e0e0;
  padding: 80px 120px;
  font-size: 15px;
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 26px;
  color: #F4C223;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-logo-img {
  width: 50px;
  height: 50px;
  margin-right: 15px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(21,190,253,0.3);
}

.footer-nav a {
  margin-left: 30px;
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s, transform 0.3s;
}

.footer-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #15BEFD;
  transition: width 0.3s;
}

.footer-nav a:hover {
  color: #15BEFD;
}

.footer-nav a:hover::after {
  width: 100%;
}

.footer-description p {
  margin: 0 auto 50px auto;
  max-width: 850px;
  color: #ccc;
  font-size: 15px;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-18plus {
  background: linear-gradient(135deg, #15BEFD, #F4C223);
  color: #121212;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 25px;
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
  box-shadow: 0 5px 20px rgba(21,190,253,0.3), 0 5px 20px rgba(244,194,35,0.3);
  transition: all 0.3s ease;
}

.footer-18plus:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(21,190,253,0.5), 0 10px 30px rgba(244,194,35,0.5);
}

.footer-rights {
  font-size: 14px;
  color: #888;
  text-align: center;
}

@media (max-width: 1024px) {
  .site-footer {
    padding: 60px 50px;
  }
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav a {
    margin: 0 15px;
    margin-bottom: 10px;
  }
  .footer-description p {
    max-width: 100%;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 50px 25px;
  }
  .footer-logo {
    font-size: 22px;
    flex-direction: column;
    align-items: center;
  }
  .footer-logo-img {
    width: 45px;
    height: 45px;
    margin-bottom: 10px;
    margin-right: 0;
  }
  .footer-nav a {
    font-size: 14px;
    margin: 5px 10px;
  }
  .footer-description p {
    font-size: 14px;
    margin-bottom: 35px;
  }
  .footer-18plus {
    font-size: 14px;
    padding: 12px 25px;
  }
  .footer-rights {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 40px 15px;
  }
  .footer-logo {
    font-size: 20px;
  }
}

main {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
  background: #0c1220;
  color: #e0e0e0;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  padding: 60px 25px;
}

main h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  margin-bottom: 45px;
  color: #F4C223;
  text-align: center;
  text-shadow: 0 0 10px rgba(21,190,253,0.4);
  letter-spacing: 1px;
}

main h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  margin-top: 40px;
  margin-bottom: 18px;
  color: #15BEFD;
  padding-bottom: 6px;
  border-bottom: 2px solid rgba(244,194,35,0.5);
}

main p {
  margin-bottom: 22px;
  font-size: 15px;
  line-height: 1.7;
}

main ul {
  margin-left: 25px;
  margin-bottom: 22px;
  list-style-type: square;
}

main li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

main li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #F4C223;
}

main a {
  color: #15BEFD;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s, text-shadow 0.3s;
}

main a:hover {
  color: #F4C223;
  text-shadow: 0 0 6px rgba(244,194,35,0.6);
}

@media (max-width: 1024px) {
  main {
    margin: 60px auto;
    padding: 50px 20px;
  }
  main h1 {
    font-size: 2rem;
    margin-bottom: 35px;
  }
  main h2 {
    font-size: 1.45rem;
  }
}

@media (max-width: 768px) {
  main {
    padding: 40px 18px;
  }
  main h1 {
    font-size: 1.9rem;
  }
  main h2 {
    font-size: 1.35rem;
  }
}

@media (max-width: 480px) {
  main {
    padding: 35px 15px;
    margin: 50px auto;
  }
  main h1 {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }
  main h2 {
    font-size: 1.25rem;
  }
  main p, main li {
    font-size: 14px;
  }
}

#age-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  font-family: 'Inter', sans-serif;
}

#age-modal .modal-content {
  background: linear-gradient(145deg, #1a1f2b, #0c1220);
  padding: 45px 35px;
  border-radius: 25px;
  text-align: center;
  max-width: 460px;
  width: 90%;
  box-shadow: 0 0 50px rgba(21,190,253,0.4);
  animation: modalFadeIn 0.5s ease-out;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.9);}
  to { opacity: 1; transform: scale(1);}
}

#age-modal h2 {
  color: #F4C223;
  margin-bottom: 20px;
  font-size: 2rem;
  text-shadow: 0 0 8px rgba(21,190,253,0.4);
}

#age-modal p {
  margin-bottom: 30px;
  font-size: 1rem;
  color: #ccc;
  line-height: 1.5;
}

#age-modal .button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

#age-modal button {
  padding: 14px 32px;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 700;
  min-width: 140px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

#confirm-age {
  background: linear-gradient(135deg, #15BEFD, #F4C223);
  color: #121212;
  box-shadow: 0 6px 18px rgba(21,190,253,0.4), 0 6px 18px rgba(244,194,35,0.4);
}

#confirm-age:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 10px 25px rgba(21,190,253,0.6), 0 10px 25px rgba(244,194,35,0.5);
}

#deny-age {
  background: #444;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}

#deny-age:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 10px 25px rgba(0,0,0,0.7);
}

#cookies-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(145deg, #1a1f2b, #0c1220);
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: slideUp 0.5s ease-out;
}

.cookies-content {
  max-width: 900px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  color: #e0e0e0;
  font-family: 'Inter', sans-serif;
}

.cookies-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.cookies-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

#cookies-ok, #cookies-close {
  padding: 10px 25px;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

#cookies-ok {
  background: linear-gradient(135deg, #15BEFD, #F4C223);
  color: #121212;
  box-shadow: 0 4px 12px rgba(21,190,253,0.4), 0 4px 12px rgba(244,194,35,0.4);
}

#cookies-ok:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(21,190,253,0.6), 0 8px 20px rgba(244,194,35,0.5);
}

/* Close button */
#cookies-close {
  background: #555;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

#cookies-close:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.7);
}

@media (max-width: 600px) {
  #age-modal .modal-content, #cookies-banner {
    padding: 30px 20px;
  }
  #age-modal h2 {
    font-size: 1.6rem;
  }
  #age-modal p, .cookies-content p {
    font-size: 0.95rem;
  }
  #age-modal button, #cookies-ok, #cookies-close {
    min-width: 120px;
    padding: 12px 22px;
    font-size: 0.95rem;
  }
}
