
        body {
            margin: 0;
            font-family: 'Poppins', sans-serif;
            background-color: #141414;
            color: #f5f5f5;
            line-height: 1.6;
        }
        header {
            background-color: #0d0d0d;
            padding: 15px 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 2px solid #e50914;
            font-family: 'Orbitron', sans-serif;
        }
        header .logo {
            font-size: 28px;
            font-weight: 700;
            color: #e50914;
            text-transform: uppercase;
            cursor: default;
            user-select: none;
        }
        nav {
            display: flex;
            gap: 20px;
        }
        nav a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: color 0.3s ease;
        }
        nav a:hover {
            color: #e50914;
        }
        main {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1, h2 {
            color: #e50914;
            margin-bottom: 15px;
            font-family: 'Orbitron', sans-serif;
        }
        /* Adding Unicode symbol at end of headings with spacing */
        h1::after, h2::after {
            margin-left: 8px;
            font-weight: normal;
            color: #f5f5f5;
        }
        h1::after {
            content: "\2728"; /* sparkles */
        }
        h2::after {
            content: "\27A4"; /* arrow */
        }
        img.responsive {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 20px auto;
            border-radius: 8px;
            box-shadow: 0 0 15px rgba(229, 9, 20, 0.7);
        }
        .btn-action {
            display: inline-block;
            background-color: #e50914;
            color: #fff;
            padding: 12px 24px;
            margin: 10px auto 30px;
            font-weight: 600;
            font-size: 18px;
            text-align: center;
            border-radius: 30px;
            cursor: pointer;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }
        .btn-action:hover {
            background-color: #b0070f;
        }
        footer {
            background-color: #0d0d0d;
            color: #888;
            text-align: center;
            padding: 20px 10px;
            font-size: 14px;
            border-top: 2px solid #e50914;
            margin-top: 50px;
        }
        footer a {
            color: #e50914;
            margin: 0 12px;
            text-decoration: none;
            font-weight: 600;
        }
        footer a:hover {
            text-decoration: underline;
        }
    