/* Modern OnlyFans-Inspired Design - Pesito Platform */
:root {
    /* Pesito Color Palette - Optimized for Maximum Contrast */
    --color1: #1a1a1a;     /* Negro suave para texto principal */
    --color2: #ffffff;     /* Blanco puro para fondos */
    --color3: #4a5568;     /* Gris oscuro para texto secundario */
    --color4: #24c0eb;     /* Azul cyan */
    --color5: #5cceee;     /* Azul claro */
    
    /* Modern Background Colors - High Contrast */
    --bg-primary: #ffffff;
    --bg-secondary: #fafafa;
    --bg-tertiary: #f5f5f5;
    --bg-dark: #1a1a1a;
    --bg-overlay: rgba(0, 0, 0, 0.7);
    
    /* Text Colors - Enhanced Contrast */
    --text-primary: #1a1a1a;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --text-white: #ffffff;
    --text-accent: var(--color4);
    --text-accent-alt: var(--color5);
    --text-success: #10b981;
    --text-warning: #f59e0b;
    --text-error: #ef4444;
    
    /* Border Colors */
    --border-primary: #e2e8f0;
    --border-secondary: #cbd5e0;
    
    /* Modern Gradients - Clean Blue Theme */
    --gradient-primary: linear-gradient(135deg, var(--color4) 0%, var(--color5) 100%);
    --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-warm: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-hero: linear-gradient(135deg, rgba(36, 192, 235, 0.9) 0%, rgba(92, 206, 238, 0.8) 100%);
    
    /* Modern Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    --shadow-accent: 0 4px 20px rgba(36, 192, 235, 0.15);
    
    /* Border Radius - Consistencia mejorada */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 50px;
    --radius-card: 16px;
    --radius-button: 8px;
    --radius-input: 12px;
}

/* Reset y base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    min-height: 100vh;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Modern Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-accent);
    font-family: 'Inter', sans-serif;
    letter-spacing: -1px;
    position: relative;
}

.logo::before {
    content: '$ ';
    color: var(--text-accent);
    margin-right: 0.25rem;
    font-weight: 900;
}

.tagline {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    padding-left: 0.75rem;
    border-left: 2px solid var(--color4);
    opacity: 0.8;
    font-family: 'Inter', sans-serif;
    text-transform: lowercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Hide mobile menu toggle on desktop by default */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle:hover {
  background: var(--bg-tertiary);
  transform: scale(1.05);
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    text-transform: capitalize;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--text-primary);
    background: var(--bg-tertiary);
    transform: translateY(-1px);
}

.nav-link::after {
  display: none;
}

/* Modern Buttons */
.btn-donar {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    font-size: 0.95rem;
    text-transform: capitalize;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-donar:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.1);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
    text-transform: capitalize;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    filter: brightness(1.15);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--text-accent);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: capitalize;
    font-family: 'Inter', sans-serif;
}

.btn-secondary:hover {
    background: var(--text-accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--text-accent);
  border: 2px solid var(--text-accent);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
  text-decoration: none;
  display: inline-block;
  font-family: 'Inter', sans-serif;
}

.btn-outline:hover {
  background: var(--text-accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Hero Section - Pesito Style */
.hero {
  padding: 9rem 2rem 7rem;
  background: 
    radial-gradient(circle at 20% 30%, rgba(36, 192, 235, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(92, 206, 238, 0.06) 0%, transparent 60%),
    radial-gradient(circle at 50% 100%, rgba(36, 192, 235, 0.08) 0%, transparent 70%),
    var(--bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -30%;
  width: 80%;
  height: 100%;
  background: 
    conic-gradient(from 45deg, rgba(36, 192, 235, 0.05) 0%, transparent 25%, rgba(92, 206, 238, 0.04) 50%, transparent 75%);
  transform: rotate(15deg);
  pointer-events: none;
  animation: hero-float 8s ease-in-out infinite;
}

@keyframes hero-float {
  0%, 100% { transform: rotate(15deg) translateY(0); }
  50% { transform: rotate(15deg) translateY(-20px); }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 2rem;
  color: var(--text-white);
  letter-spacing: -3px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 5px rgba(36, 192, 235, 0.3)); }
  50% { filter: drop-shadow(0 0 20px rgba(36, 192, 235, 0.6)); }
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: -5px;
  right: -5px;
  height: 12px;
  background: var(--bg-tertiary);
  border-radius: 6px;
  z-index: -1;
  filter: blur(3px);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.7;
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(253, 242, 180, 0.1);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  background: var(--bg-primary);
  border-radius: 25px;
  padding: 2.5rem;
  box-shadow: 0 25px 80px var(--shadow);
  border: 1px solid var(--border-primary);
  max-width: 380px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-warm);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border-primary);
}

.card-header i {
  font-size: 1.8rem;
  color: var(--text-accent);
  padding: 0.5rem;
  background: var(--bg-tertiary);
  border-radius: 12px;
}

.card-header span {
  font-weight: 700;
  color: var(--text-primary);
  text-transform: lowercase;
}

.card-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 600;
  opacity: 0.8;
}

/* Features Section */
.features {
  padding: 7rem 2rem;
  background: var(--bg-dark);
  position: relative;
  border-top: 2px solid rgba(246, 12, 73, 0.2);
  border-bottom: 2px solid rgba(246, 12, 73, 0.2);
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(36, 192, 235, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(92, 206, 238, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.section-title {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 4rem;
  color: var(--text-white);
  letter-spacing: -2px;
  position: relative;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 6px;
  background: var(--gradient-primary);
  border-radius: 3px;
  box-shadow: var(--shadow-md);
}

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

.feature-card {
  background: rgba(16, 25, 66, 0.8);
  backdrop-filter: blur(20px);
  padding: 3.5rem;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 20px 60px var(--shadow-heavy);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid rgba(246, 12, 73, 0.2);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--gradient-primary);
}

.feature-card:nth-child(2)::before { background: var(--gradient-secondary); }
.feature-card:nth-child(3)::before { background: var(--gradient-hot); }

.feature-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: var(--shadow-xl);
  border-color: rgba(246, 12, 73, 0.5);
}

.feature-icon {
  background: var(--gradient-primary);
  width: 100px;
  height: 100px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.5rem;
  color: var(--text-white);
  font-size: 2.5rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  animation: icon-shimmer 3s ease-in-out infinite;
}

@keyframes icon-shimmer {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}

.feature-card:nth-child(2) .feature-icon { background: var(--gradient-secondary); }
.feature-card:nth-child(3) .feature-icon { background: var(--gradient-hot); }

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: var(--shadow-xl);
}

.feature-card h4 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-white);
  text-transform: lowercase;
  text-shadow: none;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.1rem;
  opacity: 0.9;
  text-shadow: 0 1px 5px rgba(253, 242, 180, 0.2);
}

/* Creators Preview */
.creators-preview {
  padding: 8rem 2rem;
  background: var(--bg-dark);
  position: relative;
}

.creators-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(36, 192, 235, 0.03) 0%, transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(92, 206, 238, 0.02) 0%, transparent 60%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-top: 1rem;
  opacity: 0.85;
  font-weight: 500;
}

.creators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.creator-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid var(--border-primary);
  position: relative;
}

.creator-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: var(--gradient-primary);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.creator-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--text-accent);
}

.creator-card:hover::after {
  opacity: 1;
}

.creator-image {
  height: 250px;
  background: var(--gradient-primary);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 4rem;
  overflow: hidden;
}

.creator-image.art-creator {
  background: var(--gradient-secondary);
}

.creator-image.social-creator {
  background: var(--gradient-hot);
}

.creator-avatar {
  font-size: 5rem;
  z-index: 2;
  position: relative;
  text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.creator-image::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 50%),
    conic-gradient(from 0deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  animation: creator-shimmer 4s ease-in-out infinite;
}

@keyframes creator-shimmer {
  0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(0deg); }
  50% { transform: translateX(100%) translateY(100%) rotate(180deg); }
}

.creator-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-accent);
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  backdrop-filter: blur(15px);
  text-transform: lowercase;
  z-index: 3;
  border: 1px solid var(--border-primary);
}

.creator-content {
  padding: 1.5rem;
}

.creator-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  text-transform: none;
  line-height: 1.2;
  text-shadow: none;
  font-family: 'Inter', sans-serif;
}

.creator-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 0.9rem;
  text-shadow: none;
}

.creator-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-primary);
}

.creator-stats .stat-item {
  text-align: center;
}

.creator-stats .stat-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-accent);
  display: block;
  line-height: 1;
}

.creator-stats .stat-label {
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: lowercase;
}

.creator-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-primary);
}

.creator-price .price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  text-shadow: none;
}

.subscribe-btn {
  background: var(--gradient-primary);
  color: var(--text-white);
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: lowercase;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.subscribe-btn::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.4s ease;
}

.subscribe-btn:hover::before {
  left: 100%;
}

.subscribe-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--shadow-lg);
  filter: brightness(1.2);
}

.section-cta {
  text-align: center;
}

/* Stats Section */
.stats {
  padding: 4rem 2rem;
  background: var(--bg-secondary);
  color: var(--text-primary);
}

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

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.stat-icon {
  background: var(--gradient-primary);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
  font-size: 1.5rem;
}

.stat-content .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-content .stat-label {
  color: var(--text-secondary);
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  padding: 6rem 2rem;
  background: var(--gradient-primary);
  color: var(--bg-primary);
  text-align: center;
}

.cta-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cta-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.8;
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  color: var(--text-primary);
  padding: 3rem 2rem 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  color: var(--text-secondary);
  margin: 1rem 0;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--color4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--color5);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.link-group h5 {
  color: var(--color4);
  margin-bottom: 1rem;
  font-weight: 600;
}

.link-group a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.link-group a:hover {
  color: var(--color4);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(202, 202, 202, 0.2);
  text-align: center;
  color: var(--text-secondary);
}

/* Responsive Design - Enhanced Mobile Support */

/* Mobile First Approach - Base mobile styles */
/* iPhone SE Specific Optimizations - 375px viewport */
@media (max-width: 375px) {
  .container {
    padding: 0 12px;
    max-width: 100%;
  }
  
  /* Enhanced Navigation for iPhone SE */
  .nav-container {
    padding: 0.75rem 12px;
  }
  
  .nav-logo .logo {
    font-size: 1.4rem;
  }
  
  .nav-logo .tagline {
    font-size: 0.7rem;
    padding-left: 0.5rem;
  }
  
  /* Mobile menu optimizations */
  .mobile-nav-content {
    width: 100%;
    max-width: 320px;
  }
  
  /* Hero section iPhone SE optimization */
  .hero-section {
    padding: 3.5rem 12px 2.5rem;
  }
  
  .hero-title {
    font-size: 1.9rem;
    line-height: 1.15;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 2rem;
  }
  
  /* Button optimization for iPhone SE */
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 300px;
    padding: 0.9rem 1.2rem;
    font-size: 0.95rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  
  /* Hero button container */
  .hero-section div[style*="display: flex"] {
    flex-direction: column !important;
    gap: 0.75rem !important;
    align-items: center !important;
    margin-bottom: 2rem !important;
  }
  
  /* Search section iPhone SE */
  .search-wrapper {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }
  
  .search-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    min-height: 48px;
  }
  
  .search-btn {
    width: 100%;
    min-height: 48px;
    padding: 0.875rem 1.5rem;
  }
  
  /* Filter chips iPhone SE optimization */
  .filter-chips {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }
  
  .filter-chip {
    min-height: 44px;
    min-width: 44px;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }
  
  /* Cards grid iPhone SE */
  .cards-grid, .explore-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0;
  }
  
  .modern-card {
    width: 100%;
    margin: 0;
  }
  
  /* Stats section iPhone SE */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .stat-card, .stat-item {
    padding: 1rem;
  }
  
  /* Typography scaling for readability */
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  h4 { font-size: 1.1rem; }
  
  .section-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
  }
  
  .section-header p {
    font-size: 0.95rem;
    line-height: 1.4;
  }
  
  /* Footer iPhone SE optimization */
  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  
  /* Contact form iPhone SE */
  .contact-form .form-group {
    margin-bottom: 1rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    min-height: 48px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
  }
  
  /* Profile page iPhone SE */
  .profile-header {
    padding: 0 12px;
    margin-top: -60px;
  }
  
  .profile-info h1 {
    font-size: 1.6rem;
  }
  
  .profile-stats {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
  
  /* Ensure touch targets meet accessibility guidelines */
  button, .btn, .nav-link, .filter-chip, .tab-btn, .subscribe-btn {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Card action buttons */
  .card-action {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }
  
  .subscribe-btn {
    width: 100%;
    justify-content: center;
  }
  
  /* Improved spacing for small screens */
  .section {
    padding: 2rem 0;
  }
  
  .section-cta {
    text-align: center;
    margin-top: 2rem;
  }
  
  /* Search container responsiveness */
  .search-container {
    padding: 0;
    margin-bottom: 1.5rem;
  }
  
  /* CTA section iPhone SE */
  .cta-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  
  .cta-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  /* Prevent iOS zoom on input focus */
  input, textarea, select {
    font-size: 16px !important;
  }
  
  /* Better card padding on iPhone SE */
  .modern-card .card-content {
    padding: 1rem;
  }
  
  .card-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin: 1rem 0;
  }
  
  .card-stat {
    text-align: center;
    padding: 0.5rem;
  }
  
  /* Optimize tabs for small screens */
  .profile-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }
  
  .tab-btn {
    flex-shrink: 0;
    min-width: auto;
    padding: 0.75rem 1rem;
  }
  
  /* Hero spacing adjustments */
  .hero-section .container {
    padding: 0 12px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  /* Navigation Mobile - FIXED: Ensure proper responsive behavior */
  .nav-container {
    padding: 0.75rem 1rem;
    gap: 1rem;
  }
  
  .nav-logo {
    flex: 1;
  }
  
  .logo {
    font-size: 1.75rem;
  }
  
  .tagline {
    font-size: 0.8rem;
    padding-left: 0.5rem;
    border-left-width: 1px;
  }
  
  /* Hide desktop navigation on mobile/tablet */
  .nav-menu {
    display: none !important;
  }
  
  /* Show mobile menu toggle on mobile/tablet */
  .mobile-menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  /* Smaller mobile specific adjustments */
  @media (max-width: 480px) {
    .nav-logo {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.25rem;
    }
    
    .logo {
      font-size: 1.5rem;
    }
    
    .tagline {
      font-size: 0.75rem;
    }
  }
  
  /* Mobile Navigation Menu */
  .mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
  }
  
  .mobile-nav.active {
    display: block;
  }
  
  .mobile-nav-content {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 280px;
    background: var(--bg-primary);
    box-shadow: var(--shadow-xl);
    padding: 2rem 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  
  .mobile-nav.active .mobile-nav-content {
    transform: translateX(0);
  }
  
  .mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-primary);
  }
  
  .mobile-nav-close {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
  }
  
  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .mobile-nav-links .nav-link {
    display: block;
    padding: 1rem 0;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--border-primary);
    transition: all 0.3s ease;
  }
  
  .mobile-nav-links .nav-link:hover {
    color: var(--text-accent);
    padding-left: 0.5rem;
  }
  
  .mobile-nav-links .btn-donar {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
  }
  
  /* Hero Section Mobile */
  .hero-section {
    padding: 4rem 1rem 3rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.1;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }
  
  /* Button Groups Mobile */
  .hero-actions, .cta-actions {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 280px;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  /* Search Section Mobile */
  .search-section {
    padding: 2rem 1rem;
    margin: 1rem 0.5rem;
  }
  
  .search-wrapper {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 1rem;
  }
  
  .search-input {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
  }
  
  .search-btn {
    width: 100%;
    padding: 0.875rem;
  }
  
  /* Filter Chips Mobile */
  .filter-group {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }
  
  .filter-group-label {
    min-width: auto;
    font-size: 0.9rem;
  }
  
  .filter-chips {
    gap: 0.5rem;
  }
  
  .filter-chip {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
  
  /* Cards Grid Mobile */
  .cards-grid, .explore-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 0.5rem;
  }
  
  .modern-card, .creator-card {
    margin: 0 auto;
    max-width: 100%;
  }
  
  /* Card Content Mobile */
  .card-content, .creator-content {
    padding: 1.25rem;
  }
  
  .card-title {
    font-size: 1.25rem;
  }
  
  .card-description, .creator-description {
    font-size: 0.9rem;
  }
  
  /* Stats Mobile */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .card-stats, .creator-stats {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    text-align: center;
  }
  
  /* Footer Mobile */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-social {
    justify-content: center;
  }
}

/* Desktop Styles - Show desktop nav and hide mobile toggle */
@media (min-width: 769px) {
  /* Show desktop navigation */
  .nav-menu {
    display: flex !important;
  }
  
  /* Hide mobile menu toggle on desktop */
  .mobile-menu-toggle {
    display: none !important;
  }
  
  /* Ensure mobile nav is hidden */
  .mobile-nav {
    display: none !important;
  }
  
  .mobile-nav.active {
    display: none !important;
  }
}
  
  /* Hero Section Tablet */
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  /* Button Groups Tablet */
  .hero-actions {
    justify-content: center;
    gap: 1rem;
  }
  
  .btn-primary, .btn-secondary {
    flex: 0 1 auto;
    min-width: 180px;
  }
  
  /* Search Section Tablet */
  .search-section {
    padding: 2.5rem 1.5rem;
  }
  
  /* Cards Grid Tablet */
  .cards-grid, .explore-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  /* Stats Tablet */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Footer Tablet */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop Small - Maintain desktop navigation */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    max-width: 960px;
  }
  
  /* Navigation Desktop Small - Ensure desktop nav is visible */
  .nav-container {
    padding: 1rem 2rem;
  }
  
  .nav-menu {
    display: flex !important;
    gap: 1.5rem;
  }
  
  .mobile-menu-toggle {
    display: none !important;
  }
  
  /* Hero adjustments */
  .hero-title {
    font-size: 3rem;
  }
  
  /* Cards Grid Desktop Small */
  .cards-grid, .explore-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  /* Stats Desktop Small */
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Profile Page Mobile Responsive */
@media (max-width: 768px) {
  .profile-hero {
    margin-bottom: 1rem;
  }
  
  .profile-banner {
    height: 200px;
  }
  
  .profile-header {
    padding: 0 1rem;
    margin-top: -60px;
    gap: 1.5rem;
  }
  
  .avatar-image {
    width: 100px;
    height: 100px;
    border-width: 4px;
  }
  
  .avatar-placeholder {
    font-size: 2.5rem;
  }
  
  .profile-display-name {
    font-size: 1.8rem;
  }
  
  .profile-username {
    font-size: 1rem;
  }
  
  .profile-stats {
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 1.4rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  .profile-actions {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    gap: 0.75rem;
  }
  
  .btn-subscribe, .btn-message, .btn-tip {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
  }
  
  .profile-bio {
    margin-top: 1.5rem;
    padding: 1.5rem;
  }
  
  .bio-text {
    font-size: 1rem;
  }
  
  .profile-tags {
    gap: 0.4rem;
  }
  
  .tag {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  
  /* Subscription Cards Mobile */
  .subscription-section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .subscription-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .subscription-card.featured {
    transform: none;
  }
  
  .subscription-card.featured:hover {
    transform: translateY(-5px);
  }
  
  /* Content Tabs Mobile */
  .content-tabs {
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 1rem 1rem;
    margin-bottom: 2rem;
  }
  
  .tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }
  
  /* Content Grid Mobile */
  .content-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .content-preview {
    height: 160px;
  }
  
  .preview-image {
    font-size: 1.5rem;
  }
  
  /* Support Options Mobile */
  .support-section {
    padding: 3rem 0;
  }
  
  .support-options {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .support-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

/* Contact Page Mobile */
@media (max-width: 768px) {
  .contact-hero {
    padding: 100px 1rem 60px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .contact-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-main {
    padding: 60px 0;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .contact-form-card {
    padding: 2rem 1.5rem;
  }
}

/* Large Mobile Landscape */
@media (max-width: 896px) and (orientation: landscape) {
  .hero-section {
    padding: 3rem 1rem 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .profile-banner {
    height: 150px;
  }
  
  .profile-header {
    margin-top: -40px;
  }
}

/* Accessibility and Touch Improvements */
@media (max-width: 768px) {
  /* Increase touch target sizes */
  .filter-chip, .tab-btn, .subscribe-btn, .btn-primary, .btn-secondary {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Improve text readability */
  body {
    font-size: 16px;
    line-height: 1.6;
  }
  
  /* Better spacing for mobile */
  .section {
    padding: 3rem 1rem;
  }
  
  /* Card hover effects for touch */
  .modern-card:hover, .creator-card:hover {
    transform: none;
  }
  
  .modern-card:active, .creator-card:active {
    transform: scale(0.98);
  }
  
  /* Improved form elements */
  .search-input, input, textarea {
    font-size: 16px; /* Prevents zoom on iOS */
    min-height: 44px;
  }
}

/* Animaciones y efectos argentinos */
@keyframes banderaWave {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  25% { transform: translateX(5px) rotate(1deg); }
  75% { transform: translateX(-5px) rotate(-1deg); }
}

.argentina-accent {
  position: relative;
}

.argentina-accent::before {
  content: '🇦🇷';
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 1.2rem;
  animation: banderaWave 3s ease-in-out infinite;
}

/* Modern Layout */
.main-content {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    padding-top: 80px;
}

.section {
    padding: 4rem 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.hero-section {
    background: linear-gradient(135deg, rgba(36, 192, 235, 0.05) 0%, rgba(92, 206, 238, 0.08) 100%);
    padding: 6rem 2rem 4rem;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-shadow: none;
}

.hero-title-accent::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0.3;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Search Section */
.search-section {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-md);
    margin: 2rem auto;
    max-width: 800px;
    border: 1px solid var(--border-primary);
}

.search-container {
    position: relative;
}

.search-wrapper {
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    border-radius: var(--radius-full);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-primary);
    transition: all 0.3s ease;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.search-wrapper:focus-within {
    border-color: var(--text-accent);
    box-shadow: 0 0 0 4px rgba(36, 192, 235, 0.1);
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    outline: none;
    font-weight: 500;
}

.search-input::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

.search-icon {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-right: 0.75rem;
}

.search-btn, .filter-btn {
    background: var(--text-accent);
    border: 1px solid var(--text-accent);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-button);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.search-btn:hover, .filter-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    filter: brightness(1.1);
}

/* Modern Filter System */
.filters-section {
    margin: 2rem 0;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.filter-group-label {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    min-width: 80px;
}

.filter-chips {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-chip {
    background: white;
    border: 2px solid var(--bg-tertiary);
    color: var(--text-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.filter-chip:hover {
    border-color: var(--text-accent);
    color: var(--text-primary);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.filter-chip.active {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--text-accent);
    box-shadow: var(--shadow-lg);
}

.chip-icon {
    font-size: 1rem;
}

/* Modern Stats Section */
.stats-section {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, white 100%);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

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

.stat-card {
    background: white;
    border-radius: var(--radius-card);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-primary);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: capitalize;
}

/* Modern Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.modern-card {
    background: white;
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-primary);
    position: relative;
}

.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Card Header - Modern Style */
.card-image {
    height: 250px;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
}

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.card-status-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    z-index: 2;
}

.card-status-indicator.online {
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.card-status-indicator.away {
    background: #f59e0b;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

/* Modern Card Content */
.card-content {
    padding: 2rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    text-shadow: none;
    font-family: 'Inter', sans-serif;
}

.card-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-secondary);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.card-stat {
    text-align: center;
}

.card-stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-accent);
    display: block;
    line-height: 1;
}

.card-stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: capitalize;
}

.card-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.card-tag {
    background: var(--bg-tertiary);
    color: var(--text-accent);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(36, 192, 235, 0.2);
}

.card-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-secondary);
    margin: 1rem -2rem -2rem -2rem;
    border-radius: 0 0 var(--radius-card) var(--radius-card);
}

.card-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.card-price-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 0.25rem;
}

.subscribe-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.1);
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Efectos de hover mejorados */
.causa-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(159, 193, 49, 0.1), transparent);
  transition: left 0.5s;
}

.causa-card:hover::before {
  left: 100%;
}

/* === ESTILOS ESPECÍFICOS PARA EXPLORE.HTML === */

/* Explore Grid */
.explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

/* Creator Cards Enhanced */
.creator-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    position: relative;
}

.creator-card:hover {
    border-color: var(--text-accent);
    box-shadow: var(--shadow-accent);
    transform: translateY(-4px);
}

/* Creator Image Backgrounds */
.creator-image {
    height: 200px;
    background: var(--gradient-primary);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 3rem;
    overflow: hidden;
}

.creator-image.art-bg {
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
}

.creator-image.music-bg {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.creator-image.ong-bg {
    background: linear-gradient(135deg, #c3f53c 0%, #4776e6 100%);
}

.creator-image.startup-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.creator-image.lifestyle-bg {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Creator Avatar */
.creator-avatar {
    font-size: 4rem;
    z-index: 2;
    position: relative;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Creator Status Indicator */
.creator-status {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.8);
    z-index: 3;
}

.creator-status.online {
    background: var(--text-success);
    box-shadow: 0 0 6px var(--text-success);
}

.creator-status.away {
    background: var(--text-warning);
    box-shadow: 0 0 6px var(--text-warning);
}

/* Creator Badges */
.creator-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid var(--color4);
    z-index: 3;
    text-shadow: none;
}

.creator-badge.adult {
    background: rgba(220, 20, 60, 0.9);
    border-color: #dc143c;
    color: white;
}

.creator-badge.art {
    background: rgba(255, 107, 107, 0.9);
    border-color: #ff6b6b;
}

.creator-badge.music {
    background: rgba(168, 237, 234, 0.9);
    border-color: #a8edea;
    color: #333;
}

.creator-badge.ong {
    background: rgba(195, 245, 60, 0.9);
    border-color: #c3f53c;
    color: #333;
}

.creator-badge.startup {
    background: rgba(102, 126, 234, 0.9);
    border-color: #667eea;
}

.creator-badge.lifestyle {
    background: rgba(255, 165, 0, 0.9);
    border-color: #ffa500;
    color: white;
}

/* Creator Content */
.creator-content {
    padding: 1.5rem;
}

.creator-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    text-shadow: none;
}

.creator-location {
    font-size: 0.8rem;
    color: var(--text-accent);
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.creator-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Creator Stats Enhanced */
.creator-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-primary);
    box-shadow: var(--shadow-sm);
}

.creator-stats .stat-item {
    text-align: center;
}

.creator-stats .stat-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-accent);
    display: block;
}

.creator-stats .stat-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: lowercase;
}

/* Creator Tags */
.creator-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.tag {
    background: var(--bg-primary);
    color: var(--text-accent);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    border: 1px solid var(--text-accent);
    font-weight: 500;
}

/* Funding Progress */
.funding-progress {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-primary);
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.progress-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.progress-percentage {
    font-size: 0.8rem;
    color: var(--text-accent);
    font-weight: 600;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--bg-tertiary);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    border: 1px solid var(--border-primary);
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    transition: width 2s ease;
}

.funding-status {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
    display: block;
}

/* Creator Price Enhanced */
.creator-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-primary);
}

.creator-price .price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.subscribe-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-button);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
}

.subscribe-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    filter: brightness(1.1);
}

/* Load More Section */
.load-more {
    text-align: center;
    margin-top: 3rem;
}

.load-more-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.load-more-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.load-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

/* ====== HIGH CONTRAST IMPROVEMENTS ====== */

/* Creator Names - Maximum Legibility */
.creator-content h4,
.card-title {
    color: var(--text-primary) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Improved card backgrounds for better text visibility */
.creator-card,
.modern-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-primary);
}

.creator-card:hover,
.modern-card:hover {
    border-color: var(--text-accent);
    box-shadow: var(--shadow-accent);
}

/* Enhanced text contrast for all descriptions */
.creator-description,
.card-description {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Location text with better visibility */
.creator-location {
    color: var(--text-accent);
    font-weight: 600;
}

/* ====== NAVIGATION FAILSAFE STYLES ====== */

/* Ensure no navbar duplication at any screen size */
@media (max-width: 768px) {
  /* Force hide desktop nav on mobile/tablet */
  .nav-menu {
    display: none !important;
    visibility: hidden !important;
  }
  
  /* Force show mobile toggle on mobile/tablet */
  .mobile-menu-toggle {
    display: flex !important;
    visibility: visible !important;
  }
}

@media (min-width: 769px) {
  /* Force show desktop nav on desktop */
  .nav-menu {
    display: flex !important;
    visibility: visible !important;
  }
  
  /* Force hide mobile toggle on desktop */
  .mobile-menu-toggle {
    display: none !important;
    visibility: hidden !important;
  }
  
  /* Force hide mobile nav on desktop */
  .mobile-nav,
  .mobile-nav.active {
    display: none !important;
    visibility: hidden !important;
  }
}

/* Additional safety - prevent both navs from showing simultaneously */
.nav-menu[style*="display: flex"] ~ .mobile-menu-toggle {
  display: none !important;
}

/* ====== MODERN PROFILE PAGE STYLES ====== */

/* Profile Hero Section */
.profile-hero {
    position: relative;
    padding: 0;
    margin-bottom: 2rem;
}

.profile-banner {
    height: 300px;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.banner-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color4) 0%, var(--color5) 50%, #ff6b9d 100%);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
}

/* Profile Header */
.profile-header {
    position: relative;
    z-index: 2;
    margin-top: -100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.profile-avatar {
    position: relative;
}

.avatar-image {
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 6px solid white;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    background: var(--bg-primary);
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color4) 0%, var(--color5) 100%);
    font-size: 4rem;
    color: white;
}

.avatar-status {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 3px solid white;
}

.avatar-status.online {
    background: #10b981;
}

/* Profile Info */
.profile-info {
    width: 100%;
    max-width: 600px;
}

.profile-names {
    margin-bottom: 1.5rem;
}

.profile-display-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.profile-username {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Profile Stats */
.profile-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.profile-stats .stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Profile Actions */
.profile-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-subscribe {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-message, .btn-tip {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--text-secondary);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-message:hover, .btn-tip:hover {
    border-color: var(--color4);
    color: var(--text-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Profile Bio */
.profile-bio {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-top: 2rem;
    text-align: center;
}

.bio-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.profile-tags {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--color2);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Subscription Section */
.subscription-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 3rem;
}

.subscription-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.subscription-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.subscription-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.subscription-card.featured {
    border: 3px solid var(--color4);
    transform: scale(1.05);
}

.subscription-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color4);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-accent);
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
}

.period {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.card-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-primary);
}

.feature i {
    color: var(--text-accent);
    width: 16px;
}

.subscribe-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Content Section */
.content-section {
    padding: 4rem 0;
}

.content-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 2px solid var(--text-secondary);
    color: var(--text-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn:hover, .tab-btn.active {
    background: var(--color4);
    border-color: var(--color4);
    color: white;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.content-item {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: pointer;
}

.content-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.content-preview {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.preview-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color4) 0%, var(--color5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
}

.preview-image.locked {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: white;
}

.content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content-item:hover .content-overlay {
    opacity: 1;
}

.content-type {
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
}

.content-type.vip-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    color: #333;
}

.content-type.live-type {
    background: #ef4444;
}

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

.likes, .comments, .viewers {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.content-info {
    padding: 1rem;
}

.content-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.content-time {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Special Content Elements */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-accent);
}

.multiple-photos {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.live-indicator {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #ef4444;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.music-visualizer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 3rem;
}

/* Load More */
.load-more {
    text-align: center;
    margin-top: 3rem;
}

.btn-load-more {
    background: white;
    border: 2px solid var(--text-secondary);
    color: var(--text-primary);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-load-more:hover {
    border-color: var(--color4);
    color: var(--text-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Support Section */
.support-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.support-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.support-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.support-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.support-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.btn-support {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-support:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* CORRECCIÓN DE BORDES DESALINEADOS */

/* Asegurar que todos los botones tengan bordes consistentes */
button, .btn, input[type="submit"], input[type="button"] {
    border-radius: var(--radius-button);
    border: 1px solid transparent;
    box-sizing: border-box;
}

/* Asegurar que todos los inputs tengan bordes consistentes */
input, textarea, select {
    border-radius: var(--radius-input);
    border: 1px solid var(--border-primary);
    box-sizing: border-box;
}

/* Asegurar que todas las tarjetas tengan bordes consistentes */
.card, .creator-card, .modern-card, .stat-card, .subscription-card, .content-item, .support-card {
    border-radius: var(--radius-card);
    border: 1px solid var(--border-primary);
    box-sizing: border-box;
    overflow: hidden;
}

/* Corrección específica para elementos que se salen de contenedores */
* {
    box-sizing: border-box;
}

.card-content, .creator-content {
    padding: 1.5rem;
    overflow: hidden;
}

/* Asegurar que las imágenes no se salgan de sus contenedores */
img {
    max-width: 100%;
    height: auto;
    border-radius: inherit;
}

/* Corrección para elementos flotantes */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Corrección para elementos con position absolute que se salen */
.card-badge, .creator-badge, .status-indicator, .card-status-indicator {
    position: absolute;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Design for Profile */
@media (max-width: 768px) {
    .profile-header {
        padding: 0 1rem;
        margin-top: -80px;
    }
    
    .avatar-image {
        width: 120px;
        height: 120px;
    }
    
    .profile-display-name {
        font-size: 2rem;
    }
    
    .profile-stats {
        gap: 2rem;
    }
    
    .profile-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-subscribe, .btn-message, .btn-tip {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .subscription-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .subscription-card.featured {
        transform: none;
    }
    
    .content-tabs {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 1rem;
    }
    
    .content-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        padding: 0 1rem;
    }
    
    .support-options {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}