/* Reset y variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2196F3; /* Azul del logo */
    --secondary-color: #E91E63; /* Rosa magenta del logo */
    --accent-color: #FF9800; /* Amarillo/naranja del logo */
    --text-dark: #212121;
    --text-light: #ffffff;
    --background-light: #fafafa;
    --background-dark: #2c2c2c; /* Fondo oscuro del logo */
    --gradient-primary: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    --gradient-secondary: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
    --gradient-accent: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    --gradient-dark: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-colored: 0 4px 20px rgba(233, 30, 99, 0.3);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: 
        radial-gradient(circle at 10% 20%, rgba(233, 30, 99, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(33, 150, 243, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 152, 0, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 49%, rgba(233, 30, 99, 0.02) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(33, 150, 243, 0.02) 50%, transparent 51%);
    background-size: 60px 60px;
    z-index: -1;
    animation: backgroundMove 20s ease-in-out infinite;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-light);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 4rem 0;
    background: var(--gradient-dark);
    color: var(--text-light);
    display: flex;
    align-items: center;
    min-height: 70vh;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, var(--secondary-color) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--accent-color) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, var(--primary-color) 0%, transparent 50%);
    opacity: 0.15;
    z-index: 0;
    animation: pulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        linear-gradient(45deg, transparent 40%, var(--secondary-color) 42%, var(--secondary-color) 43%, transparent 45%),
        linear-gradient(-45deg, transparent 40%, var(--primary-color) 42%, var(--primary-color) 43%, transparent 45%);
    opacity: 0.1;
    animation: rotate 20s linear infinite;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Elementos decorativos flotantes */
.hero-content::before {
    content: '✨';
    position: absolute;
    top: 10%;
    left: 10%;
    font-size: 2rem;
    opacity: 0.6;
    animation: float 4s ease-in-out infinite;
}

.hero-content::after {
    content: '🌟';
    position: absolute;
    bottom: 20%;
    right: 15%;
    font-size: 1.5rem;
    opacity: 0.7;
    animation: float 5s ease-in-out infinite reverse;
}

.hero-content {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--secondary-color) 30%, var(--accent-color) 60%, var(--text-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(233, 30, 99, 0.3);
    position: relative;
}

.hero-content h1::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--text-light);
    z-index: -1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s both;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: var(--text-light);
    box-shadow: var(--shadow-colored);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--gradient-accent);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(233, 30, 99, 0.5);
    border-color: var(--accent-color);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--accent-color);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 152, 0, 0.3);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-accent);
    transition: var(--transition);
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    color: var(--text-light);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 152, 0, 0.5);
    border-color: var(--accent-color);
}

.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.3),
        0 0 40px rgba(233, 30, 99, 0.2),
        0 0 60px rgba(33, 150, 243, 0.1);
    transition: var(--transition);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color), var(--accent-color), var(--secondary-color));
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0.7;
    animation: rotate 10s linear infinite;
}

.hero-image:hover img {
    transform: scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.4),
        0 0 50px rgba(233, 30, 99, 0.3),
        0 0 80px rgba(33, 150, 243, 0.2);
}

/* Live TV Section */
.live-tv {
    padding: 4rem 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(233, 30, 99, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(33, 150, 243, 0.03) 0%, transparent 50%),
        var(--background-light);
}

.live-tv h2,
.programming h2,
.categories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 50%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.live-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.video-player {
    position: relative;
    background: #000;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.3),
        0 0 20px rgba(233, 30, 99, 0.1);
}

.video-player iframe {
    border-radius: var(--border-radius);
}

.live-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff4444, #ff6b6b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(255, 68, 68, 0.3);
    animation: pulse 2s ease-in-out infinite;
    z-index: 10;
}

.live-info {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.live-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.live-info h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.program-schedule {
    margin-top: 2rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.schedule-item:hover {
    background: var(--background-light);
}

.schedule-item.active {
    background: var(--primary-color);
    color: var(--text-light);
}

.schedule-item .time {
    font-weight: 600;
}

/* Programming Section */
.programming {
    padding: 4rem 0;
    position: relative;
    background: 
        radial-gradient(circle at 20% 30%, rgba(233, 30, 99, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(33, 150, 243, 0.08) 0%, transparent 40%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 255, 0.95) 100%);
    overflow: hidden;
}

.programming::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(255, 152, 0, 0.03) 49%, rgba(255, 152, 0, 0.05) 50%, rgba(255, 152, 0, 0.03) 51%, transparent 52%);
    background-size: 100px 100px;
    animation: shimmerBackground 15s ease-in-out infinite;
    z-index: 0;
}

.programming .container {
    position: relative;
    z-index: 1;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.schedule-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.1),
        0 0 20px rgba(233, 30, 99, 0.05);
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 50%, var(--accent-color) 100%);
    opacity: 0;
    transition: var(--transition);
}

.schedule-card:hover::before {
    opacity: 1;
}

.schedule-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(0,0,0,0.15),
        0 0 40px rgba(233, 30, 99, 0.1),
        0 0 60px rgba(33, 150, 243, 0.08);
}

.schedule-card:nth-child(even) {
    animation: fadeInLeft 0.8s ease-out;
}

.schedule-card:nth-child(odd) {
    animation: fadeInRight 0.8s ease-out;
}

.schedule-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
    filter: brightness(0.9) contrast(1.1);
}

.schedule-card:hover img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.2);
}

.schedule-card h3 {
    padding: 1rem 1rem 0.5rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
    font-weight: 700;
}

.schedule-card p {
    padding: 0 1rem 1.5rem;
    color: var(--text-dark);
    opacity: 0.8;
    line-height: 1.6;
}

/* Categories Section */
.categories {
    padding: 4rem 0;
    background: var(--background-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    text-align: center;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-colored);
}

.category-icon i {
    font-size: 2rem;
    color: var(--text-light);
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.category-card p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.category-card ul {
    list-style: none;
    text-align: left;
}

.category-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.category-card li:before {
    content: '♥';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.1em;
}

.category-card li:last-child {
    border-bottom: none;
}

/* Newsletter Section */
.newsletter {
    padding: 4rem 0;
    background: var(--gradient-primary);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    opacity: 0.9;
    z-index: 0;
}

.newsletter-content {
    position: relative;
    z-index: 1;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: var(--text-light);
    color: var(--secondary-color);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.newsletter-form button:hover {
    background: var(--background-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Verse Modal */
.verse-modal {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1200;
}

.verse-modal--visible {
    opacity: 1;
    pointer-events: auto;
}

.verse-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
}

.verse-modal__content {
    position: relative;
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    max-width: 480px;
    width: calc(100% - 40px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    text-align: center;
    z-index: 1;
    animation: fadeInUp 0.4s ease;
}

.verse-modal__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.verse-modal__content h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.verse-modal__reference {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.verse-modal__text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.verse-modal__source {
    font-size: 0.85rem;
    color: rgba(0,0,0,0.6);
}

.verse-modal__close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: color 0.2s ease;
}

.verse-modal__close:hover {
    color: var(--secondary-color);
}

body.modal-open {
    overflow: hidden;
}

/* Footer */
.footer {
    background: var(--background-dark);
    color: var(--text-light);
    padding: 3rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 50%, var(--accent-color) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-colored);
}

.contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.8;
}

/* Responsive Design */

/* Large Desktop */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .schedule-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .schedule-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .hero {
        padding: 3rem 0;
        min-height: 60vh;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .live-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
         .video-player {
         max-width: 700px;
         margin: 0 auto;
     }
    
    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .programming,
    .categories,
    .live-tv {
        padding: 3rem 0;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 2rem 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        display: block;
    }
    
    .hero {
        padding: 2rem 0;
        min-height: 50vh;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .live-tv h2,
    .programming h2,
    .categories h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
         .live-info {
         padding: 1.5rem;
     }
     
     .video-player {
         width: 100%;
         max-width: none;
         margin: 0;
     }
    
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .schedule-card {
        margin: 0 auto;
        max-width: 400px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-card {
        padding: 1.5rem;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .newsletter h2 {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        padding: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Mobile Landscape */
@media (max-width: 640px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        margin-top: 70px;
        padding: 1.5rem 0;
    }
    
    .live-tv {
        padding: 2.5rem 0;
    }
    
    .video-player {
        width: 100%;
        max-width: none;
        margin: 0;
        min-height: 250px;
    }
    
    .live-container {
        gap: 1.5rem;
    }
    
    .live-info {
        padding: 1.2rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }
    
    .programming,
    .categories,
    .live-tv {
        padding: 2.5rem 0;
    }
    
    .live-tv h2,
    .programming h2,
    .categories h2 {
        font-size: 1.8rem;
    }
    
    .schedule-card h3 {
        font-size: 1.2rem;
        padding: 0.8rem 0.8rem 0.5rem;
    }
    
    .schedule-card p {
        padding: 0 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
    }
    
    .category-icon i {
        font-size: 1.5rem;
    }
    
    .category-card h3 {
        font-size: 1.3rem;
    }
    
    .category-card ul {
        font-size: 0.9rem;
    }
    
    .newsletter {
        padding: 2.5rem 0;
    }
    
    .newsletter h2 {
        font-size: 1.8rem;
    }
    
    .newsletter p {
        font-size: 1rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .logo-img {
        height: 35px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
         .live-tv h2,
     .programming h2,
     .categories h2 {
         font-size: 1.6rem;
         margin-bottom: 1.5rem;
     }
     
     .video-player {
         width: 100%;
         max-width: none;
         margin: 0;
         min-height: 220px;
     }
     
     .live-container {
         gap: 1.2rem;
     }
     
     .live-info {
         padding: 1rem;
     }
     
     .live-info h3 {
         font-size: 1.1rem;
     }
     
     .live-info h4 {
         font-size: 1.2rem;
     }
     
     .live-indicator {
         top: 0.8rem;
         right: 0.8rem;
         padding: 0.4rem 0.8rem;
         font-size: 0.75rem;
     }
    
    .schedule-card {
        max-width: 100%;
    }
    
    .schedule-card img {
        height: 180px;
    }
    
    .schedule-card h3 {
        font-size: 1.1rem;
        padding: 0.8rem;
    }
    
    .schedule-card p {
        padding: 0 0.8rem 1rem;
        font-size: 0.85rem;
    }
    
    .category-card {
        padding: 1.2rem;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .category-icon i {
        font-size: 1.3rem;
    }
    
    .category-card h3 {
        font-size: 1.2rem;
    }
    
    .category-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .category-card ul {
        font-size: 0.85rem;
    }
    
    .category-card li {
        padding: 0.4rem 0;
        padding-left: 1.2rem;
    }
    
    .newsletter {
        padding: 2rem 0;
    }
    
    .newsletter h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .newsletter p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .video-player {
        width: 100%;
        min-height: 200px;
    }
    
    .live-info {
        padding: 0.8rem;
    }
    
    .btn {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .live-tv h2,
    .programming h2,
    .categories h2 {
        font-size: 1.4rem;
    }
    
    .schedule-card img {
        height: 160px;
    }
    
    .category-card {
        padding: 1rem;
    }
    
    .newsletter h2 {
        font-size: 1.3rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .schedule-card:hover,
    .category-card:hover {
        transform: none;
    }
    
    .btn-primary:hover,
    .btn-secondary:hover {
        transform: none;
    }
    
    .hero-image:hover img {
        transform: none;
    }
    
    /* Larger touch targets */
    .btn {
        min-height: 44px;
    }
    
    .nav-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .social-links a {
        min-width: 44px;
        min-height: 44px;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
    
    .hero::before,
    .hero::after,
    .programming::before,
    body::before {
        animation: none !important;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes shimmerBackground {
    0%, 100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
}

@keyframes backgroundMove {
    0%, 100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.15;
        transform: scale(1);
    }
    50% {
        opacity: 0.25;
        transform: scale(1.05);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.schedule-card,
.category-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
} 