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

body {
  font-family: 'Quattrocento', serif;
  background:
    repeating-linear-gradient(0deg,
      transparent 0px,
      transparent calc(100% / 4 - 1px),
      rgba(100, 70, 150, 0.25) calc(100% / 4 - 1px),
      rgba(100, 70, 150, 0.25) calc(100% / 4)
    ),
    repeating-linear-gradient(90deg,
      transparent 0px,
      transparent calc(100% / 3 - 1px),
      rgba(100, 70, 150, 0.25) calc(100% / 3 - 1px),
      rgba(100, 70, 150, 0.25) calc(100% / 3)
    ),
    linear-gradient(180deg,
      rgba(60, 45, 85, 0.4) 0%,
      rgba(35, 25, 55, 0.7) 20%,
      rgba(20, 15, 35, 0.9) 40%,
      rgba(15, 10, 25, 1) 50%,
      rgba(20, 15, 35, 0.9) 60%,
      rgba(35, 25, 55, 0.7) 80%,
      rgba(60, 45, 85, 0.4) 100%
    ),
    radial-gradient(ellipse at 50% 50%, #2a1d42 0%, #1a1230 30%, #0d0820 60%, #050210 100%);
  background-attachment: fixed;
  min-height: 100vh;
  color: #fff;
  position: relative;
}

h1, h2, h3, .nav a {
  font-family: 'Oswald', sans-serif;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background-color: rgba(30, 20, 45, 0.95);
  padding: 20px 0;
  border-bottom: 1px solid rgba(100, 70, 150, 0.3);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

.nav {
  display: flex;
  gap: 40px;
}

.nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #fff;
}

.burger-menu {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.hero {
  text-align: center;
  padding: 80px 20px;
  position: relative;
}

.star {
  position: absolute;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff69b4, #ff1493);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.star-left {
  top: 120px;
  left: 15%;
  transform: rotate(-15deg);
}

.star-right {
  top: 80px;
  right: 15%;
  transform: rotate(15deg);
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.hero-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ff69b4, transparent);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  margin-top: 30px;
}

.cards-grid-container {
  padding: 40px 20px 80px;
  min-height: 60vh;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.casino-card {
  width: 100%;
  max-width: 100%;
}

.casino-card {
  background: linear-gradient(135deg, rgba(35, 25, 55, 0.85) 0%, rgba(20, 15, 35, 0.9) 100%);
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border: 1px solid rgba(100, 70, 150, 0.25);
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.casino-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
}

.badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.badge.hot {
  background: linear-gradient(135deg, #ff69b4, #ff1493);
}

.badge.new {
  background: linear-gradient(135deg, #00ff88, #00cc6f);
}

.casino-logo {
  width: 250px;
  height: 100px;
  background: #000;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.casino-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.casino-logo-text {
  font-family: 'Brush Script MT', cursive;
  font-size: 40px;
  color: #d4af37;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.casino-logo-subtext {
  position: absolute;
  bottom: 8px;
  font-size: 9px;
  color: #d4af37;
  letter-spacing: 2px;
}

.offers {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 15px;
}

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

.offer-value {
  font-size: 40px;
  font-weight: 700;
  color: #ff69b4;
}

.offer-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 40px;
}

.welcome-bonus {
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.welcome-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.bonus-amount {
  color: #ff69b4;
  font-size: 22px;
  font-weight: 700;
}

.rating {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  font-size: 15px;
}

.rating-item {
  color: rgba(255, 255, 255, 0.6);
}

.rating-value {
  color: #fff;
  font-weight: 700;
}

.cta-button {
  width: 100%;
  max-width: 250px;
  padding: 18px 30px;
  background: linear-gradient(135deg, #ff69b4, #ff1493);
  border: none;
  border-radius: 30px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.cta-button:hover {
  background: linear-gradient(135deg, #ff1493, #ff69b4);
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(255, 105, 180, 0.5);
}

.footer {
  background-color: rgba(15, 10, 25, 0.95);
  padding: 40px 20px 20px;
  border-top: 1px solid rgba(100, 70, 150, 0.3);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 30px;
}

.footer-column {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.footer-column p {
  margin-bottom: 10px;
}

.disclaimer {
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.disclaimer-text {
  font-size: 11px;
  line-height: 1.5;
}

.footer-logos {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-logos img {
  height: 30px;
  opacity: 0.8;
}

/* Custom 18+ badge */
.age-badge-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  border-radius: 50%;
  color: #1a1612;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.age-badge-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 215, 0, 0.6);
}

/* Partner badges */
.partner-badge {
  display: inline-block;
  opacity: 0.85;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.partner-badge:hover {
  transform: translateY(-3px);
  opacity: 1;
}

.partner-logo {
  height: 45px;
  width: auto;
  max-width: 120px;
  filter: brightness(0.9);
  transition: filter 0.3s ease;
}

.partner-badge:hover .partner-logo {
  filter: brightness(1.1);
}

/* Footer Responsible Gaming Section */
.footer-responsive {
  background: linear-gradient(135deg, rgba(20, 15, 35, 0.9) 0%, rgba(30, 20, 45, 0.9) 100%);
  padding: 25px;
  border-radius: 12px;
  max-width: 1400px;
  margin: 0 auto 30px;
  border: 2px solid rgba(255, 105, 180, 0.3);
}

.footer-responsive h4 {
  color: #ff69b4;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
  letter-spacing: 1px;
}

.footer-responsive p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  line-height: 1.4;
  margin-bottom: 20px;
  text-align: center;
}

.support-aware {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  justify-content: center;
}

.support-icon {
  height: 50px;
  width: 50px;
  background: linear-gradient(135deg, #F58220 0%, #FF9500 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(245, 130, 32, 0.4);
  flex-shrink: 0;
}

.support-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.support-title {
  color: #ff69b4;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.support-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 10px;
}

.support-btn {
  display: block;
  background: linear-gradient(135deg, #F58220 0%, #FF9500 100%);
  color: #fff;
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(245, 130, 32, 0.5);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 1200px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(15, 10, 25, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    font-size: 18px;
    padding: 15px 0;
  }

  .hero-title {
    font-size: 36px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .casino-card {
    padding: 30px 20px;
    width: 100%;
  }
  
  .footer-responsive {
    padding: 20px;
    
    .support-icon {
      height: 45px;
      width: 45px;
      font-size: 12px;
    }
    
    .support-title {
      font-size: 12px;
    }
    
    .support-subtitle {
      font-size: 9px;
    }
    
    .support-btn {
      font-size: 11px;
      padding: 10px 16px;
    }
  }
  
  .age-badge-custom {
    height: 40px;
    width: 40px;
    font-size: 14px;
  }
  
  .partner-logo {
    height: 35px;
    max-width: 90px;
  }

  .casino-logo {
    width: 200px;
    height: 80px;
  }

  .casino-logo-text {
    font-size: 32px;
  }

  .offer-value {
    font-size: 32px;
  }

  .bonus-amount {
    font-size: 18px;
  }

  .cta-button {
    font-size: 16px;
    padding: 14px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}

/* Privacy Page Styles */
.privacy-container {
  padding: 60px 20px 80px;
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content {
  background: linear-gradient(135deg, rgba(35, 25, 55, 0.85) 0%, rgba(20, 15, 35, 0.9) 100%);
  padding: 50px 40px;
  border-radius: 15px;
  border: 1px solid rgba(100, 70, 150, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.privacy-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-align: center;
}

.privacy-intro {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  text-align: center;
  margin-bottom: 40px;
}

.privacy-section {
  margin-bottom: 40px;
}

.privacy-section h2 {
  font-size: 24px;
  font-weight: 600;
  color: #ff69b4;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(255, 105, 180, 0.3);
  padding-bottom: 8px;
}

.privacy-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.privacy-section ul {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.6;
  margin-left: 20px;
  margin-bottom: 15px;
}

.privacy-section li {
  margin-bottom: 8px;
}

.contact-info {
  background: rgba(255, 105, 180, 0.1);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 105, 180, 0.2);
  margin-top: 15px;
}

.contact-info p {
  margin-bottom: 10px;
  color: #fff;
}

.contact-info strong {
  color: #ff69b4;
}

@media (max-width: 768px) {
  .privacy-container {
    padding: 40px 15px 60px;
  }
  
  .privacy-content {
    padding: 30px 20px;
  }
  
  .privacy-title {
    font-size: 36px;
  }
  
  .privacy-section h2 {
    font-size: 20px;
  }
  
  .privacy-section p,
  .privacy-section ul {
    font-size: 14px;
  }
}

.data-category {
  background: rgba(255, 105, 180, 0.1);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 105, 180, 0.2);
  margin-bottom: 20px;
}

.data-category h3 {
  color: #ff69b4;
  margin-bottom: 10px;
  font-size: 18px;
  font-family: 'Oswald', sans-serif;
}

/* Age Verification Modal */
.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.age-modal.show {
  opacity: 1;
  visibility: visible;
}

.age-modal-content {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 90%;
  position: relative;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.age-modal.show .age-modal-content {
  transform: scale(1);
}

.age-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
  transition: color 0.3s ease;
  display: none; /* Hide the close button */
}

.age-modal-close:hover {
  color: #ff69b4;
}

.age-modal-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin: 20px 0 30px 0;
  font-family: 'Oswald', sans-serif;
}

.age-modal-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 25px;
}

.age-btn {
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid;
  min-width: 80px;
}

.age-btn-no {
  background: white;
  color: #ff69b4;
  border-color: #ff69b4;
}

.age-btn-no:hover {
  background: #ff69b4;
  color: white;
}

.age-btn-yes {
  background: #ff69b4;
  color: white;
  border-color: #ff69b4;
}

.age-btn-yes:hover {
  background: #ff1493;
  border-color: #ff1493;
}

.age-modal-disclaimer {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 480px) {
  .age-modal-content {
    padding: 30px 20px;
    margin: 20px;
  }
  
  .age-modal-title {
    font-size: 20px;
  }
  
  .age-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .age-modal-buttons {
    gap: 10px;
  }
}

/* Responsible Gaming Page Styles */
.responsible-gaming-container {
  padding: 60px 20px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.responsible-gaming-content {
  background: linear-gradient(135deg, rgba(35, 25, 55, 0.85) 0%, rgba(20, 15, 35, 0.9) 100%);
  padding: 50px 40px;
  border-radius: 15px;
  border: 1px solid rgba(100, 70, 150, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.responsible-gaming-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-align: center;
  font-family: 'Oswald', sans-serif;
}

.responsible-gaming-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
}

.responsible-section {
  margin-bottom: 40px;
}

.responsible-section h2 {
  font-size: 28px;
  font-weight: 600;
  color: #ff69b4;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(255, 105, 180, 0.3);
  padding-bottom: 10px;
  font-family: 'Oswald', sans-serif;
}

.responsible-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 20px 0 10px 0;
  font-family: 'Oswald', sans-serif;
}

.responsible-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.responsible-section ul {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.6;
  margin-left: 20px;
  margin-bottom: 15px;
}

.responsible-section li {
  margin-bottom: 8px;
}

.responsible-section a {
  color: #ff69b4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.responsible-section a:hover {
  color: #ff1493;
  text-decoration: underline;
}

.control-tool {
  background: rgba(255, 105, 180, 0.1);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 105, 180, 0.2);
  margin-bottom: 20px;
}

.help-resource {
  background: rgba(255, 105, 180, 0.1);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 105, 180, 0.2);
  margin-bottom: 20px;
}

.contact-info {
  background: rgba(255, 105, 180, 0.1);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 105, 180, 0.2);
  margin-top: 15px;
}

.contact-info h3 {
  color: #ff69b4;
  margin-bottom: 10px;
}

.contact-info p {
  margin-bottom: 8px;
  color: #fff;
}

.contact-info strong {
  color: #ff69b4;
}

@media (max-width: 768px) {
  .responsible-gaming-container {
    padding: 40px 15px 60px;
  }
  
  .responsible-gaming-content {
    padding: 30px 20px;
  }
  
  .responsible-gaming-title {
    font-size: 36px;
  }
  
  .responsible-section h2 {
    font-size: 24px;
  }
  
  .responsible-section h3 {
    font-size: 18px;
  }
  
  .responsible-section p,
  .responsible-section ul {
    font-size: 14px;
  }
}

/* Cookie Policy Page Styles */
.cookie-policy-container {
  padding: 60px 20px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.cookie-policy-content {
  background: linear-gradient(135deg, rgba(35, 25, 55, 0.85) 0%, rgba(20, 15, 35, 0.9) 100%);
  padding: 50px 40px;
  border-radius: 15px;
  border: 1px solid rgba(100, 70, 150, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cookie-policy-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-align: center;
  font-family: 'Oswald', sans-serif;
}

.cookie-policy-intro {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  text-align: center;
  margin-bottom: 40px;
}

.cookie-section {
  margin-bottom: 40px;
}

.cookie-section h2 {
  font-size: 28px;
  font-weight: 600;
  color: #ff69b4;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(255, 105, 180, 0.3);
  padding-bottom: 10px;
  font-family: 'Oswald', sans-serif;
}

.cookie-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 20px 0 10px 0;
  font-family: 'Oswald', sans-serif;
}

.cookie-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.cookie-section ul {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.6;
  margin-left: 20px;
  margin-bottom: 15px;
}

.cookie-section li {
  margin-bottom: 8px;
}

.cookie-section strong {
  color: #ff69b4;
  font-weight: 600;
}

.cookie-type {
  background: rgba(255, 105, 180, 0.1);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 105, 180, 0.2);
  margin-bottom: 20px;
}

.cookie-management {
  background: rgba(255, 105, 180, 0.1);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 105, 180, 0.2);
  margin-bottom: 20px;
}

.retention-table {
  overflow-x: auto;
  margin: 20px 0;
}

.retention-table table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 105, 180, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.retention-table th,
.retention-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 105, 180, 0.2);
}

.retention-table th {
  background: rgba(255, 105, 180, 0.2);
  color: #fff;
  font-weight: 600;
  font-family: 'Oswald', sans-serif;
}

.retention-table td {
  color: rgba(255, 255, 255, 0.8);
}

.retention-table tr:last-child td {
  border-bottom: none;
}

.contact-info {
  background: rgba(255, 105, 180, 0.1);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 105, 180, 0.2);
  margin-top: 15px;
}

.contact-info p {
  margin-bottom: 8px;
  color: #fff;
}

.contact-info strong {
  color: #ff69b4;
}

@media (max-width: 768px) {
  .cookie-policy-container {
    padding: 40px 15px 60px;
  }
  
  .cookie-policy-content {
    padding: 30px 20px;
  }
  
  .cookie-policy-title {
    font-size: 36px;
  }
  
  .cookie-section h2 {
    font-size: 24px;
  }
  
  .cookie-section h3 {
    font-size: 18px;
  }
  
  .cookie-section p,
  .cookie-section ul {
    font-size: 14px;
  }
  
  .retention-table {
    font-size: 14px;
  }
  
  .retention-table th,
  .retention-table td {
    padding: 10px;
  }
}

@font-face {
  font-family: 'Oswald';
  src: url('./fonts/Oswald/Oswald-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-display: swap;
}

/* Quattrocento Regular */
@font-face {
  font-family: 'Quattrocento';
  src: url('./fonts/Quattrocento/Quattrocento-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Quattrocento Bold */
@font-face {
  font-family: 'Quattrocento';
  src: url('./fonts/Quattrocento/Quattrocento-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}