<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Impact', 'Arial Black', sans-serif;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: #ffffff;
            line-height: 1.6;
        }

        header {
            background-color: #000000;
            padding: 20px 0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        }

        h1 {
            text-align: center;
            font-size: 3.5em;
            color: #d60606;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
            letter-spacing: 5px;
            text-transform: uppercase;
        }

        nav {
            background-color: #1a1a1a;
            padding: 15px 0;
            text-align: center;
            border-top: 2px solid #d60606;
            border-bottom: 2px solid #d60606;
        }

        nav a {
          color: #d60606;
          text-decoration: none;
          padding: 10px 25px;
          margin: 0 10px;
          font-size: 1.1em;
          transition: all 0.3s ease;
          border-radius: 5px;
          font-family: 'Arial Black', Impact, sans-serif;
          font-weight: bold;
          text-transform: uppercase;
          letter-spacing: 2px;
        }

        nav a:hover {
            background-color: #ffda0a;
            transform: translateY(-2px);
        }

        section {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
        }

        h2 {
            font-size: 3em;
            color: #d60606;
            text-align: center;
            margin-bottom: 50px;
            text-transform: uppercase;
            letter-spacing: 4px;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
        }


        .carousel-container {
            position: relative;
            max-width: 900px;
            margin: 0 auto 60px auto;
            background-color: rgba(0, 0, 0, 0.7);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            border: 3px solid #d60606;
            min-height: 400px;
        }

        .carousel-slide {
            display: none;
            text-align: center;
            animation: fadeIn 1s;
        }

        .carousel-slide.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .carousel-slide img {
            max-width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 20px;
            border: 2px solid #d60606;
        }

        .carousel-slide h3 {
            font-size: 2.5em;
            color: #d60606;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .carousel-slide p {
            font-size: 1.2em;
            color: #e0e0e0;
            font-family: 'Courier New', monospace;
            line-height: 1.8;
        }

        .carousel-indicators {
            text-align: center;
            margin-top: 20px;
        }

        .indicator {
            display: inline-block;
            width: 12px;
            height: 12px;
            background-color: #555;
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .indicator.active {
            background-color: #d60606;
            transform: scale(1.3);
        }


        .tabla-container {
            background-color: rgba(0, 0, 0, 0.7);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 50px;
            border: 3px solid #d60606;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }

        table th {
            background-color: #d60606;
            color: #000;
            padding: 15px;
            text-align: left;
            font-size: 1.2em;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        table td {
            padding: 15px;
            border-bottom: 1px solid #444;
            font-family: 'Courier New', monospace;
            font-size: 1.1em;
        }

        table tr:hover {
            background-color: rgba(255, 107, 107, 0.1);
        }


        .subgeneros {
            background-color: rgba(0, 0, 0, 0.7);
            border-radius: 15px;
            padding: 30px;
            border: 3px solid #d60606;
        }

        .subgeneros h3 {
            font-size: 2em;
            color: #d60606;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .subgeneros ul {
            list-style: none;
            padding: 0;
        }

        .subgeneros li {
            background-color: rgba(255, 107, 107, 0.1);
            padding: 15px 20px;
            margin-bottom: 10px;
            border-left: 5px solid #d60606;
            border-radius: 5px;
            font-family: 'Courier New', monospace;
            font-size: 1.1em;
            transition: all 0.3s;
        }

        .subgeneros li:hover {
            background-color: rgba(255, 107, 107, 0.2);
            transform: translateX(10px);
        }

        footer {
            background-color: #000000;
            text-align: center;
            padding: 20px;
            margin-top: 50px;
            border-top: 2px solid #d60606;
        }

        footer p {
            color: #b0b0b0;
            font-family: 'Courier New', monospace;
        }
    </style>
