:root {
  /* Caramel Color Palette */
  --caramel-glow: #7c4dff; /* новый фиолетовый */
  --sugar-crystal: #e3f2fd; /* новый голубовато-белый */
  --stress-pulse: #00695c; /* новый темно-бирюзовый */
  --form-outline: #1a237e; /* новый темно-синий */
  --precision-shadow: #424242; /* новый серый */
  --tremor-light: #f5f5f5; /* новый светлый серый */
  --cutline-accent: #ff4081; /* новый розовый */
  --pressure-dark: #311b92; /* новый глубокий фиолетовый */

  /* Additional Color Variables */
  --black: #212121; /* изменен на темно-серый */
  --white: #fafafa; /* изменен на теплый белый */
  --transparent: transparent;
  --black-10: rgba(33, 33, 33, 0.1);
  --black-15: rgba(33, 33, 33, 0.15);
  --black-20: rgba(33, 33, 33, 0.2);
  --black-30: rgba(33, 33, 33, 0.3);
  --black-40: rgba(33, 33, 33, 0.4);
  --black-70: rgba(33, 33, 33, 0.7);
  --white-10: rgba(250, 250, 250, 0.1);
  --white-20: rgba(250, 250, 250, 0.2);
  --white-40: rgba(250, 250, 250, 0.4);
  --caramel-05: rgba(124, 77, 255, 0.05);
  --caramel-20: rgba(124, 77, 255, 0.2);
  --stress-05: rgba(0, 105, 92, 0.05);
  --stress-15: rgba(0, 105, 92, 0.15);
  --stress-25: rgba(0, 105, 92, 0.25);
  --stress-30: rgba(0, 105, 92, 0.3);
  --stress-40: rgba(0, 105, 92, 0.4);
  --stress-60: rgba(0, 105, 92, 0.6);
  --cutline-10: rgba(255, 64, 129, 0.1);
  --cutline-20: rgba(255, 64, 129, 0.2);

  /* Typography Scale */
  --sugar-text: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --precision-heading: "Georgia", "Times", serif;

  /* Spacing Units */
  --needle-gap: 1rem;
  --sugar-padding: 2rem;
  --caramel-margin: 3rem;

  /* Animation Variables */
  --stress-duration: 0.3s;
  --tremor-timing: ease-in-out;
  --cutline-delay: 0.1s;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sugar-text);
  line-height: 1.6;
  color: var(--form-outline);
  background-color: var(--sugar-crystal);
  overflow-x: hidden;
}

/* Container System */
.sugar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--needle-gap);
}

.dalgona-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Typography */
.precision-title {
  font-family: var(--precision-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--stress-pulse);
  text-align: left;
  margin-bottom: var(--needle-gap);
  text-shadow: 2px 2px 4px var(--precision-shadow);
}

/* Policy page titles centered */
.policy-content .precision-title {
  text-align: center;
}

.section-title {
  font-family: var(--precision-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--form-outline);
  text-align: center;
  margin-bottom: var(--caramel-margin);
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--cutline-accent);
  border-radius: 2px;
}

/* Button Styles */
.play-button {
  background: linear-gradient(135deg, var(--caramel-glow), var(--stress-pulse));
  color: var(--tremor-light);
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: all var(--stress-duration) var(--tremor-timing);
  box-shadow: 0 4px 15px var(--stress-30);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.play-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--stress-40);
  background: linear-gradient(135deg, var(--stress-pulse), var(--caramel-glow));
}

.play-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px var(--stress-30);
}

/* Hero Play Button */
.hero-play-button-container {
  text-align: center;
  margin-top: 1.5rem;
  z-index: 3;
  position: relative;
}

.hero-play-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--caramel-glow), var(--stress-pulse));
  color: var(--tremor-light);
  text-decoration: none;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 20px;
  transition: all var(--stress-duration) var(--tremor-timing);
  box-shadow: 0 4px 15px var(--stress-40);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--white-20);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.hero-play-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: left 0.6s ease;
}

.hero-play-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px var(--stress-60);
  background: linear-gradient(135deg, var(--stress-pulse), var(--caramel-glow));
  border-color: var(--white-40);
}

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

.hero-play-button:active {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 15px var(--stress-40);
}

.button-text {
  font-weight: 700;
  text-shadow: 1px 1px 2px var(--black-30);
}

.button-icon {
  font-size: 1.1rem;
  animation: pulse 2s infinite;
}

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

/* Cookie Bar Styles */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    135deg,
    var(--sugar-crystal),
    var(--tremor-light)
  );
  border-top: 2px solid var(--caramel-glow);
  box-shadow: 0 -4px 20px var(--stress-30);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  backdrop-filter: blur(10px);
}

.cookie-bar.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
}

.cookie-text p {
  color: var(--form-outline);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cookie-accept-btn {
  background: linear-gradient(135deg, var(--caramel-glow), var(--stress-pulse));
  color: var(--tremor-light);
  border: none;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 15px;
  cursor: pointer;
  transition: all var(--stress-duration) var(--tremor-timing);
  box-shadow: 0 3px 12px rgba(139, 69, 19, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid var(--white-20);
}

.cookie-accept-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 69, 19, 0.4);
  background: linear-gradient(135deg, var(--stress-pulse), var(--caramel-glow));
}

.cookie-accept-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(139, 69, 19, 0.3);
}

/* Responsive Cookie Bar */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    text-align: center;
  }

  .cookie-text p {
    font-size: 0.85rem;
  }

  .cookie-accept-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .cookie-content {
    padding: 0.8rem;
  }

  .cookie-text p {
    font-size: 0.8rem;
  }

  .cookie-accept-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

/* Hero Section */
.sugar-pressure-hero {
  min-height: 80vh;
  padding: var(--caramel-margin) 0;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--sugar-crystal) 0%,
    var(--tremor-light) 100%
  );
  position: relative;
  overflow: hidden;
}

.sugar-pressure-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="sugar" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23d4a574" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23sugar)"/></svg>');
  opacity: 0.3;
}

.cutline-intro {
  text-align: left;
  z-index: 2;
  position: relative;
  margin-bottom: var(--caramel-margin);
}

.tremor-description {
  font-size: 1.2rem;
  color: var(--form-outline);
  margin-bottom: var(--caramel-margin);
  max-width: 600px;
  line-height: 1.8;
}

.candy-showcase {
  background: url("../img/dalgona-hero.jpg") center/cover;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--black-20);
  position: relative;
  z-index: 2;
  min-height: 300px;
}

.candy-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black-40);
  z-index: 1;
}

.showcase-content {
  display: flex;
  padding: var(--caramel-margin);
  position: relative;
  z-index: 2;
  gap: var(--caramel-margin);
}

.pressure-text {
  flex: 1;
  color: var(--tremor-light);
}

.stress-primary {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: var(--needle-gap);
  font-weight: 500;
}

.stress-secondary {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.precision-plates {
  display: flex;
  flex-direction: column;
  gap: var(--needle-gap);
  min-width: 200px;
}

.pressure-plate {
  background: var(--white-10);
  backdrop-filter: blur(10px);
  padding: 8px;
  border-radius: 10px;
  border: 1px solid var(--white-20);
  text-align: center;
}

.pressure-plate h3 {
  color: var(--caramel-glow);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.pressure-plate p {
  color: var(--tremor-light);
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.8;
}

/* Pressure Core Section */
.pressure-core {
  padding: var(--caramel-margin) 0;
  background: var(--tremor-light);
}

.pressure-master-card {
  background: white;
  border-radius: 25px;
  box-shadow: 0 15px 40px var(--black-15);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.pressure-master-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 165, 116, 0.05) 0%,
    rgba(139, 69, 19, 0.05) 100%
  );
  pointer-events: none;
}

.pressure-left-column,
.pressure-right-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.pressure-card-item {
  background: var(--tremor-light);
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--black-10);
  text-align: center;
  transition: all var(--stress-duration) var(--tremor-timing);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.pressure-card-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--caramel-glow), var(--stress-pulse));
  opacity: 0;
  transition: opacity var(--stress-duration) var(--tremor-timing);
  z-index: -1;
}

.pressure-card-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--caramel-glow);
  box-shadow: 0 15px 35px var(--stress-25);
}

.pressure-card-item:hover::before {
  opacity: 0.1;
}

.pressure-card-item h3 {
  color: var(--stress-pulse);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  transition: color var(--stress-duration) var(--tremor-timing);
}

.pressure-card-item:hover h3 {
  color: var(--form-outline);
}

.pressure-card-item p {
  color: var(--form-outline);
  line-height: 1.6;
  font-size: 0.95rem;
  transition: color var(--stress-duration) var(--tremor-timing);
}

.pressure-card-item:hover p {
  color: var(--form-outline);
}

.pressure-center-content {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}

.pressure-main-title {
  font-family: var(--precision-heading);
  font-size: 2.5rem;
  color: var(--stress-pulse);
  margin-bottom: 2rem;
  position: relative;
  text-shadow: 2px 2px 4px var(--precision-shadow);
}

.pressure-main-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--caramel-glow),
    var(--cutline-accent)
  );
  border-radius: 2px;
}

.pressure-main-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--form-outline);
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.pressure-main-text:last-child {
  margin-bottom: 0;
}

/* Icon Placeholders */
.timer-icon,
.control-icon,
.precision-icon,
.stress-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, var(--caramel-glow), var(--stress-pulse));
  border-radius: 50%;
  position: relative;
  box-shadow: 0 4px 15px var(--stress-30);
  transition: all var(--stress-duration) var(--tremor-timing);
}

.pressure-card-item:hover .timer-icon,
.pressure-card-item:hover .control-icon,
.pressure-card-item:hover .precision-icon,
.pressure-card-item:hover .stress-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px var(--stress-40);
}

.timer-icon::before,
.control-icon::before,
.precision-icon::before,
.stress-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 35px;
  height: 35px;
  background: var(--tremor-light);
  border-radius: 50%;
  transition: all var(--stress-duration) var(--tremor-timing);
}

.pressure-card-item:hover .timer-icon::before,
.pressure-card-item:hover .control-icon::before,
.pressure-card-item:hover .precision-icon::before,
.pressure-card-item:hover .stress-icon::before {
  background: var(--caramel-glow);
}

/* Cutting Guide Section */
.cutting-guide {
  padding: var(--caramel-margin) 0;
  background: var(--sugar-crystal);
}

.cutting-master-card {
  background: white;
  border-radius: 25px;
  box-shadow: 0 15px 40px var(--black-15);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.cutting-master-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 165, 116, 0.05) 0%,
    rgba(139, 69, 19, 0.05) 100%
  );
  pointer-events: none;
}

.cutting-main-title {
  font-family: var(--precision-heading);
  font-size: 2.5rem;
  color: var(--stress-pulse);
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  text-shadow: 2px 2px 4px var(--precision-shadow);
  z-index: 2;
}

.cutting-main-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--caramel-glow),
    var(--cutline-accent)
  );
  border-radius: 2px;
}

.cutting-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--form-outline);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  opacity: 0.9;
  z-index: 2;
  position: relative;
}

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

.guide-sections {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.guide-section {
  border-bottom: 2px solid var(--caramel-20);
  padding-bottom: 2rem;
  transition: all var(--stress-duration) var(--tremor-timing);
}

.guide-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.guide-section:hover {
  transform: translateX(10px);
}

.guide-title {
  font-family: var(--precision-heading);
  font-size: 1.6rem;
  color: var(--stress-pulse);
  margin-bottom: 1.5rem;
  font-weight: 600;
  position: relative;
  padding-left: 2rem;
}

.guide-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 30px;
  background: linear-gradient(
    180deg,
    var(--caramel-glow),
    var(--cutline-accent)
  );
  border-radius: 3px;
}

.guide-text {
  color: var(--form-outline);
  line-height: 1.8;
  font-size: 1.05rem;
}

.guide-text p {
  margin-bottom: 1.2rem;
}

.guide-text p:last-child {
  margin-bottom: 0;
}

.guide-text strong {
  color: var(--stress-pulse);
  font-weight: 600;
  position: relative;
}

.guide-text strong::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--caramel-glow), transparent);
  opacity: 0.6;
}

/* Enhanced list styling */
.guide-text ul,
.guide-text ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.guide-text li {
  margin-bottom: 0.8rem;
  line-height: 1.7;
  position: relative;
}

.guide-text ul li {
  list-style-type: none;
}

.guide-text ul li::before {
  content: "◆";
  color: var(--caramel-glow);
  font-weight: bold;
  position: absolute;
  left: -1.5rem;
  top: 0;
}

.guide-text ol li {
  list-style-type: decimal;
  list-style-position: outside;
}

.guide-text ol li::marker {
  color: var(--caramel-glow);
  font-weight: 600;
}

/* Player Voices Section */
.player-voices {
  padding: var(--caramel-margin) 0;
  background: var(--tremor-light);
}

.voices-master-card {
  background: white;
  border-radius: 25px;
  box-shadow: 0 15px 40px var(--black-15);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.voices-master-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 165, 116, 0.05) 0%,
    rgba(139, 69, 19, 0.05) 100%
  );
  pointer-events: none;
}

.voices-main-title {
  font-family: var(--precision-heading);
  font-size: 2.5rem;
  color: var(--stress-pulse);
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  text-shadow: 2px 2px 4px var(--precision-shadow);
  z-index: 2;
}

.voices-main-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--caramel-glow),
    var(--cutline-accent)
  );
  border-radius: 2px;
}

.voices-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--form-outline);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  opacity: 0.9;
  z-index: 2;
  position: relative;
}

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

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feedback-item {
  background: var(--tremor-light);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all var(--stress-duration) var(--tremor-timing);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.feedback-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--caramel-glow), var(--stress-pulse));
  opacity: 0;
  transition: opacity var(--stress-duration) var(--tremor-timing);
  z-index: -1;
}

.feedback-item:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--caramel-glow);
  box-shadow: 0 20px 40px rgba(139, 69, 19, 0.25);
}

.feedback-item:hover::before {
  opacity: 0.1;
}

.feedback-author {
  font-family: var(--precision-heading);
  font-size: 1.3rem;
  color: var(--stress-pulse);
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
  transition: color var(--stress-duration) var(--tremor-timing);
}

.feedback-author::before {
  content: "❝";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--caramel-glow);
  font-size: 1.5rem;
  font-weight: bold;
}

.feedback-item:hover .feedback-author {
  color: var(--form-outline);
}

.feedback-text {
  color: var(--form-outline);
  line-height: 1.7;
  font-size: 1rem;
  font-style: italic;
  position: relative;
  padding-left: 1rem;
  border-left: 3px solid transparent;
  transition: all var(--stress-duration) var(--tremor-timing);
}

.feedback-item:hover .feedback-text {
  border-left-color: var(--caramel-glow);
}

.feedback-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: -3px;
  width: 3px;
  height: 0;
  background: linear-gradient(
    180deg,
    var(--caramel-glow),
    var(--cutline-accent)
  );
  transition: height var(--stress-duration) var(--tremor-timing);
}

.feedback-item:hover .feedback-text::before {
  height: 100%;
}

/* Shape Challenges Section */
.shape-arena {
  padding: var(--caramel-margin) 0;
  background: var(--sugar-crystal);
}

.shape-master-card {
  background: white;
  border-radius: 25px;
  box-shadow: 0 15px 40px var(--black-15);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.shape-master-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 165, 116, 0.05) 0%,
    rgba(139, 69, 19, 0.05) 100%
  );
  pointer-events: none;
}

.shape-left-column,
.shape-right-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.shape-card-item {
  background: var(--tremor-light);
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all var(--stress-duration) var(--tremor-timing);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.shape-card-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--caramel-glow), var(--stress-pulse));
  opacity: 0;
  transition: opacity var(--stress-duration) var(--tremor-timing);
  z-index: -1;
}

.shape-card-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--caramel-glow);
  box-shadow: 0 15px 35px var(--stress-25);
}

.shape-card-item:hover::before {
  opacity: 0.1;
}

.shape-card-item h3 {
  color: var(--stress-pulse);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  transition: color var(--stress-duration) var(--tremor-timing);
}

.shape-card-item:hover h3 {
  color: var(--form-outline);
}

.shape-card-item p {
  color: var(--form-outline);
  line-height: 1.6;
  font-size: 0.95rem;
  transition: color var(--stress-duration) var(--tremor-timing);
}

.shape-card-item:hover p {
  color: var(--form-outline);
}

.shape-center-content {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}

.shape-main-title {
  font-family: var(--precision-heading);
  font-size: 2.5rem;
  color: var(--stress-pulse);
  margin-bottom: 2rem;
  position: relative;
  text-shadow: 2px 2px 4px var(--precision-shadow);
}

.shape-main-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--caramel-glow),
    var(--cutline-accent)
  );
  border-radius: 2px;
}

.shape-hero-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--black-20);
  position: relative;
  transition: all var(--stress-duration) var(--tremor-timing);
}

.shape-hero-image:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px var(--black-30);
}

.shape-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: all var(--stress-duration) var(--tremor-timing);
}

.shape-hero-image:hover img {
  transform: scale(1.1);
}

/* Shape Icons */
.star-icon,
.umbrella-icon,
.circle-icon,
.triangle-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, var(--caramel-glow), var(--stress-pulse));
  border-radius: 50%;
  position: relative;
  box-shadow: 0 4px 15px var(--stress-30);
  transition: all var(--stress-duration) var(--tremor-timing);
}

.shape-card-item:hover .star-icon,
.shape-card-item:hover .umbrella-icon,
.shape-card-item:hover .circle-icon,
.shape-card-item:hover .triangle-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px var(--stress-40);
}

.star-icon::before,
.umbrella-icon::before,
.circle-icon::before,
.triangle-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 35px;
  height: 35px;
  background: var(--tremor-light);
  border-radius: 50%;
  transition: all var(--stress-duration) var(--tremor-timing);
}

.shape-card-item:hover .star-icon::before,
.shape-card-item:hover .umbrella-icon::before,
.shape-card-item:hover .circle-icon::before,
.shape-card-item:hover .triangle-icon::before {
  background: var(--caramel-glow);
}

/* Tool Upgrades Section */
.tool-forge {
  padding: var(--caramel-margin) 0;
  background: var(--tremor-light);
}

.tools-master-card {
  background: white;
  border-radius: 25px;
  box-shadow: 0 15px 40px var(--black-15);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.tools-master-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 165, 116, 0.05) 0%,
    rgba(139, 69, 19, 0.05) 100%
  );
  pointer-events: none;
}

.tools-main-title {
  font-family: var(--precision-heading);
  font-size: 2.5rem;
  color: var(--stress-pulse);
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  text-shadow: 2px 2px 4px var(--precision-shadow);
  z-index: 2;
}

.tools-main-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--caramel-glow),
    var(--cutline-accent)
  );
  border-radius: 2px;
}

.tools-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--form-outline);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  opacity: 0.9;
  z-index: 2;
  position: relative;
}

.tools-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.tool-card-item {
  background: var(--tremor-light);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all var(--stress-duration) var(--tremor-timing);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.tool-card-item:hover {
  transform: translateY(-12px) scale(1.03);
  border-color: var(--caramel-glow);
  box-shadow: 0 20px 40px var(--stress-25);
}

.tool-card-item h3 {
  color: var(--stress-pulse);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
  transition: color var(--stress-duration) var(--tremor-timing);
}

.tool-card-item:hover h3 {
  color: var(--form-outline);
}

.tool-card-item p {
  color: var(--form-outline);
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  transition: color var(--stress-duration) var(--tremor-timing);
}

.tool-card-item:hover p {
  color: var(--form-outline);
}

.tool-benefit {
  background: linear-gradient(
    135deg,
    var(--caramel-glow),
    var(--cutline-accent)
  );
  color: var(--tremor-light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  transition: all var(--stress-duration) var(--tremor-timing);
  box-shadow: 0 4px 15px var(--stress-30);
}

.tool-card-item:hover .tool-benefit {
  transform: scale(1.1);
  box-shadow: 0 6px 20px var(--stress-40);
}

/* Enhanced Tool Icons */
.tool-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--caramel-glow), var(--stress-pulse));
  border-radius: 50%;
  position: relative;
  box-shadow: 0 6px 20px var(--stress-30);
  transition: all var(--stress-duration) var(--tremor-timing);
}

.tool-card-item:hover .tool-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 25px var(--stress-40);
}

.tool-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--caramel-glow);
  border-radius: 50%;
  transition: all var(--stress-duration) var(--tremor-timing);
}

.tool-card-item:hover .tool-icon::before {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .pressure-master-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .pressure-left-column,
  .pressure-right-column {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }

  .pressure-card-item {
    flex: 1;
    max-width: 280px;
  }

  .pressure-center-content {
    order: -1;
    margin-bottom: 1rem;
  }

  .pressure-main-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .pressure-master-card {
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .pressure-left-column,
  .pressure-right-column {
    flex-direction: column;
    gap: 1rem;
  }

  .pressure-card-item {
    max-width: none;
  }

  .pressure-main-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .pressure-main-text {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .showcase-content {
    flex-direction: column;
    gap: var(--sugar-padding);
  }

  .precision-plates {
    min-width: auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .pressure-plate {
    flex: 1;
    min-width: 150px;
  }

  .hero-play-button {
    padding: 10px 20px;
    font-size: 0.9rem;
    gap: 6px;
  }

  .button-text {
    font-size: 0.85rem;
  }

  .button-icon {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .pressure-master-card {
    padding: 1rem;
    gap: 1rem;
  }

  .pressure-card-item {
    padding: 1rem;
  }

  .pressure-main-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .pressure-main-text {
    font-size: 0.95rem;
  }

  .hero-play-button {
    padding: 8px 16px;
    font-size: 0.8rem;
    gap: 4px;
    letter-spacing: 0.5px;
  }

  .button-text {
    font-size: 0.75rem;
  }

  .button-icon {
    font-size: 0.75rem;
  }
}

@media (max-width: 360px) {
  .sugar-container {
    padding: 0 calc(var(--needle-gap) / 2);
  }

  .play-button {
    padding: 12px 24px;
    font-size: 1rem;
  }
}

/* Responsive Design for Cutting Guide */
@media (max-width: 1200px) {
  .cutting-master-card {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .cutting-master-card {
    padding: 2rem;
  }

  .cutting-main-title {
    font-size: 2rem;
  }

  .cutting-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .guide-sections {
    gap: 2rem;
  }

  .guide-section {
    padding-bottom: 1.5rem;
  }

  .guide-title {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
  }

  .guide-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .cutting-master-card {
    padding: 1.5rem;
  }

  .cutting-main-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .cutting-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .guide-sections {
    gap: 1.5rem;
  }

  .guide-section {
    padding-bottom: 1.2rem;
  }

  .guide-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-left: 1.2rem;
  }

  .guide-text {
    font-size: 0.95rem;
  }

  .guide-text ul,
  .guide-text ol {
    padding-left: 1.5rem;
  }
}

/* Responsive Design for Player Voices */
@media (max-width: 1200px) {
  .voices-master-card {
    padding: 2.5rem;
  }

  .feedback-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .voices-master-card {
    padding: 2rem;
  }

  .voices-main-title {
    font-size: 2rem;
  }

  .voices-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .feedback-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feedback-item {
    padding: 1.5rem;
  }

  .feedback-author {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
  }

  .feedback-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .voices-master-card {
    padding: 1.5rem;
  }

  .voices-main-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .voices-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .feedback-item {
    padding: 1.2rem;
  }

  .feedback-author {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    padding-left: 1.2rem;
  }

  .feedback-text {
    font-size: 0.9rem;
  }
}

/* Responsive Design for Shape Challenges */
@media (max-width: 1200px) {
  .shape-master-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .shape-left-column,
  .shape-right-column {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }

  .shape-card-item {
    flex: 1;
    max-width: 280px;
  }

  .shape-center-content {
    order: -1;
    margin-bottom: 1rem;
  }

  .shape-main-title {
    font-size: 2rem;
  }

  .shape-hero-image {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .shape-master-card {
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .shape-left-column,
  .shape-right-column {
    flex-direction: column;
    gap: 1rem;
  }

  .shape-card-item {
    max-width: none;
  }

  .shape-main-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .shape-hero-image {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .shape-master-card {
    padding: 1rem;
    gap: 1rem;
  }

  .shape-card-item {
    padding: 1rem;
  }

  .shape-main-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .shape-hero-image {
    border-radius: 15px;
  }
}

/* Responsive Design for Tool Upgrades */
@media (max-width: 1200px) {
  .tools-master-card {
    padding: 2.5rem;
  }

  .tools-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .tools-master-card {
    padding: 2rem;
  }

  .tools-main-title {
    font-size: 2rem;
  }

  .tools-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .tools-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 100%;
  }

  .tool-card-item {
    padding: 1.5rem;
  }

  .tool-card-item h3 {
    font-size: 1.2rem;
  }

  .tool-card-item p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .tools-master-card {
    padding: 1.5rem;
  }

  .tools-main-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .tools-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .tool-card-item {
    padding: 1.2rem;
  }

  .tool-card-item h3 {
    font-size: 1.1rem;
  }

  .tool-card-item p {
    font-size: 0.9rem;
  }

  .tool-benefit {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}
