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

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", Arial, sans-serif;
  color: #f0f0f0;
  background-color: #0d0d0d;
  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, #1b0f0f, #3a1414);
  padding: 16px 0;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.7);
  border-bottom: 2px solid #A8321C;
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

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

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

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

.header__logo-img {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  object-fit: cover;
  border: 2px solid #A8321C;
  box-shadow: 0 0 12px rgba(168, 50, 28, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header__logo-img:hover {
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 0 15px rgba(255, 87, 51, 0.6);
}

.header__title {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #A8321C;
  letter-spacing: 1.2px;
  background: linear-gradient(90deg, #FF5733, #FFC300);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: text-shadow 0.3s ease, transform 0.3s ease;
}

.header__title:hover {
  text-shadow: 0 0 10px #FF5733, 0 0 20px #FFC300;
  transform: scale(1.05);
}

.header.scrolled {
  background: linear-gradient(90deg, #0a0a0a, #2a0f0f);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.85);
  border-color: #FF5733;
}

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

  .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: 10px;
  }

  .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 #FF5733;
  }

  .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: #FFD700;
  padding: 0 30px;
  background: linear-gradient(135deg, #1C0B1C, #3A0F3A, #A8321C);
  overflow: hidden;
  border-bottom: 1px solid #FF5733;
  transition: transform 0.5s ease, background 0.5s ease;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.5), 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;
  background: linear-gradient(90deg, #FF5733, #FFC300);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 0 6px 12px rgba(0,0,0,0.5);
  word-break: break-word;
  transition: all 0.4s ease;
}

.hero__title:hover {
  text-shadow: 0 0 15px #FF5733, 0 0 30px #FFC300;
  transform: scale(1.05);
}

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

.hero__subtitle:hover {
  color: #FFD700;
}

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

.btn {
  display: inline-block;
  max-width: 100%;
  padding: 14px 36px;
  border-radius: 14px;
  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, #A8321C, #FF5733, #FFC300);
  color: #fff;
  box-shadow: 0 4px 20px rgba(168,50,28,0.5), 0 4px 20px rgba(255,87,51,0.5);
}

.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(168,50,28,0.7), 0 6px 25px rgba(255,87,51,0.7), 0 6px 25px rgba(255,195,0,0.5);
}

.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, #150606, #2B0C0C, #3D1414);
  color: #f0e6e6;
}

.section__title {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: #FFA14C;
  text-shadow: 0 0 15px rgba(168, 50, 28, 0.6), 0 0 25px rgba(255, 161, 76, 0.4);
  letter-spacing: 1.2px;
}

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

.bonus-card {
  background: linear-gradient(145deg, #1C0B0B, #3A1616);
  border-radius: 22px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  transition: all 0.45s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.bonus-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(168,50,28,0.15), transparent 60%);
  z-index: 0;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.bonus-card:hover::before {
  opacity: 1;
}

.bonus-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 45px rgba(168,50,28,0.5), 0 10px 20px rgba(255,161,76,0.4);
  background: linear-gradient(150deg, #2A0E0E, #501E1E);
}

.bonus-card__logo {
  max-width: 130px;
  margin-bottom: -15px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  position: relative;
  z-index: 1;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.bonus-card__logo:hover {
  transform: scale(1.08) rotate(1deg);
  box-shadow: 0 0 18px rgba(255,161,76,0.6);
}

.bonus-card__rating {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #FFA14C;
  margin-top: 20px;
  text-shadow: 0 0 10px rgba(255,161,76,0.5);
}

.bonus-card__features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  color: #d9d9d9;
  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: #A8321C;
  font-size: 1.1rem;
}

.btn--explore {
  display: inline-block;
  padding: 14px 38px;
  background: linear-gradient(135deg, #A8321C, #FF5733, #FFC300);
  color: #fff;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.35s ease;
  box-shadow: 0 6px 25px rgba(168,50,28,0.5), 0 6px 25px rgba(255,161,76,0.5);
  position: relative;
  overflow: hidden;
}

.btn--explore:hover {
  transform: translateY(-5px) scale(1.06);
  box-shadow: 0 10px 35px rgba(255,87,51,0.6), 0 10px 35px rgba(255,195,0,0.5);
  background: linear-gradient(135deg, #FF5733, #FFA14C, #FFD54F);
}

@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: 110px 20px;
  display: flex;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #060a12, #111829, #1d2235);
  position: relative;
  overflow: hidden;
}

.casino-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(168,50,28,0.25), transparent 60%),
              radial-gradient(circle at 70% 80%, rgba(255,120,40,0.15), transparent 60%);
  z-index: 0;
}

.casino-cta__wrapper {
  position: relative;
  z-index: 1;
  background: linear-gradient(145deg, #131b2e, #1b243a);
  padding: 70px 55px;
  border-radius: 30px;
  max-width: 760px;
  width: 100%;
  color: #e8e8e8;
  box-shadow: 0 0 35px rgba(168,50,28,0.4), 0 0 15px rgba(255,255,255,0.05);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  border: 1px solid rgba(168,50,28,0.3);
}

.casino-cta__wrapper:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 0 45px rgba(168,50,28,0.6), 0 0 25px rgba(255,255,255,0.15);
}

.casino-cta__title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: #A8321C;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-shadow: 0 0 10px rgba(168,50,28,0.6), 0 0 25px rgba(255,255,255,0.1);
}

.casino-cta__text {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: #d0d6ea;
  line-height: 1.7;
  max-width: 90%;
  margin-inline: auto;
}

.btn--cta {
  display: inline-block;
  padding: 16px 48px;
  background: linear-gradient(135deg, #A8321C, #ff8243, #ffd479);
  color: #fff;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  box-shadow: 0 8px 25px rgba(168,50,28,0.6);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn--cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn--cta:hover::before {
  transform: translateX(100%);
}

.btn--cta:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 0 35px rgba(168,50,28,0.8), 0 0 20px rgba(255,180,100,0.6);
  background: linear-gradient(135deg, #ff8243, #A8321C);
}

@media (max-width: 992px) {
  .casino-cta__wrapper {
    padding: 50px 35px;
  }
  .casino-cta__title {
    font-size: 2.1rem;
  }
  .casino-cta__text {
    font-size: 1.1rem;
  }
}

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

.trusted-logos {
  padding: 110px 20px;
  background: linear-gradient(135deg, #0b0b0b, #1b0010 40%, #2a0034 90%);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.trusted-logos::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle at center, rgba(168, 50, 28, 0.15), transparent 70%);
  animation: pulse 5s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

.trusted-logos__title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 70px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  text-shadow: 0 0 20px rgba(168, 50, 28, 0.6), 0 0 8px rgba(255, 255, 255, 0.3);
  letter-spacing: 1.5px;
}

.trusted-logos__grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  overflow-x: auto;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  scrollbar-width: thin;
  scrollbar-color: #A8321C rgba(0, 0, 0, 0.2);
}

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

.trusted-logos__grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
}

.trusted-logos__grid::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #A8321C, #611515);
  border-radius: 5px;
}

.trusted-logos__item {
  flex: 0 0 auto;
  max-width: 120px;
  filter: brightness(0.8) grayscale(60%);
  transition: all 0.4s ease;
  border-radius: 14px;
  padding: 10px;
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: 0 3px 10px rgba(0,0,0,0.3), 0 0 10px rgba(168, 50, 28, 0);
}

.trusted-logos__item:hover {
  filter: brightness(1) grayscale(0);
  transform: scale(1.15) rotate(1deg);
  box-shadow: 0 0 20px rgba(168, 50, 28, 0.6), 0 0 30px rgba(255, 255, 255, 0.2);
  background: linear-gradient(145deg, rgba(168, 50, 28, 0.15), rgba(255, 255, 255, 0.05));
}

@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(160deg, #0a0a0a, #20090a, #2b0e16);
  color: #dcdcdc;
  padding: 90px 120px;
  font-size: 15px;
  line-height: 1.8;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(168, 50, 28, 0.25), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 40px;
  position: relative;
  z-index: 1;
}

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

.footer-logo:hover {
  transform: scale(1.05);
  text-shadow: 0 0 20px rgba(168, 50, 28, 0.6);
}

.footer-logo-img {
  width: 55px;
  height: 55px;
  margin-right: 15px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(168, 50, 28, 0.4);
  background: linear-gradient(145deg, #441313, #2b0e0e);
}

.footer-nav a {
  margin-left: 35px;
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.footer-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #A8321C, #ff6a4a);
  transition: width 0.3s ease;
}

.footer-nav a:hover {
  color: #ff6a4a;
  transform: translateY(-2px);
}

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

.footer-description p {
  margin: 0 auto 50px auto;
  max-width: 850px;
  color: #bfbfbf;
  font-size: 15px;
  position: relative;
  z-index: 1;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.footer-18plus {
  background: linear-gradient(135deg, #A8321C, #ff6a4a);
  color: #fff;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 30px;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 0 25px rgba(168, 50, 28, 0.4);
  transition: all 0.3s ease;
}

.footer-18plus:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 0 40px rgba(255, 106, 74, 0.7);
}

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

@media (max-width: 1024px) {
  .site-footer {
    padding: 70px 60px;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-nav a {
    margin: 0 15px;
  }

  .footer-description p {
    max-width: 100%;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 60px 30px;
  }

  .footer-logo {
    font-size: 22px;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo-img {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    margin-right: 0;
  }

  .footer-nav a {
    font-size: 14px;
    margin: 5px 10px;
  }

  .footer-description p {
    font-size: 14px;
  }

  .footer-18plus {
    font-size: 14px;
    padding: 12px 25px;
  }

  .footer-rights {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 45px 20px;
  }

  .footer-logo {
    font-size: 20px;
  }
}
.pst-cookie {
  max-width: 880px;
  margin: 90px auto;
  padding: 60px 30px;
  background: linear-gradient(160deg, #1c1800 0%, #441313 100%);
  color: #F5F5F5;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  letter-spacing: 0.3px;
}

.pst-cookie__title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
  text-align: center;
  color: #FF8F00;
  text-shadow: 0 0 14px rgba(255, 143, 0, 0.4);
  margin-bottom: 45px;
  letter-spacing: 1.2px;
}

.pst-cookie__intro {
  font-size: 15.5px;
  margin-bottom: 35px;
  text-align: justify;
  color: #f1e7d6;
}

.pst-cookie__section h2 {
  font-size: 1.55rem;
  color: #FFA000;
  margin-top: 45px;
  margin-bottom: 15px;
  border-left: 4px solid #5c5a02;
  padding-left: 10px;
  text-shadow: 0 0 6px rgba(255, 160, 0, 0.4);
}

.pst-cookie__section p {
  margin-bottom: 22px;
  font-size: 15px;
  color: #f0ece4;
}

.pst-cookie__section ul {
  list-style: none;
  margin: 15px 0 25px 0;
  padding-left: 0;
}

.pst-cookie__section li {
  margin-bottom: 14px;
  position: relative;
  padding-left: 24px;
}

.pst-cookie__section li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: #FF8F00;
  font-size: 0.85rem;
  top: 2px;
  text-shadow: 0 0 5px rgba(255, 143, 0, 0.4);
}

.pst-cookie a {
  color: #FF8F00;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.pst-cookie a:hover {
  color: #F5F5F5;
  text-shadow: 0 0 8px rgba(255, 143, 0, 0.7);
}

@media (max-width: 1024px) {
  .pst-cookie {
    padding: 50px 25px;
  }
  .pst-cookie__title {
    font-size: 2.3rem;
  }
  .pst-cookie__section h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .pst-cookie {
    padding: 40px 20px;
  }
  .pst-cookie__title {
    font-size: 2rem;
  }
  .pst-cookie__section h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .pst-cookie {
    padding: 35px 15px;
  }
  .pst-cookie__title {
    font-size: 1.8rem;
  }
  .pst-cookie__section h2 {
    font-size: 1.2rem;
  }
  .pst-cookie p, 
  .pst-cookie li {
    font-size: 14px;
  }
}


#age-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  font-family: 'Inter', sans-serif;
  backdrop-filter: blur(6px);
}

#age-modal .modal-content {
  background: linear-gradient(145deg, #1b0000, #2b1a0a, #000);
  border: 1px solid rgba(168, 50, 28, 0.4);
  padding: 50px 40px;
  border-radius: 25px;
  text-align: center;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 0 45px rgba(168, 50, 28, 0.5), inset 0 0 25px rgba(255, 143, 0, 0.1);
  animation: modalFadeIn 0.6s ease-out;
}

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

#age-modal h2 {
  color: #FFA000;
  margin-bottom: 18px;
  font-size: 2.1rem;
  text-shadow: 0 0 15px rgba(255, 143, 0, 0.5);
  letter-spacing: 1px;
}

#age-modal p {
  margin-bottom: 35px;
  font-size: 1rem;
  color: #F5F5F5;
  line-height: 1.6;
}

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

#age-modal button {
  padding: 14px 34px;
  border: none;
  border-radius: 18px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 700;
  min-width: 150px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#confirm-age {
  background: linear-gradient(135deg, #FFA000, #A8321C);
  color: #fff;
  box-shadow: 0 6px 18px rgba(255,160,0,0.4), 0 6px 18px rgba(168,50,28,0.4);
}

#confirm-age:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 12px 28px rgba(255,160,0,0.6), 0 12px 28px rgba(168,50,28,0.6);
}

#deny-age {
  background: linear-gradient(135deg, #2B2B2B, #1c1800);
  color: #fff;
  border: 1px solid rgba(255,160,0,0.2);
  box-shadow: 0 6px 18px rgba(0,0,0,0.6);
}

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

#cookies-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(140deg, #1c1800, #441313, #2B2B2B);
  padding: 22px 0;
  box-shadow: 0 -4px 25px rgba(0,0,0,0.7);
  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: 14px;
  color: #F5F5F5;
  font-family: 'Inter', sans-serif;
}

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

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

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

#cookies-ok {
  background: linear-gradient(135deg, #A8321C, #FF8F00);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255,143,0,0.4), 0 4px 12px rgba(168,50,28,0.4);
}

#cookies-ok:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 25px rgba(255,143,0,0.6), 0 10px 25px rgba(168,50,28,0.6);
}

#cookies-close {
  background: linear-gradient(135deg, #2B2B2B, #000);
  color: #fff;
  border: 1px solid rgba(255,160,0,0.15);
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

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

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