      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #0a0a0a;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #e0e0e0;
            line-height: 1.6;
        }

        /* Contenedor principal del artículo */
        .articulo {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
		
        /* Cabecera con imagen de fondo y título superpuesto */
        .card {
            position: relative;
            display: block;
            width: 100%;
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
            text-decoration: none;
            margin-bottom: 30px;
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease;
        }

        .card:hover {
            transform: scale(1.01);
        }

        .img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        /* Overlay oscuro sobre la imagen */
        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            transition: background 0.3s ease;
            z-index: 2;
        }

        .card:hover::before {
            background: rgba(0, 0, 0, 0.6);
        }

        /* Título superpuesto */
        .texto-titulo {
            position: absolute;
            bottom: 30px;
            left: 30px;
            right: 30px;
            z-index: 3;
            color: white;
            font-size: 2.5rem;
            font-weight: 700;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
            background: linear-gradient(to right, rgba(0,0,0,0.7), transparent);
            padding: 20px 30px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .card:hover .texto-titulo {
            transform: translateY(-10px);
            text-shadow: 0 0 20px rgba(255, 170, 0, 0.5);
        }

        /* Estilos para el contenido del artículo */
        .texto-subtitulo {
            font-size: 1.8rem;
            font-weight: 600;
            color: #ffaa00;
            margin: 30px 0 15px 0;
            border-left: 5px solid #ffaa00;
            padding-left: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .texto-info {
            background: rgba(30, 30, 30, 0.9);
            backdrop-filter: blur(5px);
            border-radius: 20px;
            padding: 30px;
            margin: 20px 0;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            border: 1px solid #333;
            font-size: 2.5rem;
        }

        .texto-info p {
            font-size: 1.6rem;
            color: #8080ff;
            margin-bottom: 20px;
            text-align: justify;
        }

        .texto-info b {
            color: #ffaa00;
        }

        /* Enlaces */
        a {
            color: #ffaa00;
            text-decoration: none;
            transition: color 0.2s;
        }

        a:hover {
            color: #ffdd44;
            text-decoration: underline;
        }

        /* Video */
        iframe {
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            border: 2px solid #ffaa00;
        }

        /* Formulario de comentarios */
        form {
            background: #1e1e1e;
            padding: 30px;
            border-radius: 20px;
            margin: 30px 0;
            border: 1px solid #333;
        }

        .control-label label {
            color: #ffaa00 !important;
            font-weight: 600;
            margin-bottom: 10px;
            display: block;
        }

        .form-control {
            background: #2a2a2a;
            border: 1px solid #444;
            color: white;
            border-radius: 10px;
            padding: 12px;
            transition: all 0.2s;
        }

        .form-control:focus {
            background: #333;
            border-color: #ffaa00;
            box-shadow: 0 0 0 0.2rem rgba(255, 170, 0, 0.25);
            color: white;
        }

        .btn-success {
            background: #ffaa00;
            border: none;
            color: #1a1a1a;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.2s;
            margin-top: 20px;
        }

        .btn-success:hover {
            background: #ffdd44;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 170, 0, 0.4);
        }

        /* Panel de comentarios (tabla) */
        .panel {
            background: #1e1e1e;
            border-radius: 20px;
            padding: 20px;
            border: 1px solid #333;
            margin-top: 40px;
        }

        .panel-heading h3 {
        	background: balck;
            color: #ffaa00;; 
            margin-bottom: 20px;
            font-weight: 600;
        }

		.panel panel-info {
        	background: red;
		}
		
        .table {
		    
		    color: #ddd;
        }

        .table thead th {
            color: #ffaa00;
            border-bottom: 2px solid #ffaa00;
            font-weight: 600;
        }

        .table tbody tr:hover {
            background: rgba(255, 170, 0, 0.1);
        }

        .table td, .table th {
        	background: black;
            border-top: 1px solid #444;
            padding: 12px;
        }

        /* Ajustes responsivos */
        @media (max-width: 768px) {
            .card {
                height: 300px;
            }
            .texto-titulo {
                font-size: 1.8rem;
                left: 20px;
                right: 20px;
                padding: 15px;
            }
            .texto-subtitulo {
                font-size: 1.5rem;
            }
        }