.dashboard-col input.error, .dashboard-col textarea.error {
    border: 2px solid #dc2626 !important;
    background: #fee2e2;
}
.form-error {
    color: #dc2626;
    background: #fee2e2;
    border-radius: 6px;
    padding: 6px 10px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    text-align: center;
}
#dashboard.dashboard-horizontal {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(106,13,173,0.12);
    padding: 40px 32px;
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #e0e7ff;
}
.dashboard-row {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}
.dashboard-col {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(106,13,173,0.08);
    padding: 24px 18px;
    flex: 1;
    min-width: 220px;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
}
.dashboard-col:hover {
    box-shadow: 0 8px 32px rgba(106,13,173,0.18);
    transform: translateY(-4px) scale(1.02);
}
.dashboard-col h3 {
    color: #6a0dad;
    margin-bottom: 16px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.dashboard-col h3::before {
    content: '\f0a6'; /* fa-sliders-h */
    font-family: 'FontAwesome';
    font-weight: 900;
    color: #8b5cf6;
    font-size: 1.1em;
    margin-right: 4px;
}
.dashboard-col form {
    margin-bottom: 18px;
    background: #f3f4f6;
    border-radius: 10px;
    padding: 14px 10px;
    box-shadow: 0 2px 8px rgba(106,13,173,0.04);
}
.dashboard-col input, .dashboard-col textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #c7d2fe;
    font-size: 1rem;
    background: #fff;
    transition: border 0.2s;
}
.dashboard-col input:focus, .dashboard-col textarea:focus {
    border: 1.5px solid #6a0dad;
    outline: none;
}
.dashboard-col button {
    background: linear-gradient(135deg, #6a0dad 0%, #8b5cf6 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(106,13,173,0.08);
    transition: background 0.2s, transform 0.2s;
}
.dashboard-col button:hover {
    background: linear-gradient(135deg, #8b5cf6 0%, #6a0dad 100%);
    transform: scale(1.05);
}
.noticias-list, .videos-list, .slider-list, .logo-list {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.slider-list img, .logo-list img {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
    margin: 6px 0;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(106,13,173,0.12);
    border: 2px solid #e0e7ff;
}
.slider-list button, .logo-list button {
    background: #f87171;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 0.95rem;
    cursor: pointer;
    margin-top: 4px;
    transition: background 0.2s;
}
.slider-list button:hover, .logo-list button:hover {
    background: #dc2626;
}
.slider-list img, .logo-list img {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
    margin: 6px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(106,13,173,0.08);
}
.slider-list, .logo-list {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
    /* DASHBOARD ADMIN */
    #dashboard.dashboard-horizontal {
        background: #f8fafc;
        border-radius: 16px;
        box-shadow: 0 4px 24px rgba(106,13,173,0.08);
        padding: 32px 24px;
        margin-bottom: 32px;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
    .dashboard-row {
        display: flex;
        gap: 24px;
        margin-bottom: 32px;
    }
    .dashboard-col {
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(106,13,173,0.05);
        padding: 18px 16px;
        flex: 1;
        min-width: 220px;
    }
    .dashboard-col h3 {
        color: #6a0dad;
        margin-bottom: 12px;
        text-align: center;
    }
    .dashboard-col form {
        margin-bottom: 18px;
    }
    .dashboard-col input, .dashboard-col textarea {
        width: 100%;
        margin-bottom: 8px;
        padding: 8px;
        border-radius: 6px;
        border: 1px solid #d1d5db;
        font-size: 1rem;
    }
    .dashboard-col button {
        background: linear-gradient(135deg, #6a0dad 0%, #8b5cf6 100%);
        color: #fff;
        border: none;
        border-radius: 6px;
        padding: 8px 14px;
        font-size: 1rem;
        cursor: pointer;
        transition: background 0.2s;
    }
    .dashboard-col button:hover {
        background: linear-gradient(135deg, #8b5cf6 0%, #6a0dad 100%);
    }
    .noticias-list, .videos-list {
        margin-top: 10px;
    }
    #dashboard {
        background: #f8fafc;
        border-radius: 16px;
        box-shadow: 0 4px 24px rgba(106,13,173,0.08);
        padding: 32px 24px;
        margin-bottom: 32px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    #dashboard h2 {
        color: #6a0dad;
        margin-bottom: 18px;
        text-align: center;
    }
    #dashboard form {
        margin-bottom: 24px;
        background: #fff;
        border-radius: 10px;
        padding: 18px 16px;
        box-shadow: 0 2px 8px rgba(106,13,173,0.05);
    }
    #dashboard input, #dashboard textarea {
        width: 100%;
        margin-bottom: 12px;
        padding: 10px;
        border-radius: 6px;
        border: 1px solid #d1d5db;
        font-size: 1rem;
    }
    #dashboard button {
        background: linear-gradient(135deg, #6a0dad 0%, #8b5cf6 100%);
        color: #fff;
        border: none;
        border-radius: 6px;
        padding: 10px 18px;
        font-size: 1rem;
        cursor: pointer;
        transition: background 0.2s;
    }
    #dashboard button:hover {
        background: linear-gradient(135deg, #8b5cf6 0%, #6a0dad 100%);
    }
    #dashboard-mensajes .msg {
        margin-top: 10px;
        padding: 10px;
        border-radius: 6px;
        font-weight: bold;
        text-align: center;
    }
    #dashboard-mensajes .success {
        background: #d1fae5;
        color: #065f46;
    }
    #dashboard-mensajes .error {
        background: #fee2e2;
        color: #991b1b;
    }

        @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

        body {
            font-family: 'Roboto', 'Arial', sans-serif;
            background: linear-gradient(135deg, #ffffff 0%, #eafcfc 100%);
            min-height: 100vh;
            color: #333;
        }

        .header {
            text-align: center;
            padding: 30px 0;
            background: #ffffff;
            position: relative;
        }

        .logo {
            font-family: 'Montserrat', 'Arial Black', sans-serif;
            font-size: 5rem;
            font-weight: 900;
            color: #000000;
            letter-spacing: 12px;
            margin-bottom: 0;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.1);
            text-transform: uppercase;
        }

        .live-bar {
            background: linear-gradient(135deg, #1e1b4b 0%, #000000 100%);
            padding: 25px 0;
            position: relative;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }

        .live-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 30px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .live-info {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            color: #d60000;
            font-weight: bold;
            font-size: 1.1rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
        }

        .live-info.right {
            align-items: flex-end;
        }

        .live-label {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .station-name {
            font-size: 1.4rem;
            color: #ffffff;
            font-weight: bold;
        }

        .players-container {
            display: flex;
            gap: 20px;
            align-items: center;
            flex-wrap: wrap;
        }

        .radio-player-card {
            background: linear-gradient(135deg, #a3e635 0%, #65a30d 100%);
            border-radius: 15px;
            padding: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            min-width: 280px;
            box-shadow: 0 6px 20px rgba(163, 230, 53, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .radio-player-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(163, 230, 53, 0.4);
        }

        .radio-player-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40px;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1));
        }

        .radio-logo {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.5rem;
            box-shadow: 0 3px 10px rgba(99, 102, 241, 0.3);
        }

        .player-info {
            flex: 1;
            color: #000;
        }

        .station-title {
            font-family: 'Roboto', sans-serif;
            font-weight: 500;
            font-size: 0.9rem;
            margin-bottom: 2px;
        }

        .station-subtitle {
            font-family: 'Roboto', sans-serif;
            font-size: 0.85rem;
            opacity: 0.8;
            margin-bottom: 8px;
            font-weight: 400;
        }

        .player-controls {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .control-btn {
            width: 35px;
            height: 35px;
            border: none;
            border-radius: 50%;
            background: rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
            color: #000;
        }

        .control-btn:hover {
            background: rgba(0,0,0,0.2);
            transform: scale(1.05);
        }

        .play-btn {
            background: #000 !important;
            color: white !important;
        }

        .live-indicator {
            background: #dc2626;
            color: white;
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 0.7rem;
            font-weight: bold;
            margin-left: 8px;
            animation: pulse-red 2s infinite;
        }

        @keyframes pulse-red {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .google-play-btn {
            background: white;
            color: #000;
            padding: 12px 20px;
            border-radius: 12px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border: 2px solid #e5e7eb;
        }

        .google-play-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
            background: #f9fafb;
        }

        .google-play-logo {
            width: 24px;
            height: 24px;
        }

        .main-content {
            max-width: 1400px;
            margin: 40px auto;
            padding: 0 30px;
            display: grid;
            grid-template-columns: 1fr 650px; /* Aumentado de 350px a 650px */
            gap: 40px;
            align-items: start;
        }

        .social-section {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            border: 3px solid #6a0dad;
        }

        .social-header {
            background: #6a0dad;
            color: white;
            padding: 20px;
            text-align: center;
            font-size: 1.8rem;
            font-weight: bold;
            letter-spacing: 4px;
            position: relative;
        }

        .social-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #d60000, #a3e635, #d60000);
            animation: colorFlow 3s ease-in-out infinite;
        }

        @keyframes colorFlow {
            0%, 100% { transform: translateX(-100%); }
            50% { transform: translateX(100%); }
        }

        .social-content {
            padding: 30px;
        }

        .facebook-embed-container {
            background: #f8fafc;
            border-radius: 12px;
            padding: 20px;
            border: 1px solid #e2e8f0;
        }

        .facebook-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #e2e8f0;
        }

        .fb-profile-pic {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #6a0dad 0%, #8b5cf6 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .fb-profile-info h4 {
            color: #1f2937;
            font-size: 1rem;
            font-weight: bold;
            margin: 0;
        }

        .fb-profile-info p {
            color: #6b7280;
            font-size: 0.8rem;
            margin: 2px 0 0 0;
        }

        .video-container {
            position: relative;
            width: 100%;
            height: 350px;
            background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            margin-bottom: 20px;
        }

        .video-thumbnail {
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 450"><rect width="800" height="450" fill="%231f2937"/><rect x="50" y="50" width="200" height="150" fill="%234f46e5" rx="10"/><rect x="270" y="50" width="200" height="150" fill="%236366f1" rx="10"/><rect x="490" y="50" width="200" height="150" fill="%238b5cf6" rx="10"/><circle cx="150" cy="300" r="30" fill="%23a3e635"/><circle cx="370" cy="300" r="30" fill="%23d60000"/><circle cx="590" cy="300" r="30" fill="%23059669"/><text x="400" y="380" text-anchor="middle" fill="%23ffffff" font-family="Arial" font-size="24" font-weight="bold">MAXIMA FM ESTUDIOS</text></svg>') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(106, 13, 173, 0.8) 0%, rgba(30, 27, 75, 0.6) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .play-button-large {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }

        .play-button-large:hover {
            background: #a3e635;
            transform: scale(1.1);
        }

        .play-button-large i {
            font-size: 2.2rem;
            color: #000;
            margin-left: 5px;
        }

        .video-info {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        }

        .video-title {
            font-size: 1.1rem;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .video-description {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .post-content {
            color: #374151;
            line-height: 1.6;
            font-size: 1rem;
        }

        .post-title {
            font-family: 'Roboto', sans-serif;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 10px;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .post-date {
            color: #6b7280;
            font-size: 0.85rem;
            margin-bottom: 15px;
        }

        .engagement-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 15px;
            margin-top: 15px;
            border-top: 1px solid #e2e8f0;
        }

        .engagement-stats {
            display: flex;
            gap: 20px;
            color: #6b7280;
            font-size: 0.9rem;
        }

        .fb-logo {
            color: #1877f2;
            font-size: 1.2rem;
        }

        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 65px;
            height: 65px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            z-index: 1000;
            animation: whatsappPulse 3s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
        }

        @keyframes whatsappPulse {
            0%, 100% { 
                box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            }
            50% { 
                box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6), 0 0 0 15px rgba(37, 211, 102, 0.1);
            }
        }

        .whatsapp-float i {
            color: white;
            font-size: 2rem;
        }

        .notification-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            width: 24px;
            height: 24px;
            background: #dc2626;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.8rem;
            font-weight: bold;
            border: 2px solid white;
            animation: badgeBounce 2s infinite;
        }

        @keyframes badgeBounce {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        @media (max-width: 1024px) {
            .live-container {
                flex-direction: column;
                gap: 25px;
            }

            .players-container {
                order: 1;
            }

            .live-info {
                order: 2;
                align-items: center !important;
            }

            .live-info.right {
                order: 3;
                align-items: center !important;
            }
        }

        @media (max-width: 768px) {
            .logo {
                font-size: 3rem;
                letter-spacing: 6px;
            }

            .radio-player-card {
                min-width: 100%;
                max-width: 320px;
                margin: 0 auto;
            }

            .main-content {
                padding: 0 20px;
                margin: 30px auto;
            }

            .social-content {
                padding: 20px;
            }

            .video-container {
                height: 280px;
            }

            .social-header {
                font-size: 1.4rem;
                letter-spacing: 2px;
            }
        }

        .status-indicator {
            width: 8px;
            height: 8px;
            background: #22c55e;
            border-radius: 50%;
            animation: statusBlink 2s infinite;
        }

        @keyframes statusBlink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        /* Sidebar Styles */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .sidebar-section {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            border: 2px solid #e5e7eb;
            transition: all 0.3s ease;
        }

        .sidebar-section:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.15);
            border-color: #6a0dad;
        }

        .sidebar-header {
            background: linear-gradient(135deg, #d60000 0%, #b91c1c 100%);
            color: white;
            padding: 15px 20px;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .sidebar-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            animation: headerShine 3s infinite;
        }

        @keyframes headerShine {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .sidebar-header i {
            margin-right: 8px;
            color: #a3e635;
        }

        .sidebar-content {
            padding: 0;
        }

        /* News Section */
        .news-item {
            padding: 18px 20px;
            border-bottom: 1px solid #f1f5f9;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .news-item:last-child {
            border-bottom: none;
        }

        .news-item:hover {
            background: linear-gradient(135deg, #f8fafc 0%, #eafcfc 100%);
            padding-left: 25px;
        }

        .news-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: #d60000;
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .news-item:hover::before {
            transform: scaleY(1);
        }

        .news-title {
            font-family: 'Roboto', sans-serif;
            font-weight: 700;
            font-size: 1.05rem; /* Aumentado para mayor visibilidad */
            color: #1f2937;
            margin-bottom: 8px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.85rem; /* Aumentado ligeramente */
            color: #6b7280;
            margin-bottom: 8px;
        }

        .news-date {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .news-category {
            background: #6a0dad;
            color: white;
            padding: 3px 10px; /* Aumentado padding */
            border-radius: 12px;
            font-size: 0.75rem; /* Aumentado ligeramente */
            font-weight: 600;
            text-transform: uppercase;
        }

        .news-excerpt {
            font-family: 'Roboto', sans-serif;
            font-size: 0.9rem; /* Aumentado */
            color: #4b5563;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 3; /* Aumentado de 2 a 3 líneas */
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Videos Section */
        .video-item {
            padding: 20px; /* Aumentado padding */
            border-bottom: 1px solid #f1f5f9;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .video-item:last-child {
            border-bottom: none;
        }

        .video-item:hover {
            background: linear-gradient(135deg, #f8fafc 0%, #eafcfc 100%);
        }

        .video-thumbnail-small {
            width: 100%;
            height: 160px; /* Aumentado de 120px a 160px */
            background: linear-gradient(135deg, #1f2937 0%, #6a0dad 100%);
            border-radius: 8px;
            position: relative;
            overflow: hidden;
            margin-bottom: 15px; /* Aumentado */
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .video-thumbnail-small:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }

        .video-thumbnail-small::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 160"><rect width="300" height="160" fill="%231f2937"/><circle cx="150" cy="80" r="18" fill="%23d60000"/><rect x="20" y="120" width="260" height="25" fill="%23374151" rx="12"/></svg>') center/cover;
        }

        .video-play-small {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px; /* Aumentado */
            height: 50px; /* Aumentado */
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .video-play-small:hover {
            background: #a3e635;
            transform: translate(-50%, -50%) scale(1.1);
        }

        .video-play-small i {
            color: #000;
            font-size: 1rem; /* Aumentado */
            margin-left: 3px;
        }

        .video-duration {
            position: absolute;
            bottom: 10px; /* Ajustado */
            right: 10px; /* Ajustado */
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 3px 8px; /* Aumentado padding */
            border-radius: 4px;
            font-size: 0.75rem; /* Aumentado ligeramente */
            font-weight: 600;
        }

        .video-title {
            font-family: 'Roboto', sans-serif;
            font-weight: 600;
            font-size: 1rem; /* Aumentado */
            color: #1f2937;
            margin-bottom: 8px; /* Aumentado */
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .video-meta {
            font-size: 0.85rem; /* Aumentado */
            color: #6b7280;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .video-views {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        /* Responsive para el nuevo ancho */
        @media (max-width: 1400px) {
            .main-content {
                grid-template-columns: 1fr 580px; /* Ajustado para pantallas más pequeñas */
                gap: 35px;
            }
        }

        @media (max-width: 1200px) {
            .main-content {
                grid-template-columns: 1fr 500px;
                gap: 30px;
            }
        }

        @media (max-width: 1024px) {
            .main-content {
                grid-template-columns: 1fr;
                gap: 40px;
                max-width: 900px;
            }

            .sidebar {
                order: 2;
            }

            .social-section {
                order: 1;
            }
        }

        /* Footer Styles */
        .footer {
            background: linear-gradient(135deg, #6a0dad 0%, #4c1d95 100%);
            position: relative;
            overflow: hidden;
            margin-top: 60px;
        }

        .footer-waves {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 80px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23ffffff"></path><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23ffffff"></path><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23ffffff"></path></svg>') center top/cover no-repeat;
            z-index: 1;
        }

        .footer-content {
            position: relative;
            z-index: 2;
            padding: 100px 30px 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-logo-section {
            text-align: center;
            margin-bottom: 50px;
        }

        .footer-logo-circle {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #000000 0%, #1f2937 100%);
            border: 4px solid #a3e635;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            animation: logoGlow 3s ease-in-out infinite;
        }

        @keyframes logoGlow {
            0%, 100% { box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 0 0 rgba(163, 230, 53, 0.4); }
            50% { box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 0 10px rgba(163, 230, 53, 0.2); }
        }

        .footer-logo-circle .logo-m {
            font-size: 4rem;
            font-weight: bold;
            color: #a3e635;
            text-shadow: 0 0 20px rgba(163, 230, 53, 0.5);
        }

        .footer-brand-name {
            font-family: 'Montserrat', sans-serif;
            color: white;
            font-size: 3.5rem;
            font-weight: 900;
            letter-spacing: 8px;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            text-transform: uppercase;
        }

        .footer-tagline {
            font-family: 'Montserrat', sans-serif;
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            letter-spacing: 8px;
            font-weight: 500;
            text-transform: uppercase;
        }

        .footer-frequency {
            font-family: 'Montserrat', sans-serif;
            color: #a3e635;
            font-size: 2rem;
            font-weight: 700;
            margin-left: 15px;
        }

        .footer-info {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 40px;
            align-items: center;
            margin-top: 50px;
        }

        .footer-contact {
            color: white;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 1rem;
            font-weight: 500;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #a3e635;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .contact-text {
            flex: 1;
        }

        .contact-label {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: 3px;
        }

        .contact-value {
            font-weight: bold;
            font-size: 1rem;
        }

        .social-icons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .social-icon {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-icon.facebook {
            background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%);
        }

        .social-icon.youtube {
            background: linear-gradient(135deg, #ff0000 0%, #ff5722 100%);
        }

        .social-icon.tiktok {
            background: linear-gradient(135deg, #000000 0%, #ff0050 100%);
        }

        .social-icon:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        }

        .social-icon::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.5s ease;
        }

        .social-icon:hover::before {
            left: 100%;
        }

        .footer-right .contact-item:nth-child(1) .contact-icon {
            background: #25d366;
        }

        .footer-right .contact-item:nth-child(2) .contact-icon,
        .footer-right .contact-item:nth-child(3) .contact-icon {
            background: #1877f2;
        }

        @media (max-width: 1024px) {
            .footer-info {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }

            .footer-brand-name {
                font-size: 2.5rem;
                letter-spacing: 4px;
            }

            .footer-frequency {
                font-size: 1.5rem;
            }

            .footer-logo-circle {
                width: 100px;
                height: 100px;
            }

            .footer-logo-circle .logo-m {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .footer-content {
                padding: 80px 20px 30px;
            }

            .footer-brand-name {
                font-size: 2rem;
                letter-spacing: 2px;
            }

            .footer-tagline {
                font-size: 1rem;
                letter-spacing: 3px;
            }

            .contact-item {
                font-size: 0.9rem;
            }

            .social-icons {
                gap: 15px;
            }

            .social-icon {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
        }