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

        body {
            font-family: 'Courier New', monospace;
            background-color: #f9f5f0;
            color: #2c2c2c;
            line-height: 1.6;
        }
/* Navigation */
        nav {
            background: #2c2c2c;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            color: #ffd700;
            font-size: 1.5em;
            font-weight: bold;
            padding: 15px 0;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            padding: 20px 0;
            display: block;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: #ffd700;
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 10px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #ffd700;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Header */
        header {
            text-align: center;
            padding: 80px 20px 60px;
            background: linear-gradient(180deg, #fff9f0 0%, #f9f5f0 100%);
            position: relative;
            overflow: hidden;
        }

        header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(255, 200, 150, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(150, 200, 255, 0.2) 0%, transparent 50%);
            pointer-events: none;
        }

        h1 {
            font-size: 4em;
            font-weight: bold;
            color: #d44848;
            text-shadow: 3px 3px 0 #ffd700;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .subtitle {
            font-size: 1.5em;
            color: #5a5a5a;
            font-style: italic;
            position: relative;
            z-index: 1;
        }

        /* Decorative stars */
        .star {
            position: absolute;
            font-size: 2em;
            animation: twinkle 3s infinite;
            z-index: 0;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.2); }
        }

        /* Container */
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Section Styling */
        section {
            margin: 60px 0;
            padding: 40px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 8px;
            background: linear-gradient(90deg, #d44848, #ffd700, #4a9eff);
        }

        h2 {
            font-size: 2.5em;
            color: #d44848;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        h2::after {
            content: '★';
            position: absolute;
            right: 20%;
            top: -10px;
            font-size: 0.5em;
            color: #ffd700;
            animation: spin 4s linear infinite;
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Video Section */
        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Bio Section */
        .bio-content {
            display: flex;
            gap: 30px;
            align-items: center;
            flex-wrap: wrap;
        }

        .bio-image {
            flex: 1;
            min-width: 250px;
            text-align: center;
        }

        .bio-image img {
            width: 100%;
            max-width: 350px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
            border: 5px solid #ffd700;
        }

        .bio-text {
            flex: 2;
            min-width: 300px;
        }

        .bio-text p {
            margin-bottom: 20px;
            font-size: 1.1em;
            text-align: justify;
        }

        /* Show Section */
        .show-details {
            background: linear-gradient(135deg, #fff9f0 0%, #ffe6e6 100%);
            padding: 30px;
            border-radius: 15px;
            margin-top: 20px;
        }

        .show-details h3 {
            color: #d44848;
            font-size: 1.8em;
            margin-bottom: 15px;
        }

        .show-details p {
            margin-bottom: 15px;
            font-size: 1.1em;
        }

        .show-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .highlight-card {
            background: white;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .highlight-card:hover {
            transform: translateY(-5px);
        }

        .highlight-card .icon {
            font-size: 2.5em;
            margin-bottom: 10px;
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 40px 20px;
            background: #2c2c2c;
            color: white;
            margin-top: 80px;
        }

        footer a {
            color: #ffd700;
            text-decoration: none;
            font-weight: bold;
        }

        footer a:hover {
            text-decoration: underline;
        }

        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }
        /* Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5em;
            }

            .subtitle {
                font-size: 1.2em;
            }

            h2 {
                font-size: 2em;
            }

            .bio-content {
                flex-direction: column;
            }

            section {
                padding: 30px 20px;
            }
/* Mobile Navigation */
            .menu-toggle {
                display: flex;
            }

            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                flex-direction: column;
                background: #2c2c2c;
                gap: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            .nav-links.active {
                max-height: 300px;
            }

            .nav-links a {
                padding: 15px 20px;
                border-bottom: 1px solid #444;
            }

            .nav-container {
                position: relative;
            }
        }
    </style>
