/* ============================================
   COLOR VARIABLES
   ============================================ */
:root {
  /* Main colors */
  --color-primary: #ff1a6c;
  --color-secondary: #ff8c1a;
  --color-accent: #c8ff00;
  --color-orange: #ff8c1a;
  
  /* Background colors */
  --color-background: #fafafa;
  --color-dark-bg: #1a1a1a;
  --color-dark-subtle: #262626;
  
  /* Text colors */
  --color-text: #141414;
  --color-text-muted: #737373;
  --color-text-light: #fafafa;
  
  /* Borders */
  --color-border: #e5e5e5;
  --color-border-dark: rgba(255, 255, 255, 0.2);
  
  /* Fonts */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  
  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET AND BASE
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
}

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

/* Skip to content link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-orange);
  color: white;
  padding: 8px;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* ============================================
   LIGHTBOX MODAL
   ============================================ */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--color-orange);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}

.lightbox-close:hover {
  background: #e67e00;
  transform: scale(1.1);
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease-out;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-caption {
  color: var(--color-text-light);
  font-size: 1rem;
  margin-top: var(--spacing-md);
  text-align: center;
}

/* ============================================
   AGE VERIFICATION MODAL
   ============================================ */
.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
}

.age-modal.hidden {
  display: none !important;
}

.age-modal-content {
  background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
  border: 2px solid var(--color-orange);
  border-radius: 1.5rem;
  padding: var(--spacing-xl);
  max-width: 500px;
  width: 100%;
  text-align: center;
  animation: modalAppear 0.4s ease-out;
}

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

.age-modal-icon {
  font-size: 4rem;
  color: var(--color-orange);
  margin-bottom: var(--spacing-md);
}

.age-modal-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-sm);
}

.age-modal-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-sm);
  font-size: 1rem;
}

.age-modal-question {
  font-size: 1.125rem !important;
  font-weight: 600;
  color: var(--color-text-light) !important;
  margin-top: var(--spacing-md) !important;
}

.age-modal-buttons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  margin: var(--spacing-lg) 0;
  flex-wrap: wrap;
}

.btn-age {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-age-yes {
  background-color: var(--color-orange);
  color: white;
}

.btn-age-yes:hover {
  background-color: #e67e00;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 140, 26, 0.4);
}

.btn-age-no {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-age-no:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.age-modal-disclaimer {
  font-size: 0.75rem !important;
  color: rgba(255, 255, 255, 0.5) !important;
  margin-top: var(--spacing-sm);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-orange);
  padding: 0.75rem 1.5rem;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-text);
  padding: 0.25rem;
  border-radius: 9999px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: 9999px;
  transition: var(--transition);
  border: 2px solid transparent;
  background: transparent;
  cursor: pointer;
}

.nav-link:hover {
  color: var(--color-text-light);
}

.nav-link.active {
  color: var(--color-text-light);
  border-color: rgba(255, 255, 255, 0.3);
}

.nav-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-text-light);
  border-radius: 50%;
}

/* ============================================
   PAGES
   ============================================ */
.page {
  display: none;
  flex: 1;
}

.page.active {
  display: block;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 70vh;
  background: linear-gradient(135deg, var(--color-background) 0%, #f5f5f5 100%);
  overflow: hidden;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--spacing-xl) var(--spacing-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.hero-content {
  animation: fadeInUp 0.6s ease-out;
}

.hero-title-wrapper {
  position: relative;
  padding-left: 2rem;
  margin-bottom: var(--spacing-md);
}

.decorative-lines {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.decorative-lines .line {
  width: 4px;
  height: 8px;
  background-color: rgba(20, 20, 20, 0.8);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 0.95;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.hero-title span {
  display: block;
}

.hero-description {
  color: var(--color-text-muted);
  font-size: 1rem;
  max-width: 500px;
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background-color: var(--color-text);
  color: var(--color-text-light);
  border: none;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-hero:hover {
  background-color: rgba(20, 20, 20, 0.9);
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero i {
  font-size: 1rem;
}

/* Hero Image */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInRight 0.6s ease-out;
}

.hero-image img {
  max-width: 100%;
  max-height: 600px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
  animation: float 3s ease-in-out infinite;
}

/* Hero Carousel */
.hero-carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: slideInRight 0.6s ease-out;
}

.carousel-wrapper-hero {
  padding: 0;
}

/* ============================================
   GALLERY CAROUSEL SECTION
   ============================================ */
.gallery-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: var(--spacing-2xl) var(--spacing-md);
  overflow: hidden;
}

.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.gallery-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-text-light);
  margin-bottom: var(--spacing-xs);
}

.gallery-subtitle {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-bottom: var(--spacing-xl);
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  padding: var(--spacing-lg) 0;
}

.carousel-arrow {
  position: absolute;
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-orange);
  border: none;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.carousel-arrow:hover {
  background: #e67e00;
  transform: scale(1.1);
}

.carousel-arrow-left {
  left: 5%;
}

.carousel-arrow-right {
  right: 5%;
}

.carousel-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  perspective: 1000px;
  width: 100%;
  max-width: 900px;
}

.carousel-item {
  flex-shrink: 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease, opacity 0.4s ease, width 0.4s ease, height 0.4s ease;
  cursor: pointer;
  position: relative;
  will-change: transform, opacity;
}

.carousel-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.carousel-item-overlay i {
  color: white;
  font-size: 2rem;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.carousel-item:hover .carousel-item-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.carousel-item:hover .carousel-item-overlay i {
  opacity: 1;
  transform: scale(1);
}

.carousel-item-center {
  width: 350px;
  height: 350px;
  z-index: 3;
  transform: scale(1);
}

.carousel-item-left {
  width: 250px;
  height: 250px;
  z-index: 2;
  transform: scale(0.85) translateX(20px) rotateY(10deg);
  opacity: 0.7;
}

.carousel-item-right {
  width: 250px;
  height: 250px;
  z-index: 2;
  transform: scale(0.85) translateX(-20px) rotateY(-10deg);
  opacity: 0.7;
}

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

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-lg);
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--color-orange);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-indicator:hover {
  background: rgba(255, 140, 26, 0.5);
}

.carousel-indicator.active {
  background: var(--color-orange);
}

/* ============================================
   BOTTOM SECTION
   ============================================ */
.bottom-section {
  background-color: var(--color-dark-bg);
  padding: var(--spacing-xl) var(--spacing-md);
  min-height: 50px;
}

.bottom-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* ============================================
   STORE PAGE
   ============================================ */
.store-page {
  min-height: calc(100vh - 60px);
  padding: var(--spacing-xl) var(--spacing-md);
  background: linear-gradient(135deg, var(--color-background) 0%, #f0f0f0 100%);
}

.store-container {
  max-width: 1200px;
  margin: 0 auto;
}

.store-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-text);
  margin-bottom: var(--spacing-sm);
  text-align: center;
}

.store-subtitle {
  color: var(--color-text-muted);
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--spacing-md);
  line-height: 1.7;
}

.btn-store-patreon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: fit-content;
  margin: 0 auto var(--spacing-xl);
  padding: 0.875rem 1.5rem;
  background-color: #FF424D;
  color: white;
  text-decoration: none;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-store-patreon:hover {
  background-color: #e63946;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 66, 77, 0.4);
}

/* Store Product Grid - 4 columns */
.store-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}

.store-product {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.store-product:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.store-product:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: var(--spacing-md);
}

.product-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-text);
  margin-bottom: var(--spacing-xs);
}

.product-description {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-bottom: var(--spacing-sm);
  line-height: 1.5;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-orange);
  margin-bottom: var(--spacing-sm);
}

.btn-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: var(--color-orange);
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.btn-buy:hover {
  background-color: #e67e00;
  transform: scale(1.02);
}

/* Purchase Modal (Custom iframe modal) */
.purchase-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.purchase-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}

.purchase-modal-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 90vh;
  max-height: 700px;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 100px rgba(0, 0, 0, 0.5);
  animation: modalSlideIn 0.3s ease-out;
}

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

.purchase-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-dark-bg);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 10;
  transition: var(--transition);
}

.purchase-modal-close:hover {
  background-color: var(--color-orange);
  transform: scale(1.1);
}

.purchase-modal-content {
  width: 100%;
  height: 100%;
}

.purchase-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Mobile adjustments for purchase modal */
@media (max-width: 768px) {
  .purchase-modal {
    padding: 0;
  }
  
  .purchase-modal-container {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    border-radius: 0;
  }
  
  .purchase-modal-close {
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }
}

/* Store responsive */
@media (max-width: 1024px) {
  .store-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .store-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }
  
  .product-title {
    font-size: 1rem;
  }
  
  .product-price {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .store-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   COMMISSION PAGE - FORM
   ============================================ */
.commission-page {
  min-height: calc(100vh - 60px);
  padding: var(--spacing-xl) var(--spacing-md);
  background: linear-gradient(135deg, var(--color-background) 0%, #f0f0f0 100%);
}

.commission-container {
  max-width: 700px;
  margin: 0 auto;
}

.commission-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-text);
  margin-bottom: var(--spacing-xs);
  text-align: center;
}

.commission-subtitle {
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
  margin-bottom: var(--spacing-xl);
}

.pricing-card {
  background: linear-gradient(135deg, var(--color-dark-bg) 0%, #2a2a2a 100%);
  border-radius: 1rem;
  padding: var(--spacing-md) var(--spacing-lg);
  text-align: center;
  border: 2px solid var(--color-orange);
  box-shadow: 0 10px 40px rgba(255, 140, 26, 0.2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm) var(--spacing-lg);
}

.pricing-icon {
  width: 50px;
  height: 50px;
  background: var(--color-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-icon i {
  font-size: 1.5rem;
  color: white;
}

.pricing-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin: 0;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.pricing-amount .price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-orange);
  line-height: 1;
}

.pricing-amount .price-unit {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.pricing-discount {
  background: rgba(255, 66, 77, 0.15);
  border: 1px solid rgba(255, 66, 77, 0.3);
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: #ff424d;
  font-size: 0.8rem;
}

.pricing-discount i {
  font-size: 1rem;
}

.btn-pricing-patreon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background-color: #FF424D;
  color: white;
  text-decoration: none;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-pricing-patreon:hover {
  background-color: #e63946;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 66, 77, 0.4);
}

.commission-form {
  background: white;
  padding: var(--spacing-xl);
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Commission Type Buttons */
.commission-type-buttons {
  display: flex;
  gap: var(--spacing-sm);
}

.btn-type {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border: 2px solid var(--color-border);
  border-radius: 0.5rem;
  background: var(--color-background);
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-type:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.btn-type.active {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: white;
}

.btn-type i {
  font-size: 1.25rem;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--spacing-xs);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--color-background);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(255, 140, 26, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.reference-note {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  padding: var(--spacing-md);
  background: rgba(255, 140, 26, 0.1);
  border: 1px solid rgba(255, 140, 26, 0.3);
  border-radius: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.reference-note i {
  color: var(--color-orange);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.btn-submit {
  width: 100%;
  margin-top: var(--spacing-md);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.btn-submit:disabled:hover {
  transform: none;
  box-shadow: none;
}

/* Success message */
.success-message {
  text-align: center;
  padding: var(--spacing-xl);
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.success-message i {
  font-size: 5rem;
  color: #22c55e;
  margin-bottom: var(--spacing-md);
}

.success-message h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-text);
  margin-bottom: var(--spacing-xs);
}

.success-message p {
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-lg);
}

/* ============================================
   APP PAGE - FULL ORANGE BACKGROUND
   ============================================ */
.app-page,
.info-page {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xl) var(--spacing-md);
  background: linear-gradient(135deg, var(--color-background) 0%, #f0f0f0 100%);
}

.app-page-orange {
  background: linear-gradient(135deg, var(--color-orange) 0%, #e67e00 100%);
}

.app-page-orange .app-title,
.app-page-orange .app-desc {
  color: white;
}

.app-page-orange .app-icon {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.app-container,
.info-container {
  text-align: center;
  max-width: 600px;
}

.app-icon,
.info-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-primary) 100%);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
  box-shadow: 0 10px 30px rgba(255, 140, 26, 0.3);
}

.app-icon i,
.info-icon i {
  font-size: 3rem;
  color: white;
}

/* Custom logos for App and Info pages */
.app-logo,
.info-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-logo {
  width: 360px;
  height: 360px;
}

.app-logo img,
.info-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.app-title,
.info-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-text);
  margin-bottom: var(--spacing-sm);
}

.app-desc,
.info-desc {
  color: var(--color-text-muted);
  font-size: 1.125rem;
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
}

.btn-download {
  background-color: white;
  color: var(--color-orange);
  margin-bottom: var(--spacing-sm);
  margin-right: var(--spacing-sm);
}

.btn-download:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #e67e00;
}

.btn-download-dark {
  background-color: var(--color-orange);
  color: white;
  margin-bottom: var(--spacing-sm);
  margin-right: var(--spacing-sm);
}

.btn-download-dark:hover {
  background-color: #e67e00;
}

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

.app-page-orange .btn-back {
  border-color: white;
  color: white;
}

.btn-back:hover {
  background-color: var(--color-text);
  color: white;
}

.app-page-orange .btn-back:hover {
  background-color: white;
  color: var(--color-orange);
}

/* Social Links */
.social-links {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}

.social-patreon {
  background-color: #FF424D;
  color: white;
}

.social-patreon:hover {
  background-color: #e63946;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 66, 77, 0.4);
}

.social-twitter {
  background-color: #000000;
  color: white;
}

.social-twitter:hover {
  background-color: #333333;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.social-link i {
  font-size: 1.25rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--color-dark-bg);
  padding: var(--spacing-xl) var(--spacing-md) var(--spacing-md);
  margin-top: auto;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: var(--spacing-xl);
  align-items: center;
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-xs);
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: var(--spacing-md);
}

.footer-links button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
  cursor: pointer;
  font-family: var(--font-body);
}

.footer-links button:hover {
  color: var(--color-orange);
}

.footer-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--spacing-sm);
}

.btn-patreon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #FF424D;
  color: white;
  text-decoration: none;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition);
}

.btn-patreon:hover {
  background-color: #e63946;
  transform: scale(1.05);
}

.footer-social {
  display: flex;
  gap: var(--spacing-sm);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--color-text-light);
  text-decoration: none;
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--color-orange);
  transform: scale(1.1);
}

.footer-copyright {
  padding-top: var(--spacing-md);
  text-align: center;
}

.footer-copyright p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ============================================
   RESPONSIVE - MOBILE FIRST
   ============================================ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    order: 2;
  }
  
  .hero-image,
  .hero-carousel {
    order: 1;
  }
  
  .hero-title-wrapper {
    padding-left: 0;
  }
  
  .decorative-lines {
    display: none;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--spacing-lg);
  }
  
  .footer-cta {
    align-items: center;
  }
  
  /* Carousel responsive */
  .carousel-item-center {
    width: 280px;
    height: 280px;
  }
  
  .carousel-item-left,
  .carousel-item-right {
    width: 180px;
    height: 180px;
  }
  
  .carousel-arrow-left {
    left: 2%;
  }
  
  .carousel-arrow-right {
    right: 2%;
  }
  
  /* Pricing responsive */
  .pricing-amount .price {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem 1rem;
  }
  
  .nav-menu {
    overflow-x: auto;
    max-width: calc(100vw - 32px);
    -webkit-overflow-scrolling: touch;
  }
  
  .nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    white-space: nowrap;
  }
  
  .hero {
    min-height: auto;
    padding: var(--spacing-md) 0;
  }
  
  .hero-container {
    padding: var(--spacing-md);
  }
  
  .hero-image img {
    max-height: 350px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
  }
  
  .btn-hero {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .commission-form {
    padding: var(--spacing-md);
  }
  
  .commission-title {
    font-size: 1.75rem;
  }
  
  .app-title,
  .info-title {
    font-size: 1.75rem;
  }
  
  .app-desc,
  .info-desc {
    font-size: 1rem;
  }
  
  .social-links {
    flex-direction: column;
    align-items: center;
  }
  
  .social-link {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
  
  .age-modal-content {
    padding: var(--spacing-lg);
  }
  
  .age-modal-icon {
    font-size: 3rem;
  }
  
  .age-modal-content h2 {
    font-size: 1.5rem;
  }
  
  .age-modal-buttons {
    flex-direction: column;
  }
  
  .btn-age {
    width: 100%;
    justify-content: center;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer-brand h3 {
    font-size: 1.25rem;
  }
  
  /* Carousel mobile */
  .carousel-item-center {
    width: 220px;
    height: 220px;
  }
  
  .carousel-item-left,
  .carousel-item-right {
    width: 140px;
    height: 140px;
  }
  
  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .gallery-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-image img {
    max-height: 280px;
  }
  
  .btn-hero {
    width: 100%;
  }
  
  .app-icon,
  .info-icon {
    width: 80px;
    height: 80px;
  }
  
  .app-icon i,
  .info-icon i {
    font-size: 2.5rem;
  }
  
  .btn-download,
  .btn-back {
    width: 100%;
    margin-right: 0;
    margin-bottom: var(--spacing-sm);
  }
  
  /* Carousel small mobile */
  .carousel-item-left,
  .carousel-item-right {
    display: none;
  }
  
  .carousel-item-center {
    width: 280px;
    height: 280px;
  }
  
  .carousel-arrow-left {
    left: 5px;
  }
  
  .carousel-arrow-right {
    right: 5px;
  }
}
.app-update {
    margin-top: 40px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    text-align: left;
}

.update-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    margin-bottom: 8px;
}

.update-intro {
    font-size: 15px;
    opacity: 0.85;
    margin-bottom: 20px;
}

.update-block {
    margin-bottom: 20px;
}

.update-block h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.update-block ul {
    padding-left: 18px;
}

.update-block li {
    margin-bottom: 6px;
    font-size: 14px;
}
/* Nuevos botones sociales - Negro con letras blancas */
.social-deviantart,
.social-facebook,
.social-kofi,
.social-patreon-shop {
    background: #1a1a1a !important;
    color: #ffffff !important;
}

.social-deviantart:hover,
.social-facebook:hover,
.social-kofi:hover,
.social-patreon-shop:hover {
    background: #333333 !important;
}
/* Aviso de comic sin descuento */
.comic-no-discount {
    background: rgba(255, 140, 26, 0.1);
    border: 1px solid #ff8c1a;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ff8c1a;
    font-size: 14px;
}

.comic-no-discount i {
    font-size: 18px;
}
