@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700&family=Poppins:wght@400;500;600;700;800&family=Quicksand:wght@500;600;700;800&display=swap');

/* CSS Variables for design tokens */
:root {
  --primary-teal: #2BB3A3;
  --primary-teal-dark: #228f82;
  --primary-orange: #FCA04C;
  --primary-pink: #F26B6B;
  --accent-purple: #6C5CE7;
  --accent-yellow: #FFD93D;
  --white: #FFFFFF;
  --bg-off-white: #FDFBEA;
  --bg-light-beige: #FEFCF5;
  --text-dark: #1A1A2E;
  --text-body: #5A5A7A;
  --text-secondary: #8F8FA6;
  
  --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-teal: 0 4px 8px rgba(43, 179, 163, 0.25);
  --shadow-teal-hover: 0 6px 12px rgba(43, 179, 163, 0.4);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-circle: 50%;
  --radius-pill: 50px;

  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 80px;

  --font-primary: 'Quicksand', 'Nunito', 'Poppins', sans-serif;
}

/* Global Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-light-beige);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* Typography styles */
h1, h2, h3, h4 {
  font-family: 'Poppins', var(--font-primary);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

h2 {
  font-size: 34px;
  line-height: 1.3;
  margin-bottom: var(--space-md);
}

h3 {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

h4 {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

p {
  margin-bottom: var(--space-md);
}

.text-small {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.text-caption {
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Multi-color head text custom utilities */
.text-primary-color {
  color: var(--primary-teal);
}
.text-secondary-color {
  color: var(--primary-orange);
}
.text-tertiary-color {
  color: var(--primary-pink);
}
.text-accent-color {
  color: var(--accent-purple);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-3xl) 0;
}

.section-alt {
  background-color: var(--bg-off-white);
}

.flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

/* Navbar Component */
.navbar {
  background-color: var(--white);
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.logo-text-accent {
  color: var(--primary-teal);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  padding: var(--space-xs) 0;
  border-bottom: 2px solid transparent;
}

.nav-link:hover {
  color: var(--primary-teal);
}

.nav-link.active {
  color: var(--primary-teal);
  border-bottom: 2px solid var(--primary-teal);
}

.navbar-cta {
  display: flex;
  align-items: center;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
}

/* Mobile Menu Drawer */
.mobile-nav {
  display: none;
  background-color: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  padding: var(--space-md);
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 99;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mobile-nav-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  padding: var(--space-xs) 0;
}

.mobile-nav-link.active {
  color: var(--primary-teal);
}

/* Hero Section */
.hero {
  background-color: var(--bg-off-white);
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero-text {
  max-width: 650px;
}

.hero-subtext {
  font-size: 18px;
  margin-bottom: var(--space-xl);
  color: var(--text-body);
}

.hero-badge {
  display: inline-block;
  background-color: rgba(43, 179, 163, 0.1);
  color: var(--primary-teal);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
}

.hero-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  object-fit: cover;
}

/* Search Filter Component */
.search-filter {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-md);
  padding: 12px var(--space-lg);
  background-color: var(--white);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-medium);
  margin-top: var(--space-xl);
  max-width: 600px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.filter-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.filter-input {
  border: none;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  background: transparent;
  outline: none;
  cursor: pointer;
  width: 100%;
}

.search-divider {
  width: 1px;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.08);
}

/* Stats Grid Component */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.stat-pill {
  display: flex;
  flex-direction: column;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-pill);
  color: var(--text-dark);
  font-weight: 700;
  box-shadow: var(--shadow-light);
  min-width: 140px;
}

.stat-pill.teal { background-color: var(--primary-teal); color: var(--white); }
.stat-pill.pink { background-color: var(--primary-pink); color: var(--white); }
.stat-pill.orange { background-color: var(--primary-orange); color: var(--white); }
.stat-pill.purple { background-color: var(--accent-purple); color: var(--white); }

.stat-number {
  font-size: 22px;
  line-height: 1.1;
  font-family: 'Poppins', sans-serif;
}

.stat-desc {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.9;
}

/* Feature Card */
.feature-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
  transition: all 0.3s ease-in-out;
  border-bottom: 4px solid transparent;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-bottom: 4px solid var(--primary-teal);
}

.feature-icon-wrapper {
  background-color: var(--bg-off-white);
  padding: var(--space-md);
  border-radius: var(--radius-circle);
  color: var(--primary-teal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon {
  width: 32px;
  height: 32px;
}

/* Class / Game Review Card */
.class-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  padding: 0 0 var(--space-lg) 0;
  position: relative;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.class-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(43, 179, 163, 0.15);
}

.class-card-image-container {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.class-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.class-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--primary-teal);
  color: var(--white);
  padding: 6px var(--space-md);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  transition: background-color 0.3s ease;
}

.class-card:hover .class-badge {
  background-color: var(--primary-pink);
}

.class-content {
  padding: var(--space-md) var(--space-lg) 0 var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.class-details {
  list-style: none;
  margin: var(--space-md) 0;
}

.class-details-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: var(--space-xs);
}

.class-details-icon {
  width: 16px;
  height: 16px;
  color: var(--primary-teal);
  flex-shrink: 0;
}

.class-card-cta {
  align-self: flex-start;
  margin-top: auto;
  padding-top: var(--space-sm);
}

/* Testimonial Card */
.testimonial-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  box-shadow: var(--shadow-light);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  position: relative;
}

.quote-icon {
  width: 32px;
  height: 32px;
  color: var(--primary-pink);
  opacity: 0.3;
}

.testimonial-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-body);
  font-style: italic;
}

.rating-stars {
  display: flex;
  gap: 4px;
  color: var(--accent-yellow);
}

.star-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.author-info {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.author-details {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

.author-title {
  font-size: 13px;
  color: var(--text-secondary);
}

/* FAQ Accordion Component */
.faq-accordion {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: var(--space-md);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-accordion:hover {
  background-color: var(--bg-off-white);
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question {
  font-size: 18px;
  color: var(--text-dark);
  font-weight: 600;
}

.faq-indicator {
  width: 20px;
  height: 20px;
  color: var(--text-secondary);
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  margin-top: var(--space-md);
  color: var(--text-body);
  border-top: 1px dashed rgba(0, 0, 0, 0.05);
  padding-top: var(--space-md);
}

/* Active FAQ Accordion States */
.faq-accordion.active {
  background-color: var(--bg-off-white);
}

.faq-accordion.active .faq-question {
  color: var(--primary-teal);
}

.faq-accordion.active .faq-indicator {
  transform: rotate(180deg);
  color: var(--primary-teal);
}

.faq-accordion.active .faq-answer {
  display: block;
}

/* Interactive Grid Game Layout for 2 Columns Stack */
.game-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-teal);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}

.btn-primary:hover {
  background-color: var(--primary-teal-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal-hover);
}

.btn-primary:focus {
  outline: 2px solid var(--primary-teal);
  outline-offset: 3px;
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-teal);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-teal);
  border: 1px solid var(--primary-teal);
}

.btn-secondary:hover {
  background-color: var(--primary-teal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

/* Footer Section */
.footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 60px 0 20px 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.footer-logo-accent {
  color: var(--primary-teal);
}

.footer-description {
  color: var(--text-secondary);
  font-size: 14px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: var(--space-sm);
}

.social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-circle);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.social-icon-btn:hover {
  color: var(--primary-pink);
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.social-svg {
  width: 20px;
  height: 20px;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-link {
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-link:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-2xl);
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-copyright {
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-lg);
}

/* Modal component */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background-color: rgba(26, 26, 46, 0.8);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.modal-content {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-medium);
  position: relative;
  display: flex;
  flex-direction: column;
}

.modal-image-container {
  width: 100%;
  height: 300px;
  position: relative;
}

.modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: rgba(26, 26, 46, 0.6);
  border: none;
  border-radius: var(--radius-circle);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 10;
}

.modal-close-btn:hover {
  background-color: rgba(26, 26, 46, 0.9);
}

.modal-close-icon {
  width: 20px;
  height: 20px;
}

.modal-body {
  padding: var(--space-xl);
}

.modal-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.modal-badge {
  background-color: rgba(43, 179, 163, 0.1);
  color: var(--primary-teal);
  padding: 6px var(--space-md);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
}

.modal-platform {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 600;
}

.modal-title {
  font-size: 28px;
  margin-bottom: var(--space-sm);
}

.modal-rating-row {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.modal-rating-val {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-teal);
}

.modal-text {
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.7;
}

/* Contact page custom layouts */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-3xl);
}

.contact-form-card {
  background-color: var(--white);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-light);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
}

.form-control {
  width: 100%;
  padding: 12px var(--space-md);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 15px;
  color: var(--text-dark);
  background-color: var(--bg-light-beige);
  outline: none;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-teal);
}

textarea.form-control {
  resize: vertical;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-info-icon-wrapper {
  background-color: rgba(43, 179, 163, 0.1);
  color: var(--primary-teal);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon {
  width: 24px;
  height: 24px;
}

.contact-info-content {
  display: flex;
  flex-direction: column;
}

.contact-info-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.contact-info-desc {
  font-size: 15px;
  color: var(--text-body);
}

.contact-map-placeholder {
  margin-top: var(--space-2xl);
  background-color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(43, 179, 163, 0.15);
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-light);
}

/* Privacy Page specific */
.privacy-container {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-section-item {
  margin-bottom: var(--space-2xl);
}

.privacy-number-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: rgba(43, 179, 163, 0.1);
  color: var(--primary-teal);
  border-radius: var(--radius-sm);
  font-weight: 700;
  margin-right: var(--space-sm);
}

.privacy-section-title {
  display: flex;
  align-items: center;
  font-size: 22px;
  margin-bottom: var(--space-md);
}

/* Headline details for standard pages */
.page-header {
  background-color: var(--bg-off-white);
  padding: var(--space-3xl) 0 var(--space-xl) 0;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .hero-image {
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  .nav-menu, .navbar-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .game-reviews-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .search-filter {
    flex-direction: column;
    border-radius: var(--radius-md);
    align-items: stretch;
  }

  .search-divider {
    display: none;
  }

  .stats-row {
    justify-content: center;
  }
}

/* Helper utilities to replace inline styles */
.text-center {
  text-align: center;
}

.align-items-center {
  align-items: center;
}

.align-self-start {
  align-self: flex-start;
}

.gap-3xl {
  gap: var(--space-3xl);
}

.gap-xl {
  gap: var(--space-xl);
}

.gap-md {
  gap: var(--space-md);
}

.margin-bottom-xl {
  margin-top: 0;
  margin-bottom: var(--space-xl);
}

.margin-bottom-2xl {
  margin-top: 0;
  margin-bottom: var(--space-2xl);
}

.margin-top-sm {
  margin-top: var(--space-sm);
}

.margin-top-md {
  margin-top: var(--space-md);
}

.margin-top-2xl {
  margin-top: var(--space-2xl);
}

.margin-top-3xl {
  margin-top: var(--space-3xl);
}

.border-radius-lg {
  border-radius: var(--radius-lg);
}

.border-radius-md {
  border-radius: var(--radius-md);
}

.cursor-default {
  cursor: default;
}

.height-320 {
  height: 320px;
}

.width-36-height-36 {
  width: 36px;
  height: 36px;
}

.font-size-24 {
  font-size: 24px;
}

.max-width-300 {
  max-width: 300px;
}

.max-width-600 {
  max-width: 600px;
}

.max-width-800 {
  max-width: 800px;
}

.margin-auto-horizontal {
  margin-left: auto;
  margin-right: auto;
}

/* Badge colors */
.bg-badge-pink-light {
  background-color: rgba(242, 107, 107, 0.1);
  color: var(--primary-pink);
}

.bg-badge-teal-light {
  background-color: rgba(43, 179, 163, 0.1);
  color: var(--primary-teal);
}

.bg-badge-orange-light {
  background-color: rgba(252, 160, 76, 0.1);
  color: var(--primary-orange);
}

.bg-badge-purple-light {
  background-color: rgba(108, 92, 231, 0.1);
  color: var(--accent-purple);
}

.bg-badge-yellow-light {
  background-color: rgba(255, 217, 61, 0.15);
  color: var(--accent-yellow);
}

.bg-teal {
  background-color: var(--primary-teal);
}

.bg-orange {
  background-color: var(--primary-orange);
}

.bg-purple {
  background-color: var(--accent-purple);
}

/* Star rating colors */
.star-active {
  color: var(--accent-yellow) !important;
}

.star-inactive {
  color: var(--text-secondary) !important;
}

