/* Parisian Reverie Theme - Custom Animations & Overrides */

/* Keyframe Animations */
@keyframes parallaxFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Parisian Color Palette */
:root {
  --sepia-rose: #d4a574;
  --cobblestone: #8b7355;
  --lantern-glow: #f4e4c1;
  --paris-night: #2c2416;
  --cafe-cream: #f9f5f0;
}

/* Base Overrides */
body {
  font-family: "Georgia", serif;
  background: linear-gradient(135deg, var(--cafe-cream) 0%, var(--lantern-glow) 100%);
  color: var(--paris-night);
  line-height: 1.6;
}

/* Parallax Elements */
.parallax-element {
  animation: parallaxFloat 6s ease-in-out infinite;
}

.parallax-element:nth-child(even) {
  animation-delay: -3s;
  animation-duration: 8s;
}

/* Marquee Animation */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-content {
  display: inline-block;
  animation: marqueeScroll 30s linear infinite;
}

/* Parisian Cobblestone Pattern */
.cobblestone-bg {
  background-image: radial-gradient(circle at 25% 25%, var(--cobblestone) 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, var(--sepia-rose) 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
}

/* Lantern Glow Effect */
.lantern-glow {
  position: relative;
  overflow: hidden;
}

.lantern-glow::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--lantern-glow) 0%, transparent 70%);
  opacity: 0.3;
  animation: parallaxFloat 8s ease-in-out infinite;
}

/* CTA Buttons */
.cta-button {
  background: linear-gradient(45deg, var(--sepia-rose), var(--cobblestone));
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button::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;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

/* Game Cards */
.game-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  animation: fadeInUp 0.6s ease-out;
}

.game-card:hover {
  transform: translateY(-5px) scale(1.02);
}

/* Numbered Badges */
.numbered-badge {
  width: 40px;
  height: 40px;
  background: var(--sepia-rose);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 16px;
}

/* Payment Methods Table */
.payment-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.payment-table td,
.payment-table th {
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
}

.payment-table th {
  background: var(--lantern-glow);
  font-weight: bold;
  color: var(--paris-night);
}

/* Review Blocks */
.review-block {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
}

/* Provider Cloud */
.provider-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.provider-tag {
  background: var(--lantern-glow);
  color: var(--paris-night);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

/* FAQ Accordion */
.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  background: var(--cafe-cream);
  border: none;
  width: 100%;
  text-align: left;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
  max-height: 200px;
  padding: 20px;
}

/* Responsive Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--paris-night);
  font-weight: bold;
  margin-bottom: 16px;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 16px;
  color: var(--paris-night);
  opacity: 0.9;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }

  .game-card {
    margin-bottom: 16px;
  }

  .marquee-content {
    animation-duration: 20s;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Utility Classes */
.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.shimmer-effect {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}
