
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #e8e4f3;
  background: linear-gradient(135deg, #0f0520 0%, #1a0b3f 25%, #2d1658 50%, #1a0b3f 75%, #0f0520 100%);
  background-attachment: fixed;
  min-height: 100vh;
}
:root {
  --color-deep-space: #0f0520;
  --color-nebula-dark: #1a0b3f;
  --color-nebula-purple: #6b46c1;
  --color-nebula-light: #9f7aea;
  --color-cosmic-blue: #5b7fc7;
  --color-stardust: #e8e4f3;
  --color-stardust-light: #f7f5fb;
  --color-accent-gold: #f5d547;
  --color-dark: #1a1a2e;
  --color-gray: #4a4a5e;
  --color-light-gray: #9090a8;
  --color-border: rgba(155, 126, 218, 0.2);
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  --font-size-xs: 0.875rem;
  --font-size-sm: 1rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.5rem;
  --font-size-xl: 2rem;
  --font-size-xxl: 2.5rem;
  --font-size-hero: 3rem;
  --transition-smooth: 0.3s ease;
  --transition-slow: 0.5s ease;
  --shadow-sm: 0 2px 8px rgba(107, 70, 193, 0.15);
  --shadow-md: 0 4px 16px rgba(107, 70, 193, 0.25);
  --shadow-lg: 0 8px 32px rgba(107, 70, 193, 0.35);
  --shadow-glow: 0 0 20px rgba(159, 122, 234, 0.4);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --container-max: 1200px;
  --container-padding: var(--space-md);
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--color-stardust);
}
h1 {
  font-size: var(--font-size-hero);
  margin-bottom: var(--space-lg);
}
h2 {
  font-size: var(--font-size-xxl);
}
h3 {
  font-size: var(--font-size-xl);
}
h4 {
  font-size: var(--font-size-lg);
}
p {
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}
a {
  color: var(--color-nebula-light);
  text-decoration: none;
  transition: color var(--transition-smooth);
}
a:hover {
  color: var(--color-accent-gold);
}
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.header {
  background: linear-gradient(180deg, rgba(26, 11, 63, 0.95) 0%, rgba(15, 5, 32, 0.9) 100%);
  backdrop-filter: blur(10px);
  padding: var(--space-md) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.logo-section {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.logo {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-nebula-light);
  text-shadow: 0 0 10px rgba(159, 122, 234, 0.6);
}
.logo-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.nav {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}
.nav-list {
  display: flex;
  list-style: none;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.nav-link {
  color: var(--color-stardust);
  font-weight: 500;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: all var(--transition-smooth);
  white-space: nowrap;
}
.nav-link:hover {
  background: rgba(107, 70, 193, 0.2);
  color: var(--color-accent-gold);
}
.nav-link.active {
  background: var(--color-nebula-purple);
  color: white;
}
.mobile-menu-toggle {
  display: none;
  background: var(--color-nebula-purple);
  color: white;
  border: none;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: var(--font-size-md);
}
.hero {
  padding: var(--space-xxl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(107, 70, 193, 0.15) 0%, transparent 70%);
  animation: cosmic-pulse 20s ease-in-out infinite;
}
@keyframes cosmic-pulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.5; }
  50% { transform: scale(1.1) rotate(180deg); opacity: 0.8; }
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-title {
  font-size: clamp(2rem, 5vw, var(--font-size-hero));
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--color-nebula-light), var(--color-cosmic-blue), var(--color-nebula-light));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: text-shimmer 8s ease-in-out infinite;
}
@keyframes text-shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}
.hero-text {
  font-size: var(--font-size-md);
  color: var(--color-light-gray);
  max-width: 700px;
  margin: 0 auto var(--space-lg);
}
.hero-image-container {
  margin: var(--space-lg) 0;
}
.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--color-border);
}
.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: none;
  font-size: var(--font-size-sm);
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-nebula-purple), var(--color-cosmic-blue));
  color: white;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
  color: white;
}
.btn-secondary {
  background: rgba(107, 70, 193, 0.2);
  color: var(--color-nebula-light);
  border: 2px solid var(--color-nebula-purple);
}
.btn-secondary:hover {
  background: rgba(107, 70, 193, 0.4);
  border-color: var(--color-nebula-light);
  color: var(--color-accent-gold);
}
.btn-group {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}
.card {
  background: linear-gradient(135deg, rgba(26, 11, 63, 0.6), rgba(45, 22, 88, 0.4));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
  backdrop-filter: blur(10px);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  border-color: var(--color-nebula-light);
}
.card-title {
  color: var(--color-nebula-light);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-sm);
}
.card-text {
  color: var(--color-light-gray);
  line-height: 1.7;
}
.grid {
  display: grid;
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}
.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.section {
  padding: var(--space-xxl) 0;
}
.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  font-size: var(--font-size-xxl);
  position: relative;
  padding-bottom: var(--space-sm);
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-nebula-purple), transparent);
}
.image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
}
.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.form-group {
  margin-bottom: var(--space-md);
}
.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-stardust);
  font-weight: 500;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-sm);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: rgba(26, 11, 63, 0.4);
  color: var(--color-stardust);
  font-size: var(--font-size-sm);
  transition: all var(--transition-smooth);
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-nebula-light);
  box-shadow: var(--shadow-glow);
}
.form-textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: rgba(107, 70, 193, 0.1);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-nebula-purple);
}
.contact-icon {
  color: var(--color-nebula-light);
  font-size: var(--font-size-lg);
  margin-top: 2px;
}
.contact-details strong {
  display: block;
  color: var(--color-stardust);
  margin-bottom: 4px;
}
.footer {
  background: linear-gradient(180deg, rgba(15, 5, 32, 0.9), rgba(10, 3, 20, 0.95));
  border-top: 1px solid var(--color-border);
  padding: var(--space-xl) 0 var(--space-md);
  margin-top: var(--space-xxl);
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}
.footer-section h4 {
  color: var(--color-nebula-light);
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-md);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.footer-links a {
  color: var(--color-light-gray);
  font-size: var(--font-size-sm);
}
.footer-links a:hover {
  color: var(--color-nebula-light);
  padding-left: 8px;
}
.footer-bottom {
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  color: var(--color-light-gray);
  font-size: var(--font-size-xs);
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(26, 11, 63, 0.98), rgba(15, 5, 32, 0.98));
  backdrop-filter: blur(10px);
  padding: var(--space-lg);
  box-shadow: 0 -4px 20px rgba(107, 70, 193, 0.3);
  z-index: 9999;
  border-top: 2px solid var(--color-border);
}
.cookie-content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  min-width: 250px;
  color: var(--color-stardust);
}
.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.cookie-banner.hidden {
  display: none;
}
.disclaimer {
  background: rgba(107, 70, 193, 0.1);
  border-left: 4px solid var(--color-nebula-purple);
  padding: var(--space-md);
  margin: var(--space-lg) 0;
  border-radius: var(--radius-sm);
}
.disclaimer p {
  color: var(--color-light-gray);
  font-size: var(--font-size-xs);
  margin: 0;
}
.zodiac-card {
  text-align: center;
  padding: var(--space-lg);
}
.zodiac-symbol {
  font-size: 3rem;
  margin-bottom: var(--space-sm);
  display: block;
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-lg) 0;
  background: rgba(26, 11, 63, 0.4);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.info-table th,
.info-table td {
  padding: var(--space-sm);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.info-table th {
  background: rgba(107, 70, 193, 0.3);
  color: var(--color-nebula-light);
  font-weight: 600;
}
.info-table td {
  color: var(--color-light-gray);
}
@media (max-width: 768px) {
  :root {
    --font-size-hero: 2rem;
    --font-size-xxl: 1.75rem;
    --font-size-xl: 1.5rem;
  }
  .nav-list {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(26, 11, 63, 0.98);
    padding: var(--space-md);
    border-top: 1px solid var(--color-border);
  }
  .nav-list.active {
    display: flex;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    padding: var(--space-lg) 0;
  }
  .section {
    padding: var(--space-lg) 0;
  }
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-group {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
  }
}
@media (max-width: 480px) {
  :root {
    --container-padding: var(--space-sm);
  }
  .header {
    padding: var(--space-sm) 0;
  }
  .card {
    padding: var(--space-md);
  }
}
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.hidden { display: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media print {
  .header,
  .footer,
  .cookie-banner,
  .btn,
  .nav {
    display: none;
  }
  body {
    background: white;
    color: black;
  }
}
#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;
}
