/* ===================================
   PosePop Landing Page - Styles
   Cross-browser compatible CSS
   =================================== */

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

/* CSS Variables - Design System */
:root {
  /* Brand Colors */
  --color-primary: #ff00a1;
  --color-secondary: #7b3aec;
  --color-dark: #000000;
  --color-white: #ffffff;
  
  /* Text Colors */
  --text-muted: rgba(255, 255, 255, 0.55);
  --text-muted-dark: rgba(0, 0, 0, 0.55);
  --text-footer: rgba(255, 255, 255, 0.6);
  
  /* Gradients */
  --gradient-bg: linear-gradient(174deg, rgb(52, 4, 103) 2%, rgb(0, 0, 0) 51%, rgb(52, 4, 103) 95%);
  
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-2xl: 64px;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  
  /* Fonts */
  --font-primary: 'Inter', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Shadows */
  --shadow-card: 0px 4px 8px rgba(0, 0, 0, 0.02), 0px 6px 12px rgba(0, 0, 0, 0.03);
}

/* Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Noto+Sans+KR:wght@400;500;700;900&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--gradient-bg);
  color: var(--color-white);
  line-height: 1.45;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* ===================================
   Navigation Header
   =================================== */

.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.1); /* 10% opacity */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 0;
  transition: all 0.3s ease;
}

.nav-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
}

.nav-header__logo {
  display: flex;
  align-items: center;
}

.nav-header__logo img {
  height: 40px;
  width: auto;
}

.nav-header__menu {
  display: flex;
  gap: 32px;
  margin-left: auto; /* Push menu to the right */
}

.nav-header__menu a {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.nav-header__menu a:hover {
  color: var(--color-primary);
}

.nav-header__cta {
  padding: 10px 20px;
  font-size: 14px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.1;
  font-weight: 700;
}

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

.text-secondary {
  color: var(--color-secondary);
}

.text-muted {
  color: var(--text-muted);
}

/* ===================================
   Layout Components
   =================================== */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-2xl);
}

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

/* ===================================
   Hero Section
   =================================== */

.hero {
  position: relative;
  min-height: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 100px 120px;
  padding-top: 160px; /* Space for fixed navigation */
  overflow: hidden;
}

.hero__video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.hero__video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw; /* Full browser width */
  height: 56.25vw; /* 16:9 ratio based on width */
  min-height: 100%;
  border: none;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xl);
  max-width: 1040px;
  text-align: center;
  z-index: 1;
}

.hero__title {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -1.6px;
}

.hero__subtitle {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-primary);
}

.hero__description {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}

/* ===================================
   Buttons
   =================================== */

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  justify-content: center;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.09px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background-color: #e0008f;
  transform: translateY(-2px);
}

.btn-primary--purple {
  background-color: var(--color-secondary);
}

.btn-primary--purple:hover {
  background-color: #6b2ed3;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-secondary--purple {
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.btn-secondary--purple:hover {
  background-color: rgba(123, 58, 236, 0.1);
}

/* ===================================
   Why PosePop Section
   =================================== */

.why-section {
  padding-top: 60px;
  text-align: center;
}

.why-section__title {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -1.28px;
  margin-bottom: var(--spacing-md);
}

.why-section__subtitle {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.09px;
  color: var(--color-white);
}

/* Feature Cards (Why Section) */
.feature-cards {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  padding: 20px var(--spacing-2xl);
  max-width: 1280px;
  margin: 0 auto;
}

.feature-card {
  flex: 1;
  max-width: 388px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  align-items: center;
}

.feature-card__image {
  width: 100%;
  aspect-ratio: 362.667 / 483;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card__content {
  text-align: center;
}

.feature-card__title {
  font-size: 24px;
  font-weight: 400;
  color: var(--color-secondary);
  letter-spacing: -0.48px;
  margin-bottom: var(--spacing-xs);
}

.feature-card__text {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: -0.09px;
}

/* ===================================
   3 Steps Section
   =================================== */

.steps-section {
  padding: var(--spacing-xl) 0;
}

.steps-section__header {
  text-align: center;
  padding: 60px var(--spacing-2xl);
}

.steps-section__title {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -1.28px;
  margin-bottom: var(--spacing-md);
}

.steps-section__subtitle {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: -0.12px;
}

/* Step Cards */
.step-cards {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  padding: 0 var(--spacing-2xl) 60px;
}

.step-card {
  width: 363px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #5b21b4;
  box-shadow: var(--shadow-card);
}

.step-card__image {
  width: 100%;
  height: auto; /* Changed from fixed height to auto */
  overflow: hidden;
}

.step-card__image img {
  width: 100%;
  height: auto; /* Changed to auto to show full image */
  object-fit: contain; /* Changed from cover to contain */
}

.step-card__content {
  padding: var(--spacing-md);
}

.step-card__title {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-dark);
  letter-spacing: -0.48px;
  margin-bottom: var(--spacing-xs);
}

.step-card__text {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-muted-dark);
  letter-spacing: -0.09px;
  line-height: 1.4;
}

/* ===================================
   Your Stage Section
   =================================== */

.stage-section {
  display: flex;
  gap: var(--spacing-2xl);
  align-items: center;
  justify-content: center;
  padding: 0 var(--spacing-2xl);
  max-width: 1280px;
  margin: 0 auto;
}

.stage-section__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  padding: 40px 0 44px;
}

.stage-section__title {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -1.12px;
}

.stage-section__description {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: -0.12px;
  max-width: 633px;
}

.stage-section__image {
  width: 418px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-2xl) 0;
}

.stage-section__image img {
  max-width: 50vw;
  height: auto;
  object-fit: contain;
  z-index: -10;
}

/* ===================================
   YouTube Section
   =================================== */

.youtube-section {
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw; /* Force full viewport width */
  margin-left: calc(-50vw + 50%); /* Center trick for full width */
}

.youtube-section__container {
  width: 100vw; /* Force full viewport width */
}

.youtube-section__video {
  position: relative;
  width: 100%;
  padding-bottom: 37.5%;
}

.youtube-section__video iframe {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1280px;
  height: 100%;
  border: none;
  border-radius: var(--radius-lg);
}

/* ===================================
   Partners Section
   =================================== */

.partners-section {
  padding: 20px var(--spacing-2xl);

}

.partners-section__logos {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* ===================================
   Footer
   =================================== */

.footer {
  background: var(--color-dark);
  padding: 60px 120px;
}

.footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto var(--spacing-lg);
  padding: 10px;
}

.footer__logo {
  width: 201px;
  height: 91px;
}

.footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer__nav {
  display: flex;
  gap: var(--spacing-xs);
  font-size: 16px;
  color: var(--text-footer);
  letter-spacing: -0.08px;
}

.footer__nav a:hover {
  color: var(--color-white);
}

.footer__info {
  max-width: 1148px;
  margin: 0 auto;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: -0.08px;
  line-height: 1.45;
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1280px) {
  .container {
    padding: 0 var(--spacing-lg);
  }
  
  .hero {
    padding: 60px var(--spacing-lg);
  }
  
  .hero__title {
    font-size: 48px;
  }
  
  .why-section__title,
  .steps-section__title {
    font-size: 48px;
  }
  
  .stage-section__title {
    font-size: 42px;
  }
  
  .step-cards {
    flex-wrap: wrap;
  }
  
  .step-card {
    width: 100%;
    max-width: 363px;
  }
  
  .step-card__image {
    height: auto; /* Show full image */
  }
  .youtube-section__video {
  padding-bottom: 55%;
}
}

@media (max-width: 1024px) {
  .feature-cards {
    flex-wrap: wrap;
    padding: 20px var(--spacing-lg);
  }
  
  .stage-section {
    flex-direction: column;
    text-align: center;
  }
  
  .stage-section__content {
    align-items: center;
  }
  
  .stage-section__description {
    text-align: center;
  }
  
  .stage-section__image {
    width: 100%;
    height: auto;
  }
  
  .buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 80px 0 40px 0; /* Top padding for nav, no horizontal padding */
    flex-direction: column;
    justify-content: flex-start;
  }
  
  .hero__video-bg {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100vw;
    height: auto;
    aspect-ratio: 14/9;
    z-index: 1;
  }
  
  .hero__video-bg iframe {
    position: absolute;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    height: 100%;
  }
  
  .hero__content {
    position: relative;
    padding: var(--spacing-lg);
    z-index: 2;
  }
  
  .hero__title {
    font-size: 54px; /* 36px * 1.5 */
  }
  
  .hero__subtitle {
    font-size: 24px;
  }
  
  .hero__description {
    font-size: 16px;
  }
  
  /* Reduce section spacing on mobile */
  .section,
  .why-section,
  .steps-section,
  .stage-section,
  .youtube-section,
  .registration-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
  .steps-section__header {
    padding: 20px var(--spacing-sm);
  }
  
  .step-cards {
    padding: 0 var(--spacing-sm) 30px;
  }
  
  .why-section__title,
  .steps-section__title {
    font-size: 54px; /* 36px * 1.5 */
  }
  
  .stage-section__title {
    font-size: 48px; /* 32px * 1.5 */
  }
  
  .stage-section__description {
    font-size: 18px;
  }
  
  .stage-section__image {
    display: none; /* Hide model image on mobile */
  }
  
  .feature-card {
    max-width: 100%;
  }
  
  .step-card {
    max-width: 100%;
  }
  
  .step-card__image {
    height:400px; 
    /*height: auto;  Show full image on mobile */
  }
  
  .footer {
    padding: 40px var(--spacing-sm);
  }
  
  .footer__content {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }
  
  .footer__nav {
    justify-content: center;
  }
  
  .footer__info {
    text-align: center;
  }
  
  .registration-section__title {
    font-size: 42px; /* Increased for mobile */
  }
  
  .youtube-section {
    padding: 30px 0; /* Reduced for mobile */
  }

  .youtube-section__video {
  padding-bottom: 58%;
}
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 28px;
  }
  
  .hero__subtitle {
    font-size: 20px;
  }
  
  .btn {
    font-size: 16px;
    padding: 10px 14px;
  }
  
  .buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
}

/* ===================================
   Cross-browser Fixes
   =================================== */

/* Safari flexbox fix */
.feature-cards,
.step-cards {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* IE11 and older flexbox fixes (for compatibility) */
@supports not (display: grid) {
  .feature-cards,
  .step-cards {
    display: -webkit-box;
    display: -ms-flexbox;
  }
}

/* ===================================
   Registration Form Section
   =================================== */

.registration-section {
  padding: 60px 0;
}

.registration-section__header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.registration-section__title {
  font-size: 65px;
  font-weight: 700;
  letter-spacing: -0.96px;
  margin-bottom: var(--spacing-sm);
}

.registration-section__subtitle {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-muted);
}

.registration-form {
  max-width: 600px;
  margin: 0 auto;
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

.form-label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: var(--spacing-xs);
  color: var(--color-white);
}

.required {
  color: var(--color-primary);
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  font-family: var(--font-primary);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  outline: none;
  transition: all 0.3s ease;
}

/* Phone Input Group */
.phone-input-group {
  display: flex;
  gap: 8px;
}

.form-hint {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
  font-style: italic;
}

.form-select {
  padding: 14px 16px;
  font-size: 16px;
  font-family: var(--font-primary);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  outline: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.form-select:focus {
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 0, 161, 0.2);
}

.form-select option {
  background: #1a1a2e;
  color: var(--color-white);
}

.country-code-select {
  width: 120px;
  flex-shrink: 0;
}

.phone-number-input {
  flex: 1;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-input:focus {
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 0, 161, 0.2);
}

/* Checkbox Group */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 16px;
  color: var(--color-white);
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.checkbox-label:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-primary);
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '✓';
  color: var(--color-white);
  font-size: 12px;
  font-weight: bold;
}

.checkbox-label:has(input:checked) {
  background: rgba(255, 0, 161, 0.15);
  border-color: var(--color-primary);
}

/* Submit Button */
.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 18px;
  font-weight: 600;
  margin-top: var(--spacing-sm);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 0, 161, 0.4);
}

/* Form Responsive */
@media (max-width: 768px) {
  .registration-section {
  padding: 20px 0;
}
  .registration-section__title {
    font-size: 54px;
  }
  
  .registration-form {
    padding: var(--spacing-md);
  }
  
  .checkbox-group {
    flex-direction: column;
  }
  
  .checkbox-label {
    width: 100%;
  }

  /* Phone input two lines on mobile */
  .phone-input-group {
    flex-direction: column;
    gap: 8px;
  }

  .country-code-select {
    width: 100%;
  }

  .phone-number-input {
    width: 100%;
  }

  /* Navigation padding adjustment */
  .nav-header__container {
    padding: 0 10px;
  }
}

/* ===================================
   Modal Styles
   =================================== */

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  overflow-y: auto;
  padding: 40px 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.active {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 1;
}

.modal__content {
  position: relative;
  background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
  border: 1px solid rgba(123, 58, 236, 0.3);
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--color-white);
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1;
}

.modal__close:hover {
  background: var(--color-primary);
  transform: rotate(90deg);
}

.modal__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--spacing-lg);
  padding-right: 40px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal__body {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.modal__body h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
}

.modal__body h3:first-child {
  margin-top: 0;
}

.modal__body p {
  font-size: 15px;
  margin-bottom: var(--spacing-xs);
  color: rgba(255, 255, 255, 0.75);
}

.modal__date {
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-style: italic;
  color: rgba(255, 255, 255, 0.5) !important;
}

/* Modal Scrollbar */
.modal__content::-webkit-scrollbar {
  width: 8px;
}

.modal__content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.modal__content::-webkit-scrollbar-thumb {
  background: rgba(123, 58, 236, 0.5);
  border-radius: 4px;
}

.modal__content::-webkit-scrollbar-thumb:hover {
  background: var(--color-secondary);
}

/* Modal Responsive */
@media (max-width: 768px) {
  .modal {
    padding: 20px 16px;
  }
  
  .modal__content {
    padding: 24px;
    max-height: 90vh;
  }
  
  .modal__title {
    font-size: 22px;
  }
  
  .modal__body h3 {
    font-size: 16px;
  }
  
  .modal__body p {
    font-size: 14px;
  }
}

