        :root {
            --primary-color: #3498db;
            --dark-color: #2c3e50;
            --light-color: #ecf0f1;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f8f9fa;
            color: #333;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--dark-color), #1a1a2e);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            background: #000;
            margin-bottom: 2rem;
        }
        
        .video-container video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .channel-info {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
        }
        
        .channel-title {
            color: var(--dark-color);
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .social-links a {
            color: var(--dark-color);
            font-size: 1.5rem;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        footer {
            background: linear-gradient(135deg, var(--dark-color), #1a1a2e);
            color: white;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        
        footer a {
            color: var(--primary-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        footer a:hover {
            color: white;
            text-decoration: underline;
        }
        
        .loading-spinner {
            display: none;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 2rem;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border: none;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
        }
        
        .btn-primary:hover {
            background-color: #2980b9;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border: 1px solid #333;
}

.video-container > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Relación 16:9 */
    height: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
  }
  
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
  
  /* Mensaje de respaldo */
  .video-container::after {
    content: "Cargando reproductor...";
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: Arial, sans-serif;
    z-index: -1;
  }

  /* Complemento a tu style.css existente */
  .pricing-section {
    padding: 60px 0;
    background: var(--bg-color-light, #f8f9fa);
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    flex: 1 1 250px;
    max-width: 280px;
    background: var(--card-bg, #fff);
    border-radius: var(--border-radius, 8px);
    box-shadow: var(--card-shadow, 0 4px 6px rgba(0,0,0,0.1));
    overflow: hidden;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-header {
    padding: 20px;
    text-align: center;
    background: var(--primary-color, #3498db);
    color: white;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 15px 0;
}

.pricing-features {
    padding: 20px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color, #eee);
}

.pricing-button {
    display: block;
    text-align: center;
    padding: 12px;
    margin: 20px;
    background: var(--primary-color, #3498db);
    color: white;
    text-decoration: none;
    border-radius: var(--button-radius, 4px);
    transition: background 0.3s ease;
}

.pricing-button:hover {
    background: var(--primary-dark, #2980b9);
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* Base de tus estilos existentes */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-title span {
    color: #3498db;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.pricing-card {
    flex: 1 1 250px;
    max-width: 280px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border: 2px solid #9b59b6;
    margin-top: -15px;
}

.popular-tag {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #e74c3c;
    color: white;
    padding: 5px 30px;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(45deg);
    z-index: 3;
}

.pricing-header {
    padding: 30px 20px;
    text-align: center;
    color: white;
    position: relative;
}

.plan-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.pricing-header h3 {
    margin: 0;
    font-size: 1.8rem;
}

.internet-speed {
    font-size: 1.2rem;
    margin-top: 10px;
    font-weight: bold;
}

.pricing-body {
    padding: 25px 20px;
}

.pricing-price {
    text-align: center;
    margin-bottom: 25px;
}

.pricing-price .currency {
    font-size: 1.5rem;
    vertical-align: top;
    margin-right: 2px;
}

.pricing-price span {
    font-size: 2.8rem;
    font-weight: bold;
}

.pricing-price small {
    display: block;
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 5px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.pricing-features i {
    margin-right: 10px;
    color: #3498db;
    width: 20px;
    text-align: center;
}

.pricing-footer {
    margin-top: 25px;
    text-align: center;
}

.pricing-button {
    display: block;
    padding: 12px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.details-link {
    color: #3498db;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

.details-link i {
    margin-left: 5px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.details-link:hover i {
    transform: translateX(3px);
}

.promo-banner {
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
}

.promo-content {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: bold;
}

.promo-content i {
    font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .pricing-card.featured {
        margin-top: 0;
    }
}