/* Rockabilly Pinup Theme */
@import url("https://fonts.googleapis.com/css2?family=Creepster&family=Nosifer&family=Butcherman&family=Metal+Mania&display=swap");

:root {
  --primary-color: #000000;
  --secondary-color: #dc143c;
  --accent-color: #ff0000;
  --background-color: #1a1a1a;
  --text-color: #ffffff;
  --border-color: #dc143c;
  --hover-color: #b22222;
  --shadow-color: rgba(220, 20, 60, 0.5);
}

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

body {
  font-family: "Metal Mania", cursive;
  background: radial-gradient(circle at center, var(--background-color) 0%, #000000 100%);
  background-attachment: fixed;
  color: var(--text-color);
  line-height: 1.6;
  font-size: 1.7rem;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 25% 25%, var(--secondary-color) 4px, transparent 4px),
    radial-gradient(circle at 75% 75%, var(--accent-color) 2px, transparent 2px),
    radial-gradient(circle at 50% 50%, white 1px, transparent 1px);
  background-size: 100px 100px, 60px 60px, 40px 40px;
  opacity: 0.1;
  z-index: -1;
  animation: rockabillyDots 30s linear infinite;
}

@keyframes rockabillyDots {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(100px) translateY(60px);
  }
}

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

/* Header Styles */
.header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 25px 0;
  box-shadow: 0 8px 30px var(--shadow-color);
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid var(--accent-color);
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.05) 20px,
    rgba(255, 255, 255, 0.05) 40px
  );
  animation: rockabillyStripes 12s linear infinite;
}

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

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

.logo {
  font-family: "Creepster", cursive;
  font-size: 3.9rem;
  color: var(--accent-color);
  text-shadow: 3px 3px 0px var(--primary-color), 6px 6px 10px rgba(0, 0, 0, 0.8);
  position: relative;
  transform: rotate(-2deg);
}

.logo::after {
  content: "🔥";
  position: absolute;
  top: -20px;
  right: -30px;
  font-size: 1.5rem;
  animation: rockabillyFire 2s ease-in-out infinite;
}

@keyframes rockabillyFire {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.3) rotate(10deg);
  }
}

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

.nav a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 400;
  padding: 15px 25px;
  border-radius: 0;
  background: var(--secondary-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 3px solid var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  transition: left 0.4s ease;
  z-index: -1;
}

.nav a:hover::before {
  left: 0;
}

.nav a:hover {
  color: var(--text-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

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

.content-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2a2a2a 100%);
  margin: 40px 0;
  padding: 40px;
  border-radius: 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
  border: 5px solid var(--secondary-color);
  position: relative;
  overflow: hidden;
}

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

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

.section-title {
  font-family: "Nosifer", cursive;
  font-size: 4.6rem;
  color: var(--accent-color);
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 2px 2px 0px var(--primary-color), 4px 4px 8px rgba(0, 0, 0, 0.8);
  position: relative;
  transform: rotate(-1deg);
}

.section-title::after {
  content: "⚡";
  position: absolute;
  top: -20px;
  right: -50px;
  animation: rockabillyBolt 1.5s ease-in-out infinite;
}

@keyframes rockabillyBolt {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.2) rotate(15deg);
  }
}

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

.casino-card {
  background: linear-gradient(135deg, var(--primary-color) 0%, #333333 100%);
  border: 4px solid var(--secondary-color);
  border-radius: 0;
  padding: 30px;
  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: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: var(--secondary-color);
  border-radius: 50%;
  box-shadow: 40px 0 var(--accent-color), 0 40px white, 40px 40px var(--secondary-color);
  opacity: 0.3;
}

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

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

@keyframes rockabillySpots {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.3) rotate(180deg);
  }
}

.card-title {
  font-family: "Butcherman", cursive;
  font-size: 2.6rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.card-content {
  font-size: 1.6rem;
  line-height: 1.7;
  text-align: center;
  color: var(--text-color);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
  color: var(--text-color);
  text-decoration: none;
  border-radius: 0;
  font-family: "Metal Mania", cursive;
  font-size: 3rem;
  font-weight: 400;
  transition: all 0.3s ease;
  border: 3px solid var(--primary-color);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

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

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.8);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--text-color);
  padding: 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 5px solid var(--accent-color);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 30% 30%, var(--accent-color) 3px, transparent 3px),
    radial-gradient(circle at 70% 70%, white 2px, transparent 2px);
  background-size: 80px 80px, 60px 60px;
  opacity: 0.1;
  animation: rockabillyFooter 20s linear infinite;
}

@keyframes rockabillyFooter {
  0% {
    transform: translateX(0) rotate(0deg);
  }
  100% {
    transform: translateX(80px) rotate(360deg);
  }
}

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

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

.skull {
  position: absolute;
  color: var(--secondary-color);
  font-size: 22px;
  animation: floatSkull 7s ease-in-out infinite;
  opacity: 0;
}

@keyframes floatSkull {
  0% {
    opacity: 0;
    transform: translateY(100vh) rotate(0deg) scale(0);
  }
  15% {
    opacity: 1;
    transform: translateY(85vh) rotate(45deg) scale(1);
  }
  85% {
    opacity: 1;
    transform: translateY(15vh) rotate(315deg) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(0) rotate(360deg) scale(0);
  }
}

/* Rockabilly Decorations */
.rockabilly-decoration {
  position: absolute;
  font-size: 3.9rem;
  color: var(--accent-color);
  opacity: 0.3;
  animation: rockabillyRock 3s ease-in-out infinite;
}

@keyframes rockabillyRock {
  0%,
  100% {
    transform: rotate(-10deg) scale(1);
  }
  50% {
    transform: rotate(10deg) scale(1.2);
  }
}

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

/* FAQ статичный режим */
.accordion-question {
all: unset;
display: block;
font-family: var(--font-family);
font-size: 2.3rem;
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;
}

.header .quick-nav ul {
  list-style: none;
  
  gap: 8px;
  margin: 0;
  padding: 0;
}

.header .quick-nav a {
  color: var(--gray-300);
  text-decoration: none;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--gray-700);
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  font-weight: 500;
}