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

body {
  background-image: url("https://statics.page/v1.0.0/screenshots/9c00efd1b11eefe7_2026-03/9c00efd1b11eefe7_mobile.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.cookie-overlay.show {
  display: flex;
}

.cookie-overlay.hidden {
  display: none;
}

.cookie-modal {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 30px;
  max-width: 650px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 0;
}

.cookie-close {
  position: absolute;
  top: 12px;
  right: 12px;
  color: #666;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.25s ease;
}

.cookie-close:hover {
  background-color: #f0f0f0;
  color: #333;
}

.cookie-title {
  font-size: 2.7rem;
  font-weight: 700;
  color: #343434;
  margin-bottom: 15px;
  text-align: center;
}

.cookie-text {
  font-size: 1.35rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}

.cookie-text a {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 700;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-link {
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  min-width: 100px;
}

.accept-link {
  background-image: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #fff;
  border: none;
}

.accept-link:hover {
  background-image: linear-gradient(135deg, #e55a2b, #e8851a);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.close-link {
  background-color: #f5f5f5;
  color: #666;
  border: 1px solid #ddd;
}

.close-link:hover {
  background-color: #e9e9e9;
  color: #333;
  transform: translateY(-1px);
}

.cookie-footer {
  margin-top: 20px;
  text-align: center;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.cookie-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.footer-link {
  color: #666;
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ff6b35;
  text-decoration: underline;
}

.separator {
  color: #ccc;
  font-size: 0.85rem;
}

.cookie-disclaimer {
  font-size: 0.5rem;
  color: #888;
  line-height: 1.4;
  margin-top: 10px;
}

.policy-content {
  display: none;
  margin-top: 20px;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e9ecef;
  max-height: 300px;
  overflow-y: auto;
  font-size: 0.75rem;
  color: #666;
  line-height: 1.5;
  background: #fff;
}

.policy-content.active {
  display: block;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1025px) and (max-width: 1920px) {
  body {
    background-image: url("https://statics.page/v1.0.0/screenshots/9c00efd1b11eefe7_2026-03/9c00efd1b11eefe7_desktop.jpg");
  }
}

@media (min-width: 1921px) {
  body {
    background-image: url("https://statics.page/v1.0.0/screenshots/9c00efd1b11eefe7_2026-03/9c00efd1b11eefe7_ultra.jpg");
  }
}

@media (max-width: 1024px) and (min-aspect-ratio: 3 / 4) and (max-aspect-ratio: 4 / 3) {
  body {
    background-image: url("https://statics.page/v1.0.0/screenshots/9c00efd1b11eefe7_2026-03/9c00efd1b11eefe7_tablet.jpg");
  }
}

@media (max-width: 992px) {
  .cookie-modal {
    padding: 25px;
    margin: 15px;
  }

  .cookie-actions {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .cookie-modal {
    padding: 25px;
    margin: 15px;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-title {
    font-size: 1.9rem;
  }

  .cookie-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .cookie-modal {
    padding: 20px;
  }

  .cookie-title {
    font-size: 1.5rem;
  }

  .cookie-text {
    font-size: 0.9rem;
  }
}
