/* Classic Red Pinup Theme */
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&family=Pacifico&family=Satisfy&display=swap");

:root {
  --primary-color: #dc143c;
  --secondary-color: #ffb6c1;
  --accent-color: #ff69b4;
  --background-color: #fff8dc;
  --text-color: #2f1b14;
  --border-color: #dc143c;
  --hover-color: #b22222;
  --shadow-color: rgba(220, 20, 60, 0.3);
}

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

body {
  font-family: "Dancing Script", cursive;
  font-size: 1.2rem;
  background: linear-gradient(45deg, var(--background-color) 0%, #ffefd5 100%);
  background-attachment: fixed;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 20%, var(--secondary-color) 2px, transparent 2px),
    radial-gradient(circle at 80% 80%, var(--accent-color) 1px, transparent 1px);
  background-size: 50px 50px, 30px 30px;
  opacity: 0.1;
  z-index: -1;
  animation: pinupFloat 20s ease-in-out infinite;
}

@keyframes pinupFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* Header Styles */
.header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--hover-color) 100%);
  padding: 20px 0;
  box-shadow: 0 4px 20px var(--shadow-color);
  position: relative;
  overflow: hidden;
}

.header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.1) 10px,
    rgba(255, 255, 255, 0.1) 20px
  );
  animation: pinupStripes 15s linear infinite;
}

@keyframes pinupStripes {
  0% {
    transform: translateX(-100px);
  }
  100% {
    transform: translateX(100px);
  }
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.logo {
  font-family: "Pacifico", cursive;
  font-size: 2.5rem;
  color: white;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  position: relative;
}

.logo::after {
  content: "♥";
  position: absolute;
  top: -10px;
  right: -20px;
  font-size: 1rem;
  color: var(--secondary-color);
  animation: heartBeat 2s ease-in-out infinite;
}

@keyframes heartBeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.nav a:hover::before {
  left: 100%;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Main Content */
.main-content {
  padding: 40px 0;
  position: relative;
}

.content-section {
  background: rgba(255, 255, 255, 0.9);
  margin: 30px 0;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--primary-color);
  position: relative;
  overflow: hidden;
}

.content-section::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--accent-color),
    var(--secondary-color),
    var(--primary-color)
  );
  border-radius: 25px;
  z-index: -1;
  animation: pinupBorder 3s linear infinite;
}

@keyframes pinupBorder {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.section-title {
  font-family: "Satisfy", cursive;
  font-size: 2.2rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}

.section-title::after {
  content: "✨";
  position: absolute;
  top: -10px;
  right: -30px;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2) rotate(180deg);
  }
}

/* Casino Cards */
.casino-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
}

.casino-card {
  background: linear-gradient(135deg, white 0%, var(--background-color) 100%);
  border: 3px solid var(--primary-color);
  border-radius: 15px;
  padding: 20px;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.casino-card::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  background: var(--accent-color);
  border-radius: 50%;
  box-shadow: 30px 0 var(--secondary-color), 0 30px var(--primary-color), 30px 30px var(--accent-color);
  opacity: 0.3;
}

.casino-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 40px var(--shadow-color);
  border-color: var(--accent-color);
}

.casino-card:hover::before {
  animation: pinupDots 1s ease-in-out infinite;
}

@keyframes pinupDots {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.card-title {
  font-family: "Pacifico", cursive;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  text-align: center;
}

.card-content {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--hover-color) 100%);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-family: "Dancing Script", cursive;
  font-size: 2rem;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow-color);
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--shadow-color);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--text-color) 0%, #1a1a1a 100%);
  color: white;
  padding: 30px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 25% 25%, var(--primary-color) 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, var(--accent-color) 1px, transparent 1px);
  background-size: 60px 60px, 40px 40px;
  opacity: 0.1;
  animation: pinupFooter 25s linear infinite;
}

@keyframes pinupFooter {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100px);
  }
}

.footer-content {
  position: relative;
  z-index: 2;
}

/* Floating Hearts */
.floating-hearts {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
}

.heart {
  position: absolute;
  color: var(--accent-color);
  font-size: 20px;
  animation: floatHeart 6s ease-in-out infinite;
  opacity: 0;
}

@keyframes floatHeart {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 1;
    transform: translateY(90vh) scale(1);
  }
  90% {
    opacity: 1;
    transform: translateY(10vh) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
}

/* Pinup Decorations */
.pinup-decoration {
  position: absolute;
  font-size: 2rem;
  color: var(--accent-color);
  opacity: 0.3;
  animation: pinupSway 4s ease-in-out infinite;
}

@keyframes pinupSway {
  0%,
  100% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
}

.pinup-decoration:nth-child(1) {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}
.pinup-decoration:nth-child(2) {
  top: 20%;
  right: 5%;
  animation-delay: 1s;
}
.pinup-decoration:nth-child(3) {
  bottom: 20%;
  left: 10%;
  animation-delay: 2s;
}
.pinup-decoration:nth-child(4) {
  bottom: 10%;
  right: 10%;
  animation-delay: 3s;
}

/* FAQ статичный режим */
.accordion-question {
all: unset;
display: block;
font-family: var(--font-family);
font-size: 1.8rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 10px;
}

.accordion-icon {
display: none;
}

.accordion-answer,
.static-answer {
max-height: none !important;
padding: 0 0 1.5rem 0;
color: var(--text-secondary);
overflow: visible;
transition: none !important;
}

footer .icon use {
fill: #ffffff !important;
}

h1, h2, h3 {
    font-style: italic!important;
    font-size: 2.5rem; /* для h1 */
}

h2 {
    font-size: 2rem; /* для h2 */
}

h3 {
    font-size: 1.4rem; /* для h3 */
}


.header .quick-nav a {
  color: #ffffff;
  text-decoration: none;
  padding: 12px 20px;
  background: linear-gradient(45deg, var(--space-purple), var(--space-blue));
  border-radius: 20px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  
  
}