
:root {
  --color-space-deep: 230 25% 8%;
  --color-space-darker: 230 20% 12%;
  --color-nebula-purple: 277 50% 45%;
  --color-nebula-blue: 220 60% 55%;
  --color-starlight: 45 100% 85%;
  --color-text-primary: 0 0% 95%;
  --color-text-secondary: 220 15% 75%;
  --color-text-muted: 220 10% 60%;
  --glass-bg: hsla(230, 25%, 15%, 0.7);
  --glass-border: hsla(220, 60%, 65%, 0.2);
  --glass-blur: blur(12px);
  --gradient-cosmic: linear-gradient(135deg,
    hsl(230, 25%, 8%) 0%,
    hsl(250, 35%, 12%) 50%,
    hsl(230, 25%, 8%) 100%);
  --gradient-nebula: linear-gradient(90deg,
    hsl(277, 50%, 45%) 0%,
    hsl(220, 60%, 55%) 100%);
  --gradient-starfield: radial-gradient(ellipse at top,
    hsl(230, 30%, 15%) 0%,
    hsl(230, 25%, 8%) 100%);
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: Georgia, 'Times New Roman', serif;
  --text-xs: 0.875rem;
  --text-sm: 1rem;
  --text-base: 1.125rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 2.5rem;
  --text-4xl: 3rem;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px hsla(220, 60%, 55%, 0.3);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: hsl(var(--color-text-primary));
  background: var(--gradient-cosmic);
  background-attachment: fixed;
  position: relative;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(2px 2px at 20% 30%, white, transparent),
    radial-gradient(2px 2px at 60% 70%, white, transparent),
    radial-gradient(1px 1px at 50% 50%, white, transparent),
    radial-gradient(1px 1px at 80% 10%, white, transparent),
    radial-gradient(2px 2px at 90% 60%, white, transparent),
    radial-gradient(1px 1px at 33% 80%, white, transparent),
    radial-gradient(1px 1px at 15% 95%, white, transparent);
  background-size: 200% 200%;
  background-position: 0% 0%;
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--space-md);
  color: hsl(var(--color-text-primary));
}
h1 {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-4xl));
  margin-bottom: var(--space-lg);
}
h2 {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
}
h3 {
  font-size: var(--text-xl);
}
h4 {
  font-size: var(--text-lg);
}
p {
  margin-bottom: var(--space-md);
  color: hsl(var(--color-text-secondary));
}
a {
  color: hsl(var(--color-nebula-blue));
  text-decoration: none;
  transition: var(--transition-smooth);
}
a:hover {
  color: hsl(var(--color-starlight));
  text-decoration: underline;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.header-container::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-nebula);
  opacity: 0.5;
}
.logo-section {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.site-logo {
  font-size: var(--text-2xl);
  font-weight: 700;
  font-family: var(--font-heading);
  color: hsl(var(--color-starlight));
  text-shadow: 0 0 20px hsla(45, 100%, 85%, 0.5);
}
nav ul {
  list-style: none;
  display: flex;
  gap: var(--space-md);
  align-items: center;
}
nav ul li a {
  padding: var(--space-xs) var(--space-sm);
  border-radius: 8px;
  transition: var(--transition-smooth);
  color: hsl(var(--color-text-secondary));
  font-size: var(--text-sm);
}
nav ul li a:hover {
  background: hsla(220, 60%, 55%, 0.15);
  color: hsl(var(--color-nebula-blue));
  text-decoration: none;
  box-shadow: var(--shadow-glow);
}
nav ul li a.active {
  background: hsla(220, 60%, 55%, 0.2);
  color: hsl(var(--color-nebula-blue));
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: hsl(var(--color-text-primary));
  border-radius: 2px;
  transition: var(--transition-smooth);
}
main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}
.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}
.hero-section {
  padding: var(--space-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center,
    hsla(277, 50%, 45%, 0.15) 0%,
    transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: var(--space-lg);
  background: var(--gradient-nebula);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text {
  font-size: var(--text-lg);
  max-width: 700px;
  margin: 0 auto var(--space-lg);
  color: hsl(var(--color-text-secondary));
}
.hero-image-wrapper {
  margin: var(--space-xl) auto;
  max-width: 800px;
}
.hero-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--glass-border);
}
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}
.glass-card:hover {
  border-color: hsla(220, 60%, 65%, 0.4);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: translateY(-2px);
}
.glass-card h2,
.glass-card h3 {
  color: hsl(var(--color-nebula-blue));
}
.nav-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}
.nav-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: var(--space-lg);
  text-align: center;
  transition: var(--transition-smooth);
  cursor: pointer;
}
.nav-card:hover {
  border-color: hsla(220, 60%, 65%, 0.5);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: translateY(-4px);
}
.nav-card h3 {
  color: hsl(var(--color-nebula-blue));
  margin-bottom: var(--space-sm);
}
.nav-card p {
  color: hsl(var(--color-text-secondary));
  font-size: var(--text-sm);
}
.nav-card-link {
  display: inline-block;
  margin-top: var(--space-md);
  padding: var(--space-xs) var(--space-md);
  background: hsla(220, 60%, 55%, 0.2);
  border: 1px solid hsl(var(--color-nebula-blue));
  border-radius: 8px;
  color: hsl(var(--color-nebula-blue));
  transition: var(--transition-smooth);
}
.nav-card-link:hover {
  background: hsla(220, 60%, 55%, 0.3);
  text-decoration: none;
  box-shadow: var(--shadow-glow);
}
.content-section {
  margin-bottom: var(--space-xl);
}
.section-title {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid hsla(220, 60%, 55%, 0.3);
}
.section-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  margin: var(--space-lg) auto;
  display: block;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--glass-border);
}
.zodiac-section {
  margin-bottom: var(--space-lg);
  padding: var(--space-lg);
  background: hsla(230, 20%, 15%, 0.5);
  border-left: 4px solid hsl(var(--color-nebula-blue));
  border-radius: 8px;
}
.zodiac-section h3 {
  color: hsl(var(--color-starlight));
  margin-bottom: var(--space-sm);
}
.contact-form {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
  box-shadow: var(--shadow-lg);
}
.form-group {
  margin-bottom: var(--space-md);
}
.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  color: hsl(var(--color-text-primary));
  font-weight: 500;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm);
  background: hsla(230, 20%, 10%, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: hsl(var(--color-text-primary));
  font-family: var(--font-body);
  font-size: var(--text-sm);
  transition: var(--transition-smooth);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: hsl(var(--color-nebula-blue));
  box-shadow: 0 0 0 3px hsla(220, 60%, 55%, 0.2);
}
.form-group textarea {
  resize: vertical;
  min-height: 150px;
}
.submit-button {
  padding: var(--space-sm) var(--space-lg);
  background: var(--gradient-nebula);
  border: none;
  border-radius: 8px;
  color: hsl(var(--color-text-primary));
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-md);
}
.submit-button:hover {
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: translateY(-2px);
}
.submit-button:active {
  transform: translateY(0);
}
.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}
.contact-item {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: var(--space-lg);
  text-align: center;
}
.contact-item h3 {
  color: hsl(var(--color-nebula-blue));
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}
.contact-item p {
  color: hsl(var(--color-text-secondary));
  font-size: var(--text-sm);
}
footer {
  background: hsla(230, 25%, 10%, 0.9);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-top: 1px solid var(--glass-border);
  margin-top: var(--space-xl);
  position: relative;
}
.footer-divider {
  height: 2px;
  background: var(--gradient-nebula);
  opacity: 0.3;
  margin-bottom: 0;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
}
.footer-section h4 {
  color: hsl(var(--color-nebula-blue));
  margin-bottom: var(--space-md);
  font-size: var(--text-lg);
}
.footer-section ul {
  list-style: none;
}
.footer-section ul li {
  margin-bottom: var(--space-xs);
}
.footer-section ul li a {
  color: hsl(var(--color-text-secondary));
  font-size: var(--text-sm);
}
.footer-section ul li a:hover {
  color: hsl(var(--color-nebula-blue));
}
.footer-bottom {
  text-align: center;
  padding: var(--space-md);
  border-top: 1px solid var(--glass-border);
  color: hsl(var(--color-text-muted));
  font-size: var(--text-xs);
}
.policy-header {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
}
.policy-header h1 {
  color: hsl(var(--color-nebula-blue));
}
.contact-info {
  background: hsla(230, 20%, 15%, 0.5);
  padding: var(--space-md);
  border-radius: 8px;
  margin: var(--space-lg) 0;
  border-left: 4px solid hsl(var(--color-nebula-blue));
}
.contact-info p {
  margin-bottom: var(--space-xs);
  font-size: var(--text-sm);
}
.policy-section {
  margin-bottom: var(--space-xl);
}
.policy-section h2 {
  color: hsl(var(--color-starlight));
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}
.policy-section h3 {
  color: hsl(var(--color-nebula-blue));
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}
.policy-section ul,
.policy-section ol {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}
.policy-section li {
  margin-bottom: var(--space-xs);
  color: hsl(var(--color-text-secondary));
}
.disclaimer-box {
  background: hsla(45, 100%, 85%, 0.1);
  border: 1px solid hsla(45, 100%, 85%, 0.3);
  border-radius: 8px;
  padding: var(--space-md);
  margin: var(--space-xl) 0;
}
.disclaimer-box p {
  color: hsl(var(--color-starlight));
  font-size: var(--text-sm);
  margin: 0;
}
.thank-you-container {
  text-align: center;
  padding: var(--space-xl) 0;
}
.thank-you-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: var(--space-xl);
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.thank-you-card h1 {
  color: hsl(var(--color-nebula-blue));
}
.return-links {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}
.return-link {
  padding: var(--space-sm) var(--space-lg);
  background: hsla(220, 60%, 55%, 0.2);
  border: 1px solid hsl(var(--color-nebula-blue));
  border-radius: 8px;
  color: hsl(var(--color-nebula-blue));
  transition: var(--transition-smooth);
}
.return-link:hover {
  background: hsla(220, 60%, 55%, 0.3);
  text-decoration: none;
  box-shadow: var(--shadow-glow);
}
@media (max-width: 768px) {
  :root {
    --text-4xl: 2.5rem;
    --text-3xl: 2rem;
    --text-2xl: 1.75rem;
  }
  .menu-toggle {
    display: flex;
  }
  nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-top: 1px solid var(--glass-border);
    padding: var(--space-md);
    gap: var(--space-sm);
    display: none;
  }
  nav ul.mobile-menu-open {
    display: flex;
  }
  nav ul li {
    width: 100%;
  }
  nav ul li a {
    display: block;
    width: 100%;
    text-align: center;
  }
  .nav-cards {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .cookie-buttons {
    flex-direction: column;
  }
  .cookie-button {
    width: 100%;
  }
}
@media (max-width: 480px) {
  :root {
    --space-xl: 2.5rem;
    --space-lg: 1.5rem;
  }
  .container,
  .container-narrow {
    padding: var(--space-lg) var(--space-sm);
  }
  .hero-section {
    padding: var(--space-lg) 0;
  }
}
@media print {
  body::before,
  .hero-section::before {
    display: none;
  }
  header,
  .cookie-banner {
    display: none;
  }
  main {
    margin-top: 0;
  }
}
#cookieBanner{
  position:fixed !important;
  z-index:999999 !important;
  left:16px;
  bottom:16px;
  width:auto;
  max-width:min(420px, calc(100vw - 32px)) !important;
  padding:14px;
  box-sizing:border-box !important;
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.18);
  background:rgba(20,20,26,0.78);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  box-shadow:0 18px 48px rgba(0,0,0,0.38);
  color:#f3f3f6;
  opacity:0;
  transform:translateY(12px);
  pointer-events:none;
  transition:opacity .22s ease, transform .22s ease;
  font-family:inherit;
}
#cookieBanner.show{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}
.cookie-top{
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.cookie-badge{
  width:44px;
  height:44px;
  flex:0 0 auto;
  border-radius:12px;
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.16);
  display:flex;
  align-items:center;
  justify-content:center;
}
.cookie-badge-img{
  width:24px;
  height:24px;
  display:block;
}
.cookie-copy{
  flex:1 1 auto;
  min-width:0;
}
.cookie-title{
  margin:0 0 4px;
  font-size:14px;
  font-weight:700;
  letter-spacing:0.2px;
}
.cookie-text{
  margin:0 0 8px;
  font-size:13px;
  line-height:1.45;
  color:rgba(243,243,246,0.92);
  overflow-wrap:anywhere;
  word-break:break-word;
}
.cookie-links{
  margin:0;
  font-size:12.5px;
  line-height:1.35;
  color:rgba(243,243,246,0.78);
  overflow-wrap:anywhere;
}
.cookie-link{
  color:#7dd3ff;
  text-decoration:none;
  border-bottom:1px solid rgba(125,211,255,0.35);
}
.cookie-link:hover{
  border-bottom-color:rgba(125,211,255,0.85);
}
.cookie-sep{
  margin:0 6px;
  opacity:0.6;
}
.cookie-actions{
  margin-top:12px;
  display:flex;
  gap:10px;
}
.cookie-btn{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
  border:1px solid transparent;
}
.cookie-btn-primary{
  background:linear-gradient(135deg,#7dd3ff,#6366f1);
  color:#0b0b10;
  border-color:rgba(255,255,255,0.12);
}
.cookie-btn-secondary{
  background:rgba(255,255,255,0.08);
  color:#f3f3f6;
  border-color:rgba(255,255,255,0.16);
}
.cookie-btn-primary:hover{
  filter:brightness(1.05);
}
.cookie-btn-secondary:hover{
  background:rgba(255,255,255,0.12);
}
@media (max-width:520px){
  #cookieBanner{
    left:12px !important;
    right:12px !important;
    bottom:12px !important;
    top:auto !important;
    width:auto !important;
    max-width:none !important;
    transform:translateY(0) !important;
  }
  .cookie-actions{
    flex-direction:column;
  }
  .cookie-badge{
    width:40px;
    height:40px;
  }
  .cookie-badge-img{
    width:22px;
    height:22px;
  }
}
html,body{
  max-width:100%;
  overflow-x:hidden;
}
#cookieBanner{
  position:fixed !important;
  z-index:999999 !important;
  box-sizing:border-box !important;
  right:16px;
  bottom:16px;
  width:auto;
  max-width:min(560px, calc(100vw - 32px)) !important;
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.18);
  background:rgba(20,20,26,0.78);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  box-shadow:0 18px 48px rgba(0,0,0,0.38);
  color:#f3f3f6;
  opacity:0;
  transform:translateY(12px);
  pointer-events:none;
  transition:opacity .22s ease, transform .22s ease;
  font-family:inherit;
}
#cookieBanner.show{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}
.cookie-row{
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.cookie-row-wrap{
  flex-wrap:nowrap;
}
.cookie-icon{
  flex:0 0 auto;
  border-radius:12px;
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.16);
  display:flex;
  align-items:center;
  justify-content:center;
}
.cookie-icon-medium{
  width:44px;
  height:44px;
}
.cookie-icon-img{
  width:24px;
  height:24px;
  display:block;
}
.cookie-content{
  flex:1 1 auto;
  min-width:0;
}
.cookie-title{
  margin:0 0 4px;
  font-size:14px;
  font-weight:700;
  letter-spacing:0.2px;
}
.cookie-text{
  margin:0 0 8px;
  line-height:1.45;
  color:rgba(243,243,246,0.92);
  overflow-wrap:anywhere;
  word-break:break-word;
}
.cookie-text-small{
  font-size:13px;
}
.cookie-links{
  margin:0;
  line-height:1.35;
  color:rgba(243,243,246,0.78);
  overflow-wrap:anywhere;
  word-break:break-word;
}
.cookie-links-inline{
  font-size:12.5px;
}
.cookie-link{
  color:#7dd3ff;
  text-decoration:none;
  border-bottom:1px solid rgba(125,211,255,0.35);
}
.cookie-link:hover{
  border-bottom-color:rgba(125,211,255,0.85);
}
.cookie-sep{
  margin:0 6px;
  opacity:0.6;
}
.cookie-actions{
  margin-top:12px;
  display:flex;
  gap:10px;
}
.cookie-actions-right{
  justify-content:flex-end;
}
.cookie-btn{
  padding:10px 12px;
  border-radius:12px;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
  border:1px solid transparent;
}
.cookie-btn-wide{
  min-width:160px;
}
.cookie-btn-primary{
  background:linear-gradient(135deg,#7dd3ff,#6366f1);
  color:#0b0b10;
  border-color:rgba(255,255,255,0.12);
}
.cookie-btn-secondary{
  background:rgba(255,255,255,0.08);
  color:#f3f3f6;
  border-color:rgba(255,255,255,0.16);
}
.cookie-btn-primary:hover{
  filter:brightness(1.05);
}
.cookie-btn-secondary:hover{
  background:rgba(255,255,255,0.12);
}
@media (max-width:520px){
  #cookieBanner{
    left:12px !important;
    right:12px !important;
    bottom:12px !important;
    top:auto !important;
    width:auto !important;
    max-width:none !important;
    transform:translateY(0) !important;
  }
  .cookie-row-wrap{
    flex-wrap:wrap;
  }
  .cookie-actions{
    flex-direction:column;
  }
  .cookie-actions-right{
    justify-content:stretch;
  }
  .cookie-btn-wide{
    min-width:0;
    width:100%;
  }
  .cookie-icon-medium{
    width:40px;
    height:40px;
  }
  .cookie-icon-img{
    width:22px;
    height:22px;
  }
}
html,body{
  max-width:100%;
  overflow-x:hidden;
}
