
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: linear-gradient(180deg, #0a1628 0%, #162447 50%, #1f4068 100%);
  color: #e8eaf6;
  line-height: 1.7;
  min-height: 100vh;
  position: relative;
}
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);
  background-size: 200% 200%;
  background-position: 0% 0%;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
header {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232, 234, 246, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}
.logo-section h1 {
  font-size: 28px;
  font-weight: 600;
  color: #93c5fd;
  letter-spacing: 1px;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}
nav a {
  color: #e8eaf6;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
}
nav a:hover {
  color: #93c5fd;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #93c5fd;
  transition: width 0.3s ease;
}
nav a:hover::after {
  width: 100%;
}
.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}
.burger-menu span {
  width: 25px;
  height: 3px;
  background: #93c5fd;
  border-radius: 3px;
  transition: all 0.3s ease;
}
main {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}
.section {
  margin-bottom: 80px;
  animation: fadeInUp 0.8s ease-out;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-title {
  font-size: 42px;
  color: #93c5fd;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 1px;
}
.section-subtitle {
  font-size: 28px;
  color: #bfdbfe;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 500;
}
.section-text {
  font-size: 18px;
  line-height: 1.8;
  color: #e8eaf6;
  margin-bottom: 25px;
  text-align: justify;
}
.section-image {
  width: 100%;
  max-width: 800px;
  height: 400px;
  margin: 40px auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(147, 197, 253, 0.3);
}
.action-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 60px 0;
}
.action-block {
  background: rgba(31, 64, 104, 0.5);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(147, 197, 253, 0.3);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.action-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(147, 197, 253, 0.3);
  border-color: #93c5fd;
}
.action-block h3 {
  font-size: 26px;
  color: #93c5fd;
  margin-bottom: 15px;
}
.action-block p {
  font-size: 16px;
  color: #e8eaf6;
  line-height: 1.6;
}
.action-link {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: rgba(147, 197, 253, 0.2);
  color: #93c5fd;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid #93c5fd;
  transition: all 0.3s ease;
}
.action-link:hover {
  background: #93c5fd;
  color: #0a1628;
}
.zodiac-section {
  margin-bottom: 50px;
  padding: 30px;
  background: rgba(31, 64, 104, 0.3);
  border-left: 4px solid #93c5fd;
  border-radius: 8px;
}
.zodiac-section h3 {
  font-size: 24px;
  color: #93c5fd;
  margin-bottom: 15px;
}
.zodiac-section p {
  font-size: 17px;
  color: #e8eaf6;
  line-height: 1.8;
  text-align: justify;
}
.contact-form {
  max-width: 700px;
  margin: 40px auto;
  background: rgba(31, 64, 104, 0.5);
  backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 16px;
  border: 2px solid rgba(147, 197, 253, 0.3);
}
.form-group {
  margin-bottom: 25px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #93c5fd;
  font-size: 16px;
  font-weight: 500;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  background: rgba(10, 22, 40, 0.6);
  border: 1px solid rgba(147, 197, 253, 0.3);
  border-radius: 8px;
  color: #e8eaf6;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #93c5fd;
  box-shadow: 0 0 0 3px rgba(147, 197, 253, 0.1);
}
.form-group textarea {
  min-height: 150px;
  resize: vertical;
}
.submit-btn {
  width: 100%;
  padding: 16px;
  background: rgba(147, 197, 253, 0.2);
  color: #93c5fd;
  border: 2px solid #93c5fd;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.submit-btn:hover {
  background: #93c5fd;
  color: #0a1628;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(147, 197, 253, 0.3);
}
footer {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(232, 234, 246, 0.1);
  padding: 50px 0 30px;
  margin-top: 100px;
  position: relative;
  z-index: 2;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 30px;
}
.footer-section h3 {
  color: #93c5fd;
  font-size: 20px;
  margin-bottom: 20px;
}
.footer-section ul {
  list-style: none;
}
.footer-section ul li {
  margin-bottom: 12px;
}
.footer-section a {
  color: #e8eaf6;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-section a:hover {
  color: #93c5fd;
}
.footer-section p {
  color: #e8eaf6;
  line-height: 1.6;
  font-size: 15px;
}
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(232, 234, 246, 0.1);
  color: #bfdbfe;
  font-size: 14px;
}
.footer-note {
  margin-top: 15px;
  font-size: 13px;
  color: #94a3b8;
  font-style: italic;
}
.disclaimer-box {
  background: rgba(31, 64, 104, 0.4);
  border-left: 4px solid #93c5fd;
  padding: 20px 25px;
  margin: 50px 0;
  border-radius: 8px;
  font-size: 15px;
  color: #bfdbfe;
  font-style: italic;
  line-height: 1.7;
}
.contact-info {
  background: rgba(31, 64, 104, 0.4);
  padding: 30px;
  border-radius: 12px;
  border: 2px solid rgba(147, 197, 253, 0.3);
  margin: 30px 0;
}
.contact-info h3 {
  color: #93c5fd;
  font-size: 22px;
  margin-bottom: 20px;
}
.contact-info p {
  color: #e8eaf6;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
}
.thank-you-container {
  max-width: 800px;
  margin: 100px auto;
  text-align: center;
  padding: 60px 40px;
  background: rgba(31, 64, 104, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 2px solid rgba(147, 197, 253, 0.3);
}
.thank-you-container h1 {
  color: #93c5fd;
  font-size: 48px;
  margin-bottom: 30px;
}
.thank-you-container p {
  color: #e8eaf6;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.back-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.back-links a {
  padding: 14px 30px;
  background: rgba(147, 197, 253, 0.2);
  color: #93c5fd;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid #93c5fd;
  transition: all 0.3s ease;
  font-weight: 500;
}
.back-links a:hover {
  background: #93c5fd;
  color: #0a1628;
  transform: translateY(-2px);
}
.policy-header {
  background: rgba(31, 64, 104, 0.5);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 12px;
  border: 2px solid rgba(147, 197, 253, 0.3);
  margin-bottom: 40px;
}
.policy-header h2 {
  color: #93c5fd;
  font-size: 20px;
  margin-bottom: 15px;
}
.policy-header p {
  color: #e8eaf6;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.policy-content h2 {
  color: #93c5fd;
  font-size: 32px;
  margin-top: 50px;
  margin-bottom: 20px;
}
.policy-content h3 {
  color: #bfdbfe;
  font-size: 24px;
  margin-top: 35px;
  margin-bottom: 15px;
}
.policy-content p {
  color: #e8eaf6;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}
.policy-content ul {
  margin-left: 30px;
  margin-bottom: 20px;
}
.policy-content li {
  color: #e8eaf6;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }
  nav ul {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(10, 22, 40, 0.98);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    border-top: 1px solid rgba(147, 197, 253, 0.3);
  }
  nav ul.active {
    display: flex;
  }
  .section-title {
    font-size: 32px;
  }
  .section-text {
    font-size: 16px;
  }
  .action-blocks {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 30px 20px;
  }
  .cookie-content {
    padding: 30px 20px;
    margin: 20px;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
}
#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.cookie-de{
  position:fixed !important;
  z-index:999999 !important;
  left:16px;
  bottom:16px;
  width:auto;
  max-width:min(440px, calc(100vw - 32px)) !important;
  padding:14px;
  box-sizing:border-box !important;
  border-radius:18px;
  background:rgba(16,16,20,0.78);
  border:1px solid rgba(255,255,255,0.14);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  box-shadow:0 18px 60px rgba(0,0,0,0.45);
  color:#f5f6fb;
  opacity:0;
  transform:translateY(12px);
  pointer-events:none;
  transition:opacity .22s ease, transform .22s ease;
  font-family:inherit;
}
#cookieBanner.cookie-de.show{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}
.cookie-de-top{
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.cookie-de-badge{
  width:44px;
  height:44px;
  flex:0 0 auto;
  border-radius:14px;
  background:linear-gradient(135deg, rgba(125,211,255,0.16), rgba(99,102,241,0.16));
  border:1px solid rgba(255,255,255,0.12);
  display:flex;
  align-items:center;
  justify-content:center;
}
.cookie-de-badge-img{
  width:22px;
  height:22px;
  display:block;
}
.cookie-de-copy{
  flex:1 1 auto;
  min-width:0;
}
.cookie-de-title{
  margin:0 0 5px;
  font-size:14px;
  font-weight:900;
  letter-spacing:0.2px;
}
.cookie-de-text{
  margin:0;
  font-size:13px;
  line-height:1.48;
  color:rgba(245,246,251,0.86);
  overflow-wrap:anywhere;
  word-break:break-word;
}
.cookie-de-links{
  margin-top:10px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  font-size:12.5px;
  color:rgba(245,246,251,0.72);
}
.cookie-de-link{
  color:rgba(125,211,255,0.95);
  text-decoration:none;
  border-bottom:1px solid rgba(125,211,255,0.28);
}
.cookie-de-link:hover{
  border-bottom-color:rgba(125,211,255,0.75);
}
.cookie-de-sep{
  opacity:0.55;
}
.cookie-de-actions{
  margin-top:12px;
  display:flex;
  gap:10px;
}
.cookie-de-btn{
  width:100%;
  padding:10px 12px;
  border-radius:14px;
  font-size:13px;
  font-weight:900;
  cursor:pointer;
  border:1px solid transparent;
  transition:transform .08s ease, filter .15s ease, background .15s ease;
}
.cookie-de-btn:active{
  transform:scale(0.99);
}
.cookie-de-btn-solid{
  background:linear-gradient(135deg, rgba(125,211,255,0.95), rgba(99,102,241,0.95));
  color:#0b0b10;
  border-color:rgba(255,255,255,0.10);
}
.cookie-de-btn-ghost{
  background:rgba(255,255,255,0.06);
  color:#f5f6fb;
  border-color:rgba(255,255,255,0.14);
}
.cookie-de-btn-solid:hover{
  filter:brightness(1.05);
}
.cookie-de-btn-ghost:hover{
  background:rgba(255,255,255,0.10);
}
@media (max-width:520px){
  #cookieBanner.cookie-de{
    left:12px !important;
    right:12px !important;
    bottom:12px !important;
    width:auto !important;
    max-width:none !important;
    transform:translateY(0) !important;
    border-radius:18px;
  }
  .cookie-de-actions{
    flex-direction:column;
  }
}
html,body{
  max-width:100%;
  overflow-x:hidden;
}
