/* PetalPunch - Redesigned Styles with Sidebar Layout */

/* ---------- Base Styles & Variables ---------- */
:root {
  /* Color Palette */
  --petalpunch-primary: #7F5AF0;       /* Purple */
  --petalpunch-secondary: #2CB67D;     /* Green */
  --petalpunch-accent: #FF8E3C;        /* Orange */
  --petalpunch-dark: #16161A;          /* Almost Black */
  --petalpunch-light: #FFFFFE;         /* White */
  --petalpunch-gray-dark: #72757E;     /* Dark Gray */
  --petalpunch-gray-light: #94A1B2;    /* Light Gray */
  --petalpunch-background: #F2F5F9;    /* Light Blue-Gray */
  
  /* Game Colors */
  --petalpunch-flower: #F25F5C;        /* Coral */
  --petalpunch-box: #247BA0;           /* Blue */
  --petalpunch-potion: #70C1B3;        /* Teal */
  
  /* Spacing */
  --petalpunch-spacing-xs: 0.5rem;
  --petalpunch-spacing-sm: 1rem;
  --petalpunch-spacing-md: 2rem;
  --petalpunch-spacing-lg: 3rem;
  --petalpunch-spacing-xl: 5rem;
  
  /* Layout */
  --petalpunch-sidebar-width: 250px;
  --petalpunch-mobile-header-height: 70px;
  --petalpunch-border-radius: 16px;
  
  /* Shadows */
  --petalpunch-shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
  --petalpunch-shadow-md: 0 5px 20px rgba(0, 0, 0, 0.08);
  --petalpunch-shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Quicksand', sans-serif;
  background-color: var(--petalpunch-background);
  color: var(--petalpunch-dark);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

button, .petalpunch-hero-button, .petalpunch-card-button, .petalpunch-featured-button, .petalpunch-newsletter-button {
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  border: none;
  outline: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

/* ---------- Loader ---------- */
.petalpunch-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--petalpunch-background);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.petalpunch-loader.hide {
  opacity: 0;
  visibility: hidden;
}

.petalpunch-loader-ring {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 4px solid rgba(127, 90, 240, 0.1);
  border-top-color: var(--petalpunch-primary);
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

.petalpunch-loader-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--petalpunch-primary);
  letter-spacing: 2px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- Sidebar ---------- */
.petalpunch-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--petalpunch-sidebar-width);
  height: 100vh;
  background-color: var(--petalpunch-light);
  box-shadow: var(--petalpunch-shadow-md);
  padding: var(--petalpunch-spacing-md);
  display: flex;
  flex-direction: column;
  z-index: 100;
}

.petalpunch-logo {
  display: flex;
  align-items: center;
  margin-bottom: var(--petalpunch-spacing-lg);
  padding-top: var(--petalpunch-spacing-sm);
}

.petalpunch-logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--petalpunch-primary);
  letter-spacing: 1px;
}

.petalpunch-logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--petalpunch-accent);
  margin-left: 5px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

.petalpunch-nav {
  flex-grow: 1;
}

.petalpunch-menu {
  display: flex;
  flex-direction: column;
  gap: var(--petalpunch-spacing-sm);
}

.petalpunch-menu-link {
  display: block;
  padding: var(--petalpunch-spacing-xs) 0;
  font-weight: 600;
  color: var(--petalpunch-gray-dark);
  border-left: 3px solid transparent;
  padding-left: var(--petalpunch-spacing-sm);
  transition: all 0.3s ease;
}

.petalpunch-menu-link:hover {
  color: var(--petalpunch-primary);
  border-left-color: var(--petalpunch-primary);
  padding-left: calc(var(--petalpunch-spacing-sm) + 5px);
}

.petalpunch-sidebar-footer {
  margin-top: auto;
  padding-top: var(--petalpunch-spacing-md);
}

.petalpunch-social-icons {
  display: flex;
  justify-content: center;
  gap: var(--petalpunch-spacing-sm);
}

.petalpunch-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--petalpunch-background);
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.petalpunch-social-icon:hover {
  background-color: var(--petalpunch-primary);
  color: var(--petalpunch-light);
  transform: translateY(-3px);
}

/* ---------- Mobile Header ---------- */
.petalpunch-mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--petalpunch-mobile-header-height);
  background-color: var(--petalpunch-light);
  box-shadow: var(--petalpunch-shadow-sm);
  padding: 0 var(--petalpunch-spacing-md);
  align-items: center;
  justify-content: space-between;
  z-index: 100;
}

.petalpunch-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.petalpunch-menu-toggle span {
  height: 3px;
  width: 100%;
  background-color: var(--petalpunch-primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* ---------- Main Content Area ---------- */
.petalpunch-main {
  flex: 1;
  margin-left: var(--petalpunch-sidebar-width);
  overflow-x: hidden;
}

/* ---------- Hero Section ---------- */
.petalpunch-hero {
  display: flex;
  min-height: 100vh;
  background-color: var(--petalpunch-light);
}

.petalpunch-hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--petalpunch-spacing-xl);
}

.petalpunch-hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--petalpunch-spacing-md);
  color: var(--petalpunch-dark);
}

.petalpunch-hero-title span {
  color: var(--petalpunch-primary);
  position: relative;
}

.petalpunch-hero-title span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 8px;
  bottom: 5px;
  left: 0;
  background-color: var(--petalpunch-accent);
  opacity: 0.3;
  z-index: -1;
}

.petalpunch-hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: var(--petalpunch-spacing-lg);
  color: var(--petalpunch-gray-dark);
  max-width: 500px;
}

.petalpunch-hero-button {
  display: inline-block;
  padding: var(--petalpunch-spacing-sm) var(--petalpunch-spacing-lg);
  background: linear-gradient(135deg, var(--petalpunch-primary) 0%, #6B47D1 100%);
  color: var(--petalpunch-light);
  border-radius: 50px;
  font-size: 1.1rem;
  align-self: flex-start;
  box-shadow: var(--petalpunch-shadow-md);
}

.petalpunch-hero-button:hover {
  transform: translateY(-5px);
  box-shadow: var(--petalpunch-shadow-lg);
}

.petalpunch-hero-visual {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f9ff;
  overflow: hidden;
}

.petalpunch-hero-image {
  width: 80%;
  height: 70%;
  background: linear-gradient(135deg, var(--petalpunch-primary) 0%, #6B47D1 100%);
  border-radius: var(--petalpunch-border-radius);
  box-shadow: var(--petalpunch-shadow-lg);
  position: relative;
  z-index: 2;
}

.petalpunch-hero-image::after {
  content: '🎮';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6rem;
}

.petalpunch-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.petalpunch-shape-1 {
  width: 300px;
  height: 300px;
  background-color: rgba(127, 90, 240, 0.1);
  bottom: -100px;
  right: -50px;
}

.petalpunch-shape-2 {
  width: 200px;
  height: 200px;
  background-color: rgba(44, 182, 125, 0.1);
  top: -50px;
  left: 10%;
}

.petalpunch-shape-3 {
  width: 150px;
  height: 150px;
  background-color: rgba(255, 142, 60, 0.1);
  top: 40%;
  right: 15%;
}

/* ---------- Quick Access Tabs ---------- */
.petalpunch-quick-access {
  display: flex;
  justify-content: center;
  gap: var(--petalpunch-spacing-md);
  margin: -40px var(--petalpunch-spacing-xl) var(--petalpunch-spacing-xl);
  position: relative;
  z-index: 5;
}
.petalpunch-quick-access img{
  border-radius: 10px;
  box-shadow: var(--petalpunch-shadow-md);
  width: 100%;
  height: auto;
  max-width: 300px;
  max-height: 300px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.petalpunch-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--petalpunch-spacing-md);
  background-color: var(--petalpunch-light);
  border-radius: var(--petalpunch-border-radius);
  box-shadow: var(--petalpunch-shadow-md);
  cursor: pointer;
  transition: all 0.3s ease;
  width: 160px;
}

.petalpunch-tab:hover {
  transform: translateY(-10px);
  box-shadow: var(--petalpunch-shadow-lg);
}

.petalpunch-tab:nth-child(1):hover {
  background-color: rgba(242, 95, 92, 0.1);
}

.petalpunch-tab:nth-child(2):hover {
  background-color: rgba(36, 123, 160, 0.1);
}

.petalpunch-tab:nth-child(3):hover {
  background-color: rgba(112, 193, 179, 0.1);
}

.petalpunch-tab-icon {
  font-size: 2.5rem;
  margin-bottom: var(--petalpunch-spacing-xs);
}

.petalpunch-tab-text {
  font-weight: 600;
  color: var(--petalpunch-dark);
}

/* ---------- Section Headers ---------- */
.petalpunch-section-header {
  text-align: center;
  margin-bottom: var(--petalpunch-spacing-lg);
}

.petalpunch-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--petalpunch-dark);
  margin-bottom: var(--petalpunch-spacing-xs);
}

.petalpunch-section-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--petalpunch-primary) 0%, #6B47D1 100%);
  margin: 0 auto;
  border-radius: 2px;
}

/* ---------- Collection Section ---------- */
.petalpunch-collection {
  padding: var(--petalpunch-spacing-xl) var(--petalpunch-spacing-xl);
  background-color: var(--petalpunch-background);
}

.petalpunch-collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--petalpunch-spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.petalpunch-game-card {
  background-color: var(--petalpunch-light);
  border-radius: var(--petalpunch-border-radius);
  overflow: hidden;
  box-shadow: var(--petalpunch-shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.petalpunch-game-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--petalpunch-shadow-lg);
}

.petalpunch-card-top {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.petalpunch-card-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.petalpunch-flower-image {
  background-color: var(--petalpunch-flower);
  position: relative;
}

.petalpunch-flower-image:after {
  content: '🌸';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
}

.petalpunch-box-image {
  background-color: var(--petalpunch-box);
  position: relative;
}

.petalpunch-box-image:after {
  content: '🥊';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
}

.petalpunch-potion-image {
  background-color: var(--petalpunch-potion);
  position: relative;
}

.petalpunch-potion-image:after {
  content: '🧪';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
}

.petalpunch-game-card:hover .petalpunch-card-image {
  transform: scale(1.1);
}

.petalpunch-card-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 1;
}

.petalpunch-card-category {
  display: inline-block;
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--petalpunch-primary);
}

.petalpunch-card-content {
  padding: var(--petalpunch-spacing-md);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.petalpunch-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: var(--petalpunch-spacing-sm);
  color: var(--petalpunch-dark);
}

.petalpunch-card-description {
  font-size: 0.95rem;
  color: var(--petalpunch-gray-dark);
  line-height: 1.6;
  margin-bottom: var(--petalpunch-spacing-md);
  flex-grow: 1;
}

.petalpunch-card-button {
  width: 100%;
  padding: var(--petalpunch-spacing-sm);
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--petalpunch-light);
  background-color: var(--petalpunch-primary);
  transition: all 0.3s ease;
  margin-top: auto;
}

.petalpunch-card-button:hover {
  background-color: var(--petalpunch-accent);
  transform: translateY(-3px);
}

/* ---------- Featured Game Section ---------- */
.petalpunch-featured {
  padding: var(--petalpunch-spacing-xl) var(--petalpunch-spacing-xl);
  background-color: var(--petalpunch-light);
}

.petalpunch-featured-card {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(127, 90, 240, 0.05) 0%, rgba(107, 71, 209, 0.1) 100%);
  border-radius: var(--petalpunch-border-radius);
  overflow: hidden;
  box-shadow: var(--petalpunch-shadow-md);
}

.petalpunch-featured-info {
  flex: 1;
  padding: var(--petalpunch-spacing-lg);
  display: flex;
  flex-direction: column;
}

.petalpunch-featured-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--petalpunch-dark);
  margin-bottom: var(--petalpunch-spacing-md);
  position: relative;
  display: inline-block;
}

.petalpunch-featured-title::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--petalpunch-accent);
  bottom: -10px;
  left: 0;
  border-radius: 3px;
}

.petalpunch-featured-stats {
  display: flex;
  gap: var(--petalpunch-spacing-md);
  margin-bottom: var(--petalpunch-spacing-md);
}

.petalpunch-stat {
  background-color: var(--petalpunch-light);
  padding: var(--petalpunch-spacing-sm) var(--petalpunch-spacing-md);
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--petalpunch-shadow-sm);
}

.petalpunch-stat-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--petalpunch-primary);
  line-height: 1.2;
}

.petalpunch-stat-label {
  font-size: 0.85rem;
  color: var(--petalpunch-gray-dark);
  font-weight: 500;
}

.petalpunch-featured-description {
  font-size: 1.1rem;
  color: var(--petalpunch-gray-dark);
  line-height: 1.7;
  margin-bottom: var(--petalpunch-spacing-lg);
  flex-grow: 1;
}

.petalpunch-featured-button {
  align-self: flex-start;
  padding: var(--petalpunch-spacing-sm) var(--petalpunch-spacing-lg);
  background: linear-gradient(135deg, var(--petalpunch-accent) 0%, #FF6E27 100%);
  color: var(--petalpunch-light);
  border-radius: 50px;
  font-size: 1.1rem;
  box-shadow: var(--petalpunch-shadow-md);
}

.petalpunch-featured-button:hover {
  transform: translateY(-5px);
  box-shadow: var(--petalpunch-shadow-lg);
}

.petalpunch-featured-image {
  flex: 1;
  position: relative;
  min-height: 400px;
}

.petalpunch-image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--petalpunch-flower) 0%, #e74c3c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.petalpunch-image-placeholder:after {
  content: '🌸';
  font-size: 6rem;
}

/* ---------- Community Section ---------- */
.petalpunch-community {
  padding: var(--petalpunch-spacing-xl) var(--petalpunch-spacing-xl);
  background-color: var(--petalpunch-background);
}

.petalpunch-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--petalpunch-spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.petalpunch-testimonial {
  background-color: var(--petalpunch-light);
  border-radius: var(--petalpunch-border-radius);
  padding: var(--petalpunch-spacing-lg);
  box-shadow: var(--petalpunch-shadow-md);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.petalpunch-testimonial:hover {
  transform: translateY(-10px);
  box-shadow: var(--petalpunch-shadow-lg);
}

.petalpunch-testimonial::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 60px;
  line-height: 1;
  color: rgba(127, 90, 240, 0.1);
  font-family: Georgia, serif;
}

.petalpunch-testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--petalpunch-primary) 0%, #6B47D1 100%);
  margin-bottom: var(--petalpunch-spacing-md);
  align-self: center;
}

.petalpunch-testimonial-content {
  text-align: center;
}

.petalpunch-testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--petalpunch-gray-dark);
  margin-bottom: var(--petalpunch-spacing-md);
  font-style: italic;
}

.petalpunch-testimonial-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--petalpunch-primary);
}

/* ---------- Newsletter Section ---------- */
.petalpunch-newsletter {
  padding: var(--petalpunch-spacing-xl) var(--petalpunch-spacing-xl);
  background: linear-gradient(135deg, var(--petalpunch-primary) 0%, #6B47D1 100%);
  color: var(--petalpunch-light);
  position: relative;
}

.petalpunch-newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.petalpunch-newsletter-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.petalpunch-newsletter-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: var(--petalpunch-spacing-xs);
}

.petalpunch-newsletter-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: var(--petalpunch-spacing-lg);
}

.petalpunch-newsletter-form {
  display: flex;
  gap: var(--petalpunch-spacing-sm);
  max-width: 500px;
  margin: 0 auto;
}

.petalpunch-newsletter-input {
  flex-grow: 1;
  padding: var(--petalpunch-spacing-sm) var(--petalpunch-spacing-md);
  border: none;
  border-radius: 50px;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}

.petalpunch-newsletter-button {
  padding: var(--petalpunch-spacing-sm) var(--petalpunch-spacing-md);
  background-color: var(--petalpunch-accent);
  color: var(--petalpunch-light);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
}

.petalpunch-newsletter-button:hover {
  background-color: #FF6E27;
  transform: translateY(-3px);
}

/* ---------- Footer ---------- */
.petalpunch-footer {
  padding: var(--petalpunch-spacing-xl) var(--petalpunch-spacing-xl) var(--petalpunch-spacing-md);
  background-color: var(--petalpunch-light);
}

.petalpunch-footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--petalpunch-spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: var(--petalpunch-spacing-lg);
}

.petalpunch-footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--petalpunch-dark);
  margin-bottom: var(--petalpunch-spacing-md);
  position: relative;
  display: inline-block;
}

.petalpunch-footer-heading::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: var(--petalpunch-primary);
  bottom: -5px;
  left: 0;
  border-radius: 3px;
}

.petalpunch-footer-menu {
  display: flex;
  flex-direction: column;
  gap: var(--petalpunch-spacing-xs);
}

.petalpunch-footer-menu a {
  color: var(--petalpunch-gray-dark);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.petalpunch-footer-menu a:hover {
  color: var(--petalpunch-primary);
  transform: translateX(5px);
}

.petalpunch-footer-bottom {
  text-align: center;
  padding-top: var(--petalpunch-spacing-md);
  border-top: 1px solid rgba(22, 22, 26, 0.1);
}

.petalpunch-copyright {
  color: var(--petalpunch-gray-dark);
  font-size: 0.9rem;
}

/* ---------- Responsive Styles ---------- */
@media (max-width: 1024px) {
  .petalpunch-featured-card {
      flex-direction: column-reverse;
  }
  
  .petalpunch-featured-image {
      min-height: 300px;
  }
  
  .petalpunch-hero {
      flex-direction: column;
  }
  
  .petalpunch-hero-content {
      padding: var(--petalpunch-spacing-lg);
      align-items: center;
      text-align: center;
  }
  
  .petalpunch-hero-subtitle {
      margin-left: auto;
      margin-right: auto;
  }
  
  .petalpunch-hero-button {
      align-self: center;
  }
  
  .petalpunch-hero-visual {
      min-height: 50vh;
  }
}

@media (max-width: 768px) {
  :root {
      --petalpunch-spacing-xl: 3rem;
      --petalpunch-spacing-lg: 2rem;
  }
  
  body {
      display: block;
  }
  
  .petalpunch-sidebar {
      transform: translateX(-100%);
      transition: transform 0.3s ease;
      z-index: 200;
  }
  
  .petalpunch-sidebar.active {
      transform: translateX(0);
  }
  
  .petalpunch-mobile-header {
      display: flex;
  }
  
  .petalpunch-main {
      margin-left: 0;
      padding-top: var(--petalpunch-mobile-header-height);
  }
  
  .petalpunch-quick-access {
      flex-direction: column;
      margin: var(--petalpunch-spacing-md);
      gap: var(--petalpunch-spacing-sm);
  }
  
  .petalpunch-tab {
      width: 100%;
      flex-direction: row;
      justify-content: flex-start;
      gap: var(--petalpunch-spacing-sm);
  }
  
  .petalpunch-hero-title {
      font-size: 3rem;
  }
  
  .petalpunch-newsletter-form {
      flex-direction: column;
  }
  
  .petalpunch-featured-stats {
      flex-direction: column;
      gap: var(--petalpunch-spacing-sm);
  }
  
  .petalpunch-stat {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      text-align: left;
  }
  
  .petalpunch-testimonial-grid {
      grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .petalpunch-hero-title {
      font-size: 2.5rem;
  }
  
  .petalpunch-hero-subtitle {
      font-size: 1.1rem;
  }
  
  .petalpunch-section-title {
      font-size: 2rem;
  }
}

/* Ensure game container works properly */
#game-container {
  transition: all 0.3s ease;
}

#exit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}



/* Featured Game Slider Section Styles */

.petalpunch-featured {
  padding: 80px 0;
  background-color: #f8f9fa;
  overflow: hidden;
}

/* Slider Navigation Controls */
.petalpunch-slider-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.petalpunch-slider-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: none;
  border-radius: 50px;
  background-color: white;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.petalpunch-slider-btn.active {
  background: linear-gradient(135deg, #8ecae6 0%, #219ebc 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.petalpunch-slider-btn:hover:not(.active) {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.petalpunch-slider-btn-icon {
  font-size: 22px;
}

/* Featured Slide Container */
.petalpunch-slider-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.petalpunch-featured-slide {
  display: flex;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
  transform: translateX(30px);
}

.petalpunch-featured-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  transform: translateX(0);
}

/* Content side */
.petalpunch-featured-content {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
}

.petalpunch-featured-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.petalpunch-featured-underline {
  width: 60px;
  height: 3px;
  margin-bottom: 25px;
  background-color: #FF8E3C;
  border-radius: 2px;
}

.petalpunch-featured-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.petalpunch-stat {
  background-color: #f8f9fa;
  padding: 15px 25px;
  border-radius: 10px;
  text-align: center;
  min-width: 100px;
}

.petalpunch-stat-value {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #7F5AF0;
  line-height: 1.2;
}

.petalpunch-stat-label {
  font-size: 14px;
  color: #94A1B2;
}

.petalpunch-featured-description {
  font-size: 17px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 35px;
  flex-grow: 1;
}

.petalpunch-featured-button {
  align-self: flex-start;
  padding: 14px 30px;
  background-color: #FF8E3C;
  color: white;
  font-size: 17px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 142, 60, 0.3);
}

.petalpunch-featured-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 142, 60, 0.4);
}

/* Image side */
.petalpunch-featured-image {
  flex: 1;
  position: relative;
  background-color: #F6F8FA;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.petalpunch-featured-img-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}

.petalpunch-featured-img-container:hover {
  transform: scale(1.05);
}

.petalpunch-featured-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/* Game-specific backgrounds */
.blossom-bg {
  background: url("flower-about.png") center / cover no-repeat;
}

.ring-bg {
  background: url("box-about.png") center / cover no-repeat;
}

.elixir-bg {
  background: url("potion-about.png") center / cover no-repeat;
}

/* Responsive styles */
@media (max-width: 992px) {
  .petalpunch-featured-slide {
      flex-direction: column-reverse;
  }
  
  .petalpunch-featured-image {
      min-height: 300px;
  }
  
  .petalpunch-featured-content {
      padding: 30px;
  }
}

@media (max-width: 768px) {
  .petalpunch-featured {
      padding: 60px 20px;
  }
  
  .petalpunch-slider-controls {
      flex-direction: column;
      align-items: center;
  }
  
  .petalpunch-slider-btn {
      width: 100%;
      justify-content: center;
  }
  
  .petalpunch-featured-stats {
      flex-direction: column;
      gap: 10px;
  }
  
  .petalpunch-stat {
      width: 100%;
  }
  
  .petalpunch-featured-title {
      font-size: 28px;
  }
  
  .petalpunch-featured-button {
      align-self: center;
      width: 100%;
  }
}


/* Adaugă un pic de spațiu sub header pe mobil */
.petalpunch-main.about-page {
  padding-top: var(--petalpunch-mobile-header-height);
}

/* Stil pentru secțiunea de header a paginii About */
.petalpunch-about-header {
  background: linear-gradient(135deg, rgba(127, 90, 240, 0.1) 0%, rgba(44, 182, 125, 0.1) 100%);
  padding: var(--petalpunch-spacing-xl) var(--petalpunch-spacing-md);
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
   margin-bottom: var(--petalpunch-spacing-lg); /* Adăugat spațiu sub header */
}

.petalpunch-about-title {
  font-size: 3rem; /* Mărit puțin */
  font-weight: 800;
  color: var(--petalpunch-primary);
  margin-bottom: var(--petalpunch-spacing-sm);
}

.petalpunch-about-subtitle {
  font-size: 1.2rem;
  color: var(--petalpunch-gray-dark);
  max-width: 700px;
  margin: 0 auto;
}

/* Stil pentru secțiunile de conținut */
.petalpunch-content-section {
  padding: 0 var(--petalpunch-spacing-xl) var(--petalpunch-spacing-lg); /* Ajustat padding */
  max-width: 900px;
  margin: 0 auto var(--petalpunch-spacing-lg);
  background-color: var(--petalpunch-light); /* Adăugat fundal alb */
  border-radius: var(--petalpunch-border-radius); /* Adăugat radius */
  box-shadow: var(--petalpunch-shadow-sm); /* Adăugat umbră fină */
   padding-top: var(--petalpunch-spacing-lg); /* Adăugat spațiu sus */
}

.petalpunch-content-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--petalpunch-dark);
  margin-bottom: var(--petalpunch-spacing-md);
  text-align: center; /* Centrat titlurile secțiunilor */
   position: relative;
}
.petalpunch-content-section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--petalpunch-accent);
  margin: 10px auto 0; /* Centrat linia */
  border-radius: 2px;
}


.petalpunch-content-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--petalpunch-gray-dark);
  margin-bottom: var(--petalpunch-spacing-sm);
}
.petalpunch-content-section p:last-of-type {
  margin-bottom: 0;
}


.petalpunch-cta-button {
  display: inline-block;
  padding: var(--petalpunch-spacing-sm) var(--petalpunch-spacing-lg);
  background: linear-gradient(135deg, var(--petalpunch-primary) 0%, #6B47D1 100%);
  color: var(--petalpunch-light);
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: var(--petalpunch-spacing-md);
  transition: all 0.3s ease;
  box-shadow: var(--petalpunch-shadow-md);
}

.petalpunch-cta-button:hover {
   transform: translateY(-5px);
   box-shadow: var(--petalpunch-shadow-lg);
}

.petalpunch-center-text {
   text-align: center;
}


@media (max-width: 768px) {
  .petalpunch-about-header {
      padding: var(--petalpunch-spacing-lg) var(--petalpunch-spacing-sm);
  }
  .petalpunch-about-title {
      font-size: 2.5rem;
  }
   .petalpunch-about-subtitle {
      font-size: 1.1rem;
  }
   .petalpunch-content-section {
      padding: var(--petalpunch-spacing-md) var(--petalpunch-spacing-sm);
  }
   .petalpunch-content-section h2 {
      font-size: 1.8rem;
  }
}


/* About Page Styles for PetalPunch */

/* Common container */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Common tag */
.about-tag {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(127, 90, 240, 0.1);
  color: var(--petalpunch-primary);
  font-weight: 600;
  font-size: 14px;
  border-radius: 50px;
  margin-bottom: 10px;
}

/* Common section title */
.about-section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--petalpunch-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--petalpunch-gray-dark);
  margin-bottom: 20px;
}

.about-section-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--petalpunch-primary) 0%, #6B47D1 100%);
  margin: 0 auto 50px;
  border-radius: 2px;
}

.about-section-header {
  text-align: center;
  margin-bottom: 50px;
}

/* Hero Section */
.about-hero {
  height: 400px;
  background: linear-gradient(135deg, #8ecae6 0%, #219ebc 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: white;
  overflow: hidden;
  margin-bottom: 80px;
}

.about-hero-content {
  text-align: center;
  z-index: 2;
}

.about-hero-title {
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.about-hero-title::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 10px;
  bottom: 5px;
  left: 0;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: -1;
}

.about-hero-subtitle {
  font-size: 22px;
  opacity: 0.9;
}

.about-hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.about-shape {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.about-shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -50px;
}

.about-shape-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: 10%;
}

.about-shape-3 {
  width: 150px;
  height: 150px;
  top: 50px;
  right: 20%;
}

/* Mission Section */
.about-mission {
  margin-bottom: 100px;
}

.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-mission-image {
  position: relative;
}

.about-mission-image-container {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-mission-blob {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--petalpunch-primary) 0%, #6B47D1 100%);
  border-radius: 60% 40% 70% 30% / 40% 50% 60% 50%;
  animation: blob-morph 8s ease-in-out infinite;
}

@keyframes blob-morph {
  0%, 100% {
      border-radius: 60% 40% 70% 30% / 40% 50% 60% 50%;
  }
  25% {
      border-radius: 50% 60% 30% 70% / 60% 40% 70% 40%;
  }
  50% {
      border-radius: 40% 60% 50% 40% / 70% 30% 50% 60%;
  }
  75% {
      border-radius: 60% 40% 50% 60% / 50% 60% 40% 60%;
  }
}

.about-mission-dot {
  position: absolute;
  border-radius: 50%;
  background-color: white;
  opacity: 0.6;
}

.about-mission-dot-1 {
  width: 20px;
  height: 20px;
  top: 20%;
  left: 30%;
  animation: float 6s ease-in-out infinite;
}

.about-mission-dot-2 {
  width: 15px;
  height: 15px;
  bottom: 30%;
  right: 25%;
  animation: float 5s ease-in-out infinite 1s;
}

.about-mission-dot-3 {
  width: 10px;
  height: 10px;
  top: 60%;
  left: 25%;
  animation: float 7s ease-in-out infinite 0.5s;
}

@keyframes float {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-20px);
  }
}

.about-mission-icon {
  position: absolute;
  font-size: 80px;
  z-index: 2;
}

/* Values Section */
.about-values {
  padding: 100px 0;
  background-color: #f8f9fa;
  margin-bottom: 100px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.about-value-card {
  background-color: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.about-value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-value-icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.about-value-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--petalpunch-dark);
}

.about-value-text {
  font-size: 16px;
  color: var(--petalpunch-gray-dark);
  line-height: 1.6;
}

/* Team Section */
.about-team {
  margin-bottom: 100px;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.about-team-card {
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.about-team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-team-image {
  height: 250px;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  position: relative;
}

.about-team-image::after {
  content: '👤';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
}

.about-team-name {
  font-size: 22px;
  font-weight: 700;
  margin: 20px 0 5px;
  color: var(--petalpunch-dark);
  padding: 0 20px;
}

.about-team-role {
  font-size: 16px;
  color: var(--petalpunch-primary);
  margin-bottom: 15px;
  padding: 0 20px;
}

.about-team-bio {
  font-size: 15px;
  color: var(--petalpunch-gray-dark);
  line-height: 1.6;
  padding: 0 20px 20px;
}

/* Journey/Timeline Section */
.about-journey {
  margin-bottom: 100px;
}

.about-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.about-timeline::before {
  content: '';
  position: absolute;
  width: 4px;
  background-color: #f0f0f0;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.about-timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.about-timeline-item:nth-child(odd) {
  left: 0;
}

.about-timeline-item:nth-child(even) {
  left: 50%;
}

.about-timeline-point {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--petalpunch-primary);
  border-radius: 50%;
  top: 20px;
  right: -10px;
  z-index: 1;
}

.about-timeline-item:nth-child(even) .about-timeline-point {
  left: -10px;
}

.about-timeline-content {
  padding: 30px;
  background-color: white;
  position: relative;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.about-timeline-content::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  top: 20px;
}

.about-timeline-item:nth-child(odd) .about-timeline-content::before {
  border-left: 10px solid white;
  right: -10px;
}

.about-timeline-item:nth-child(even) .about-timeline-content::before {
  border-right: 10px solid white;
  left: -10px;
}

.about-timeline-year {
  font-size: 24px;
  font-weight: 800;
  color: var(--petalpunch-primary);
  margin-bottom: 10px;
}

.about-timeline-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--petalpunch-dark);
}

.about-timeline-text {
  font-size: 15px;
  color: var(--petalpunch-gray-dark);
  line-height: 1.6;
}

/* Contact Section */
.about-contact {
  background: linear-gradient(135deg, var(--petalpunch-primary) 0%, #6B47D1 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 100px;
}

.about-contact-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.about-contact-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
}

.about-contact-text {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-contact-button {
  display: inline-block;
  padding: 15px 35px;
  background-color: white;
  color: var(--petalpunch-primary);
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-contact-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-contact-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.about-contact-shape {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.about-contact-shape-1 {
  width: 200px;
  height: 200px;
  top: -100px;
  right: 10%;
}

.about-contact-shape-2 {
  width: 150px;
  height: 150px;
  bottom: -50px;
  left: 5%;
}

.about-contact-shape-3 {
  width: 100px;
  height: 100px;
  top: 30%;
  right: 20%;
}

/* Responsive styles */
@media (max-width: 992px) {
  .about-mission-grid {
      grid-template-columns: 1fr;
  }
  
  .about-mission-image-container {
      height: 300px;
  }
  
  .about-timeline::before {
      left: 30px;
  }
  
  .about-timeline-item {
      width: 100%;
      padding-left: 70px;
      padding-right: 0;
  }
  
  .about-timeline-item:nth-child(even) {
      left: 0;
  }
  
  .about-timeline-point {
      left: 20px;
      right: auto;
  }
  
  .about-timeline-item:nth-child(even) .about-timeline-point {
      left: 20px;
  }
  
  .about-timeline-item:nth-child(odd) .about-timeline-content::before {
      border-left: none;
      border-right: 10px solid white;
      right: auto;
      left: -10px;
  }
  
  .about-timeline-item:nth-child(even) .about-timeline-content::before {
      border-right: 10px solid white;
      left: -10px;
  }
}

@media (max-width: 768px) {
  .about-hero-title {
      font-size: 40px;
  }
  
  .about-hero-subtitle {
      font-size: 18px;
  }
  
  .about-section-title {
      font-size: 28px;
  }
  
  .about-values-grid {
      grid-template-columns: 1fr;
  }
  
  .about-team-grid {
      grid-template-columns: 1fr;
  }
  
  .about-contact-title {
      font-size: 28px;
  }
  
  .about-contact-text {
      font-size: 16px;
  }
}

/* Animation for elements on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* Active menu link style */
.petalpunch-menu-link.active {
  color: var(--petalpunch-primary);
  border-left-color: var(--petalpunch-primary);
  padding-left: calc(var(--petalpunch-spacing-sm) + 5px);
}

/* Contact Page Styles for PetalPunch with Parallax Effects */

/* Common container */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Common tag */
.contact-tag {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(127, 90, 240, 0.1);
  color: var(--petalpunch-primary);
  font-weight: 600;
  font-size: 14px;
  border-radius: 50px;
  margin-bottom: 10px;
}

/* Common section title */
.contact-section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--petalpunch-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--petalpunch-gray-dark);
  margin-bottom: 20px;
}

.contact-section-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--petalpunch-primary) 0%, #6B47D1 100%);
  margin: 0 auto 50px;
  border-radius: 2px;
}

.contact-section-header {
  text-align: center;
  margin-bottom: 50px;
}

/* ======== Hero Section with Parallax ======== */
.contact-hero {
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden !important;
  background-color: #16161A;
}

.contact-parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Create different parallax layers */
.layer-1 {
  background: radial-gradient(circle at center, rgba(127, 90, 240, 0.5) 0%, transparent 70%);
  transform: translateZ(-0.5px) scale(1.5);
}

.layer-2 {
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.1)' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 120px 120px;
  opacity: 0.5;
  transform: translateZ(-0.25px) scale(1.25);
}

.layer-3 {
  background: linear-gradient(0deg, rgba(22, 22, 26, 0) 0%, rgba(22, 22, 26, 0.5) 100%);
  transform: translateZ(0px) scale(1);
}

.layer-4 {
  background: radial-gradient(circle at center, rgba(44, 182, 125, 0.7) 0%, transparent 70%);
  transform: translateZ(0.1px) scale(0.9);
  opacity: 0.7;
}

.contact-hero-content {
  text-align: center;
  color: white;
  z-index: 2;
  position: relative;
}

.contact-hero-title {
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-hero-subtitle {
  font-size: 24px;
  opacity: 0.9;
}

/* ======== Contact Info Section ======== */
.contact-info-section {
  padding: 80px 0 40px;
  background-color: white;
  position: relative;
  margin-top: -50px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.contact-card {
  background-color: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.contact-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-card-icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.contact-card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--petalpunch-dark);
}

.contact-card-text {
  font-size: 16px;
  color: var(--petalpunch-gray-dark);
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-card-link {
  display: inline-block;
  color: var(--petalpunch-primary);
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

.contact-card-link:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: var(--petalpunch-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
}

.contact-card-link:hover {
  color: var(--petalpunch-accent);
}

.contact-card-link:hover:after {
  transform: scaleX(1);
  background-color: var(--petalpunch-accent);
}

.contact-social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.contact-social-link {
  color: var(--petalpunch-primary);
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-social-link:hover {
  color: var(--petalpunch-accent);
}

/* ======== Form Section ======== */
.contact-form-section {
  padding: 80px 0;
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.contact-form-intro {
  position: relative;
}

.contact-floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.floating-element {
  position: absolute;
  font-size: 40px;
  opacity: 0.2;
  animation: float 8s ease-in-out infinite;
}

.element-1 {
  top: 30px;
  left: 20px;
  animation-delay: 0s;
}

.element-2 {
  bottom: 70px;
  right: 40px;
  animation-delay: 2s;
}

.element-3 {
  bottom: 30px;
  left: 50%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
      transform: translate(0, 0);
  }
  25% {
      transform: translate(-15px, 15px);
  }
  50% {
      transform: translate(0, 30px);
  }
  75% {
      transform: translate(15px, 15px);
  }
}

.contact-form-container {
  background-color: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  font-size: 15px;
  color: var(--petalpunch-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--petalpunch-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(127, 90, 240, 0.1);
}

.contact-submit-button {
  background: linear-gradient(135deg, var(--petalpunch-primary) 0%, #6B47D1 100%);
  color: white;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 30px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.contact-submit-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(127, 90, 240, 0.3);
}

.contact-submit-button .button-icon {
  font-size: 20px;
  transition: all 0.3s ease;
}

.contact-submit-button:hover .button-icon {
  transform: translateX(5px);
}

.contact-submit-button:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.contact-submit-button:hover:before {
  left: 100%;
}

/* ======== FAQ Section with Accordion ======== */
.contact-faq-section {
  padding: 80px 0;
  background-color: white;
}

.contact-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.contact-faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.contact-faq-question {
  padding: 20px 25px;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.contact-faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--petalpunch-dark);
  margin: 0;
}

.contact-faq-toggle {
  font-size: 24px;
  color: var(--petalpunch-primary);
  transition: all 0.3s ease;
}

.contact-faq-item.active .contact-faq-toggle {
  transform: rotate(45deg);
}

.contact-faq-answer {
  background-color: #f8f9fa;
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.contact-faq-item.active .contact-faq-answer {
  padding: 20px 25px;
  max-height: 500px;
}

.contact-faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--petalpunch-gray-dark);
}

/* ======== Map Section with Parallax ======== */
.contact-map-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9f2f9 100%);
  position: relative;
  overflow: hidden;
}

.contact-map-parallax {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.map-parallax-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.map-parallax-element.element-1 {
  width: 300px;
  height: 300px;
  background-color: var(--petalpunch-primary);
  top: -150px;
  right: -100px;
}

.map-parallax-element.element-2 {
  width: 200px;
  height: 200px;
  background-color: var(--petalpunch-accent);
  bottom: -100px;
  left: -50px;
}

.map-parallax-element.element-3 {
  width: 150px;
  height: 150px;
  background-color: var(--petalpunch-secondary);
  top: 40%;
  right: 15%;
}

.contact-map-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-map-text {
  position: relative;
}

.contact-address {
  font-style: normal;
  margin-top: 30px;
  background-color: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-address p {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--petalpunch-gray-dark);
}

.contact-address p:last-child {
  margin-bottom: 0;
}

.contact-map-container {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact-map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
  position: relative;
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background-color: var(--petalpunch-accent);
  border-radius: 50% 50% 50% 0;
  transform-origin: center bottom;
  animation: pin-bounce 1.5s ease-in-out infinite;
}

.map-pin:after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: white;
  border-radius: 50%;
  top: 8px;
  left: 8px;
}

@keyframes pin-bounce {
  0%, 100% {
      transform: translate(-50%, -50%) rotate(-45deg);
  }
  50% {
      transform: translate(-50%, -65%) rotate(-45deg);
  }
}

/* ======== Newsletter Section ======== */
.contact-newsletter {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--petalpunch-primary) 0%, #6B47D1 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-newsletter:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.contact-newsletter-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.contact-newsletter-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
}

.contact-newsletter-text {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.contact-newsletter-input {
  flex-grow: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 50px;
  font-family: inherit;
  font-size: 16px;
  outline: none;
}

.contact-newsletter-button {
  padding: 15px 30px;
  background-color: var(--petalpunch-accent);
  color: white;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-newsletter-button:hover {
  background-color: #ff6e27;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ======== Success Modal ======== */
.contact-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.contact-modal.active {
  opacity: 1;
  visibility: visible;
}

.contact-modal-content {
  width: 90%;
  max-width: 400px;
  background-color: white;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transform: translateY(30px);
  transition: all 0.3s ease;
}

.contact-modal.active .contact-modal-content {
  transform: translateY(0);
}

.contact-modal-icon {
  width: 70px;
  height: 70px;
  background-color: #4CAF50;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 20px;
}

.contact-modal-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--petalpunch-dark);
  margin-bottom: 15px;
}

.contact-modal-text {
  font-size: 16px;
  color: var(--petalpunch-gray-dark);
  margin-bottom: 25px;
  line-height: 1.5;
}

.contact-modal-button {
  background-color: var(--petalpunch-primary);
  color: white;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 30px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-modal-button:hover {
  background-color: #6B47D1;
  transform: translateY(-3px);
}

/* Responsive styles */
@media (max-width: 992px) {
  .contact-form-wrapper {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  
  .contact-map-content {
      grid-template-columns: 1fr;
      gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-hero-title {
      font-size: 40px;
  }
  
  .contact-hero-subtitle {
      font-size: 18px;
  }
  
  .contact-section-title {
      font-size: 28px;
  }
  
  .contact-newsletter-form {
      flex-direction: column;
  }
  
  .contact-faq-question h3 {
      font-size: 16px;
  }
}

/* Animation for elements on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* Parallax effect */
@media (min-width: 992px) {
  .contact-hero {
      perspective: 1px;
      height: 500px;
      overflow-x: hidden;
      overflow-y: auto;
      transform-style: preserve-3d;
  }
  
  .parallax-layer {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
  }
}


/* Legal Pages Styles for PetalPunch */

/* Legal Hero Section */
.petalpunch-legal-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--petalpunch-primary) 0%, #6B47D1 100%);
  color: white;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.petalpunch-legal-hero-content {
  position: relative;
  z-index: 2;
}

.petalpunch-legal-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.petalpunch-legal-updated {
  font-size: 1.1rem;
  opacity: 0.9;
}

.petalpunch-legal-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.petalpunch-legal-shape {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.petalpunch-legal-shape.shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -100px;
}

.petalpunch-legal-shape.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -50px;
}

.petalpunch-legal-shape.shape-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 15%;
}

/* Legal Content */
.petalpunch-legal-content {
  padding: 80px 0;
  background-color: white;
}

.petalpunch-legal-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 60px;
}

/* Table of Contents */
.petalpunch-legal-toc {
  position: sticky;
  top: 100px;
  align-self: start;
  background-color: #f8f9fa;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.petalpunch-legal-toc-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--petalpunch-dark);
  margin-bottom: 20px;
  position: relative;
}

.petalpunch-legal-toc-title::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: var(--petalpunch-primary);
  bottom: -8px;
  left: 0;
  border-radius: 3px;
}

.petalpunch-legal-toc-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.petalpunch-legal-toc-list a {
  color: var(--petalpunch-dark);
  transition: all 0.3s ease;
  font-size: 0.95rem;
  padding-left: 10px;
  border-left: 2px solid transparent;
}

.petalpunch-legal-toc-list a:hover {
  color: var(--petalpunch-primary);
  border-left-color: var(--petalpunch-primary);
  transform: translateX(5px);
}

/* Main Content Text */
.petalpunch-legal-text {
  line-height: 1.7;
}

.petalpunch-legal-section {
  margin-bottom: 40px;
  scroll-margin-top: 100px;
}

.petalpunch-legal-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--petalpunch-dark);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.petalpunch-legal-subsection-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--petalpunch-dark);
  margin: 30px 0 15px;
}

.petalpunch-legal-list {
  margin: 15px 0;
  padding-left: 20px;
}

.petalpunch-legal-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}

.petalpunch-legal-list li::before {
  content: '•';
  position: absolute;
  left: -5px;
  color: var(--petalpunch-primary);
}

.petalpunch-legal-note {
  background-color: #f8f9fa;
  padding: 15px 20px;
  border-left: 4px solid var(--petalpunch-primary);
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
  font-style: italic;
}

.petalpunch-legal-link {
  color: var(--petalpunch-primary);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.petalpunch-legal-link:hover {
  color: var(--petalpunch-accent);
}

.petalpunch-legal-contact {
  background-color: #f8f9fa;
  padding: 25px;
  border-radius: 16px;
  margin-top: 20px;
}

.petalpunch-legal-contact p {
  margin-bottom: 10px;
}

.petalpunch-legal-contact p:last-child {
  margin-bottom: 0;
}

/* Card style for certain sections */
.petalpunch-legal-card {
  background-color: #f8f9fa;
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.petalpunch-legal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.petalpunch-legal-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--petalpunch-primary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.petalpunch-legal-card-title::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--petalpunch-accent);
  border-radius: 50%;
  margin-right: 10px;
}

.petalpunch-legal-support-org {
  margin: 10px 0 20px;
  padding-left: 20px;
}

/* Responsive styles */
@media (max-width: 992px) {
  .petalpunch-legal-container {
      grid-template-columns: 1fr;
  }
  
  .petalpunch-legal-toc {
      display: none;
  }
}

@media (max-width: 768px) {
  .petalpunch-legal-title {
      font-size: 2.5rem;
  }
  
  .petalpunch-legal-section-title {
      font-size: 1.5rem;
  }
  
  .petalpunch-legal-subsection-title {
      font-size: 1.2rem;
  }
}

/* Print styles */
@media print {
  .petalpunch-sidebar,
  .petalpunch-mobile-header,
  .petalpunch-footer,
  .petalpunch-legal-toc {
      display: none;
  }
  
  .petalpunch-legal-container {
      display: block;
      max-width: 100%;
  }
  
  .petalpunch-legal-hero {
      padding: 40px 0;
      background: none;
      color: black;
  }
  
  .petalpunch-legal-decoration {
      display: none;
  }
  
  .petalpunch-legal-title {
      font-size: 2.5rem;
      color: black;
  }
  
  .petalpunch-legal-updated {
      color: #666;
  }
  
  .petalpunch-main {
      margin-left: 0;
  }
  
  .petalpunch-legal-section {
      page-break-inside: avoid;
  }
}

/* Age Verification Popup Styles */
:root {
  --age-primary: #7F5AF0;   /* Purple */
  --age-secondary: #2CB67D; /* Green */
  --age-accent: #FF8E3C;    /* Orange */
  --age-dark: #16161A;      /* Dark */
  --age-light: #FFFFFE;     /* White */
  --age-pink: #F25F5C;      /* Pink */
  --age-blue: #247BA0;      /* Blue */
  --age-teal: #70C1B3;      /* Teal */
}

/* Main container */
.age-verification {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 22, 26, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  overflow: hidden;
}

.age-verification.active {
  opacity: 1;
  visibility: visible;
}

/* Floating particles */
.age-verification-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  animation: float 15s infinite ease-in-out;
}

.particle-1 {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at 30% 30%, var(--age-primary), transparent 70%);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.particle-2 {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 30% 30%, var(--age-secondary), transparent 70%);
  top: 70%;
  left: 5%;
  animation-delay: 1s;
}

.particle-3 {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at 30% 30%, var(--age-accent), transparent 70%);
  top: 40%;
  right: 10%;
  animation-delay: 2s;
}

.particle-4 {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at 30% 30%, var(--age-pink), transparent 70%);
  top: 75%;
  right: 20%;
  animation-delay: 3s;
}

.particle-5 {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 30% 30%, var(--age-blue), transparent 70%);
  bottom: 5%;
  right: 5%;
  animation-delay: 4s;
}

.particle-6 {
  width: 90px;
  height: 90px;
  background: radial-gradient(circle at 30% 30%, var(--age-teal), transparent 70%);
  top: 15%;
  right: 15%;
  animation-delay: 5s;
}

.particle-7 {
  width: 70px;
  height: 70px;
  background: radial-gradient(circle at 30% 30%, var(--age-primary), transparent 70%);
  bottom: 20%;
  left: 25%;
  animation-delay: 6s;
}

.particle-8 {
  width: 110px;
  height: 110px;
  background: radial-gradient(circle at 30% 30%, var(--age-secondary), transparent 70%);
  top: 30%;
  left: 20%;
  animation-delay: 7s;
}

.particle-9 {
  width: 50px;
  height: 50px;
  background: radial-gradient(circle at 30% 30%, var(--age-accent), transparent 70%);
  top: 60%;
  right: 30%;
  animation-delay: 8s;
}

.particle-10 {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at 30% 30%, var(--age-pink), transparent 70%);
  bottom: 10%;
  right: 40%;
  animation-delay: 9s;
}

@keyframes float {
  0%, 100% {
      transform: translate(0, 0) rotate(0deg);
  }
  25% {
      transform: translate(-20px, 20px) rotate(5deg);
  }
  50% {
      transform: translate(10px, 40px) rotate(10deg);
  }
  75% {
      transform: translate(20px, 20px) rotate(5deg);
  }
}

/* Content container */
.age-verification-container {
  width: 90%;
  max-width: 500px;
  position: relative;
  z-index: 1;
  transform: translateY(30px);
  opacity: 0;
  animation: popup 0.6s forwards 0.3s ease;
}

@keyframes popup {
  0% {
      transform: translateY(30px);
      opacity: 0;
  }
  100% {
      transform: translateY(0);
      opacity: 1;
  }
}

.age-verification-wrapper {
  position: relative;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transform: perspective(1000px);
  transition: transform 0.3s ease;
}

.age-verification-wrapper:hover {
  transform: perspective(1000px) translateZ(10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.age-verification-blob {
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--age-primary) 0%, var(--age-secondary) 100%);
  border-radius: 70% 30% 60% 40% / 40% 50% 50% 60%;
  top: -150px;
  right: -150px;
  z-index: -1;
  animation: blob-morph 8s infinite ease-in-out;
  opacity: 0.8;
}

@keyframes blob-morph {
  0%, 100% {
      border-radius: 70% 30% 60% 40% / 40% 50% 50% 60%;
  }
  25% {
      border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
      border-radius: 60% 40% 50% 50% / 30% 60% 40% 70%;
  }
  75% {
      border-radius: 50% 50% 70% 30% / 40% 40% 60% 50%;
  }
}

.age-verification-content {
  position: relative;
  z-index: 1;
  padding: 40px;
  text-align: center;
}

.age-verification-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
}

.age-verification-logo-text {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--age-primary) 0%, var(--age-secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 1px;
}

.age-verification-logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--age-accent);
  margin-left: 5px;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
      transform: scale(1);
      opacity: 1;
  }
  50% {
      transform: scale(1.5);
      opacity: 0.7;
  }
}

.age-verification-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--age-dark);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.age-verification-title::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 4px;
  background: linear-gradient(90deg, var(--age-accent), transparent);
  left: 25%;
  bottom: -8px;
  border-radius: 2px;
}

.age-verification-message {
  font-size: 18px;
  color: var(--age-dark);
  margin-bottom: 30px;
  line-height: 1.6;
}

.age-verification-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

.age-verification-button {
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  min-width: 140px;
}

.age-verification-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.age-verification-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.age-verification-button:hover::before {
  left: 100%;
}

.button-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.age-verification-button:hover .button-icon {
  transform: scale(1.2);
}

.yes-button {
  background: linear-gradient(135deg, var(--age-secondary) 0%, #1a9b6c 100%);
  color: white;
  box-shadow: 0 5px 15px rgba(44, 182, 125, 0.3);
}

.yes-button:hover {
  box-shadow: 0 8px 25px rgba(44, 182, 125, 0.4);
}

.no-button {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.no-button:hover {
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.age-verification-disclaimer {
  font-size: 12px;
  color: var(--age-dark);
  opacity: 0.7;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Animation for the entire modal when closing */
.age-verification.closing {
  opacity: 0;
  transform: scale(0.95);
}

/* Responsive styles */
@media (max-width: 600px) {
  .age-verification-content {
      padding: 30px 20px;
  }
  
  .age-verification-title {
      font-size: 26px;
  }
  
  .age-verification-message {
      font-size: 16px;
      margin-bottom: 20px;
  }
  
  .age-verification-options {
      flex-direction: column;
      gap: 15px;
  }
  
  .age-verification-button {
      width: 100%;
  }
}

/* 3D hover effect */
.age-verification-wrapper {
  transition: transform 0.3s ease;
  transform-style: preserve-3d;
}

.age-verification.active .age-verification-wrapper {
  animation: card-in 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes card-in {
  0% {
      opacity: 0;
      transform: perspective(1000px) rotateX(10deg) translateY(50px);
  }
  100% {
      opacity: 1;
      transform: perspective(1000px) rotateX(0) translateY(0);
  }
}

/* Prevent scrolling when modal is open */
body.age-verification-open {
  overflow: hidden;
}