
:root {
    --color-bg: #000000;
    --color-surface: #1a1a1a;
    --color-surface-light: #2a2a2a;
    --color-purple: #9333ea;
    --color-purple-dark: #7c3aed;
    --color-yellow: #fbbf24;
    --color-yellow-dark: #f59e0b;
    --color-text: #ffffff;
    --color-text-muted: #a3a3a3;
    --color-border: #3a3a3a;
    --glow-purple: 0 0 20px rgba(147, 51, 234, 0.5);
    --glow-yellow: 0 0 20px rgba(251, 191, 36, 0.5);
    --glow-mixed: 0 0 30px rgba(147, 51, 234, 0.3), 0 0 40px rgba(251, 191, 36, 0.2);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }
p {
    margin-bottom: 1rem;
}
a {
    color: var(--color-purple);
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}
a:hover {
    color: var(--color-yellow);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.section {
    padding: 5rem 0;
    position: relative;
}
.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--color-purple), var(--color-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(147, 51, 234, 0.3);
    box-shadow: var(--glow-mixed);
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}
.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    text-shadow: var(--glow-purple);
}
.nav-desktop {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.nav-desktop a {
    color: var(--color-text);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.nav-desktop a:hover,
.nav-desktop a.active {
    background: rgba(147, 51, 234, 0.2);
    color: var(--color-yellow);
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.4);
}
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid var(--color-purple);
    color: var(--color-text);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.mobile-menu-toggle:hover {
    background: rgba(147, 51, 234, 0.2);
    box-shadow: var(--glow-purple);
}
.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    padding: 2rem;
}
.nav-mobile.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.nav-mobile-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: 2px solid var(--color-purple);
    color: var(--color-text);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background 0.3s ease;
}
.nav-mobile-close:hover {
    background: rgba(147, 51, 234, 0.2);
}
.nav-mobile ul {
    list-style: none;
    text-align: center;
}
.nav-mobile ul li {
    margin: 1.5rem 0;
}
.nav-mobile ul li a {
    color: var(--color-text);
    font-size: 1.5rem;
    font-weight: 500;
    padding: 1rem 2rem;
    display: inline-block;
    border-radius: 8px;
    transition: background 0.3s ease, color 0.3s ease;
}
.nav-mobile ul li a:hover {
    background: rgba(147, 51, 234, 0.2);
    color: var(--color-yellow);
}
.footer {
    background: var(--color-surface);
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--color-purple), var(--color-yellow)) 1;
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-section h4 {
    color: var(--color-yellow);
    margin-bottom: 1rem;
}
.footer-section ul {
    list-style: none;
}
.footer-section ul li {
    margin-bottom: 0.5rem;
}
.footer-section ul li a {
    color: var(--color-text-muted);
    transition: color 0.3s ease;
}
.footer-section ul li a:hover {
    color: var(--color-yellow);
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-muted);
    font-size: 0.9rem;
}
.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}
.content-section.reverse {
    direction: rtl;
}
.content-section.reverse > * {
    direction: ltr;
}
.content-section.full {
    grid-template-columns: 1fr;
}
.content-text h2 {
    color: var(--color-yellow);
    margin-bottom: 1.5rem;
}
.content-text p {
    color: var(--color-text-muted);
    line-height: 1.8;
}
.content-image {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--color-purple);
    box-shadow: var(--glow-purple);
}
.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.card {
    background: var(--color-surface);
    border: 2px solid var(--color-purple);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-mixed);
}
.card h3 {
    color: var(--color-yellow);
    margin-bottom: 1rem;
}
.card p {
    color: var(--color-text-muted);
}
.zodiac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.zodiac-card {
    background: var(--color-surface);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 2rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.zodiac-card:hover {
    border-color: var(--color-purple);
    box-shadow: var(--glow-purple);
    transform: translateY(-3px);
}
.zodiac-card h3 {
    color: var(--color-yellow);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.zodiac-card .date {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.zodiac-card p {
    color: var(--color-text-muted);
    line-height: 1.7;
}
.form-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.contact-form {
    background: var(--color-surface);
    border: 2px solid var(--color-purple);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--glow-purple);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    font-weight: 500;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-purple);
    box-shadow: 0 0 10px rgba(147, 51, 234, 0.3);
}
.form-group textarea {
    resize: vertical;
    min-height: 150px;
}
.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--color-purple);
    border: none;
    border-radius: 8px;
    color: var(--color-text);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.btn-submit:hover {
    background: var(--color-purple-dark);
    box-shadow: var(--glow-purple);
    transform: translateY(-2px);
}
.contact-info {
    background: var(--color-surface);
    border: 2px solid var(--color-yellow);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--glow-yellow);
}
.contact-info h3 {
    color: var(--color-yellow);
    margin-bottom: 1.5rem;
}
.contact-info p {
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}
.contact-info strong {
    color: var(--color-text);
}
.thank-you-section {
    text-align: center;
    padding: 5rem 0;
}
.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}
.thank-you-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-purple);
    box-shadow: var(--glow-mixed);
}
.thank-you-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.back-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.btn-back {
    padding: 0.75rem 2rem;
    background: var(--color-purple);
    border: none;
    border-radius: 8px;
    color: var(--color-text);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.btn-back:hover {
    background: var(--color-purple-dark);
    box-shadow: var(--glow-purple);
    transform: translateY(-2px);
    color: var(--color-text);
}
.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}
.policy-content h1 {
    color: var(--color-yellow);
    margin-bottom: 2rem;
}
.policy-content h2 {
    color: var(--color-purple);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.policy-content h3 {
    color: var(--color-yellow);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}
.policy-content p,
.policy-content ul {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    line-height: 1.8;
}
.policy-content ul {
    padding-left: 2rem;
}
.policy-content li {
    margin-bottom: 0.5rem;
}
.contact-box {
    background: var(--color-surface);
    border: 2px solid var(--color-purple);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: var(--glow-purple);
}
.contact-box strong {
    color: var(--color-yellow);
}
.disclaimer-note {
    background: rgba(251, 191, 36, 0.1);
    border-left: 4px solid var(--color-yellow);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}
.disclaimer-note p {
    color: var(--color-text);
    margin: 0;
}
@media (max-width: 968px) {
    .nav-desktop {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .content-section,
    .form-section {
        grid-template-columns: 1fr;
    }
    .content-section.reverse {
        direction: ltr;
    }
    .zodiac-grid,
    .card-grid {
        grid-template-columns: 1fr;
    }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    .section {
        padding: 3rem 0;
    }
    .container {
        padding: 0 1rem;
    }
}
@media (max-width: 640px) {
    .header-container {
        padding: 1rem;
    }
    .logo {
        font-size: 1.5rem;
    }
    .cookie-content {
        padding: 2rem;
    }
    .cookie-buttons {
        flex-direction: column;
    }
    .btn-cookie {
        width: 100%;
    }
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
}
#cookieBanner.cookie-wow{
  position:fixed !important;
  z-index:999999 !important;
  left:16px;
  bottom:16px;
  width:380px;
  max-width:calc(100vw - 32px);
  padding:16px;
  box-sizing:border-box !important;
  border-radius:22px;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(125,211,255,0.18), transparent 45%),
    linear-gradient(180deg, rgba(16,16,20,0.92), rgba(16,16,20,0.85));
  border:1px solid rgba(255,255,255,0.16);
  box-shadow:0 30px 90px rgba(0,0,0,0.65);
  color:#f5f6fb;
  opacity:0;
  transform:translateY(18px) scale(0.97);
  pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
  font-family:inherit;
}
#cookieBanner.cookie-wow.show{
  opacity:1;
  transform:translateY(0) scale(1);
  pointer-events:auto;
}
.cookie-wow-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:10px;
}
.cookie-wow-chip{
  display:flex;
  align-items:center;
  gap:8px;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.14);
  font-size:12px;
  font-weight:900;
  color:#7dd3ff;
}
.cookie-wow-ico{
  width:14px;
  height:14px;
  display:block;
}
.cookie-wow-title{
  margin:0;
  font-size:13px;
  font-weight:950;
  letter-spacing:0.2px;
  color:rgba(245,246,251,0.95);
}
.cookie-wow-text{
  margin:0;
  font-size:13.5px;
  line-height:1.55;
  color:rgba(245,246,251,0.86);
  overflow-wrap:anywhere;
  word-break:break-word;
}
.cookie-wow-links{
  margin-top:12px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.cookie-wow-links a{
  font-size:12.5px;
  color:#7dd3ff;
  text-decoration:none;
  border-bottom:1px solid rgba(125,211,255,0.3);
}
.cookie-wow-links a:hover{
  border-bottom-color:rgba(125,211,255,0.85);
}
.cookie-wow-actions{
  margin-top:16px;
  display:flex;
  gap:12px;
}
.cookie-wow-btn{
  width:100%;
  padding:11px 14px;
  border-radius:16px;
  font-size:13.5px;
  font-weight:900;
  cursor:pointer;
  border:1px solid transparent;
  transition:transform .08s ease, filter .15s ease, background .15s ease;
}
.cookie-wow-btn:active{
  transform:scale(0.98);
}
.cookie-wow-btn.solid{
  background:linear-gradient(135deg,#7dd3ff,#6366f1);
  color:#0b0b10;
}
.cookie-wow-btn.ghost{
  background:rgba(255,255,255,0.06);
  color:#f5f6fb;
  border-color:rgba(255,255,255,0.18);
}
.cookie-wow-btn.solid:hover{
  filter:brightness(1.06);
}
.cookie-wow-btn.ghost:hover{
  background:rgba(255,255,255,0.12);
}
@media (max-width:520px){
  #cookieBanner.cookie-wow{
    left:12px !important;
    right:12px !important;
    bottom:12px !important;
    width:auto !important;
    max-width:none !important;
    border-radius:22px;
  }
  .cookie-wow-actions{
    flex-direction:column;
  }
}
html,body{
  max-width:100%;
  overflow-x:hidden;
}
