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

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

        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(139, 69, 19, 0.3);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo img {
            height: 60px;
            width: auto;
            filter: drop-shadow(0 0 10px rgba(212, 165, 116, 0.3));
            transition: filter 0.3s;
        }
        
        
.hero-banner {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 1.5rem auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
}


        .logo img:hover {
            filter: drop-shadow(0 0 20px rgba(212, 165, 116, 0.6));
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 1.1rem;
        }

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

        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #1a0a00, #0a0a0a, #1a1a0a);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
            opacity: 0.8;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .hero-content {
            text-align: center;
            z-index: 1;
            padding: 2rem;
        }

        .hero h1 {
            font-size: 5rem;
            margin-bottom: 1rem;
            color: #d4a574;
            text-shadow: 0 0 20px rgba(212, 165, 116, 0.5);
            letter-spacing: 3px;
        }

        .subtitle {
            font-size: 1.5rem;
            color: #ccc;
            margin-bottom: 2rem;
            letter-spacing: 2px;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2.5rem;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .btn-primary {
            background: linear-gradient(45deg, #8b4513, #d4a574);
            color: #fff;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: #d4a574;
            border: 2px solid #d4a574;
        }

        .btn-secondary:hover {
            background: #d4a574;
            color: #0a0a0a;
        }

        section {
            padding: 6rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .youtube-section {
            background: #0f0f0f;
            padding: 6rem 5%;
            margin: 0;
            max-width: 100%;
        }

        .youtube-section h2 {
            margin-bottom: 1rem;
        }

        .youtube-intro {
            text-align: center;
            font-size: 1.2rem;
            color: #ccc;
            margin-bottom: 3rem;
        }

        .youtube-container {
            max-width: 900px;
            margin: 0 auto 2rem;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(212, 165, 116, 0.2);
        }

        .youtube-container iframe {
            display: block;
        }

        .youtube-actions {
            text-align: center;
        }

        h2 {
            font-size: 3rem;
            color: #d4a574;
            margin-bottom: 3rem;
            text-align: center;
        }

        .music-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .music-card-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .music-card {
            background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: transform 0.3s;
            border: 1px solid rgba(212, 165, 116, 0.2);
        }

        .music-card:hover {
            transform: translateY(-10px);
            border-color: #d4a574;
        }

        .album-cover {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, #8b4513, #d4a574);
            border-radius: 10px;
            margin-bottom: 1.5rem;
            overflow: hidden;
        }

        .album-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .music-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: #d4a574;
        }

        .music-card p {
            color: #fff;
            font-size: 1rem;
        }

        .services-section {
            background: #0f0f0f;
            padding: 6rem 5%;
            margin: 0;
            max-width: 100%;
        }

        .services-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }

        .services-intro p {
            font-size: 1.3rem;
            color: #ccc;
            line-height: 1.8;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .service-card {
            background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
            border: 1px solid rgba(212, 165, 116, 0.2);
            border-radius: 15px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: #d4a574;
            box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            font-size: 1.5rem;
            color: #d4a574;
            margin-bottom: 1rem;
        }

        .service-card p {
            color: #ccc;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .services-cta {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .services-note {
            font-size: 1.3rem;
            color: #ccc;
            margin-bottom: 2rem;
        }

        .bio-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .bio-text p {
            font-size: 1.2rem;
            color: #ccc;
            margin-bottom: 1.5rem;
        }

        .bio-image {
            height: 400px;
            background: linear-gradient(135deg, #8b4513, #d4a574);
            background-size: cover;
            background-position: center;
            border-radius: 15px;
        }

        .patreon-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .patreon-text h3 {
            font-size: 2rem;
            color: #d4a574;
            margin-bottom: 1.5rem;
        }

        .patreon-text p {
            font-size: 1.2rem;
            color: #ccc;
            margin-bottom: 2rem;
        }

        .patreon-benefits {
            list-style: none;
            margin-bottom: 2.5rem;
        }

        .patreon-benefits li {
            font-size: 1.1rem;
            color: #ccc;
            margin-bottom: 1rem;
            padding-left: 0;
        }

        .btn-large {
            padding: 1.2rem 3rem;
            font-size: 1.2rem;
            display: inline-block;
        }

        .patreon-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .patreon-card {
            background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
            border: 2px solid #d4a574;
            border-radius: 15px;
            padding: 3rem;
            text-align: center;
            box-shadow: 0 10px 40px rgba(212, 165, 116, 0.2);
        }

        .patreon-card h4 {
            font-size: 1.8rem;
            color: #d4a574;
            margin-bottom: 1.5rem;
        }

        .patreon-card p {
            font-size: 1.1rem;
            color: #ccc;
            line-height: 1.8;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-form input,
        .contact-form textarea {
            padding: 1rem;
            background: #1a1a1a;
            border: 1px solid #d4a574;
            border-radius: 5px;
            color: #fff;
            font-size: 1rem;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: #d4a574;
            box-shadow: 0 0 10px rgba(212, 165, 116, 0.3);
        }

        .social-links {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .social-icon {
            padding: 1rem 2rem;
            background: #1a1a1a;
            color: #d4a574;
            text-decoration: none;
            border-radius: 5px;
            text-align: center;
            transition: all 0.3s;
            border: 1px solid #d4a574;
        }

        .social-icon:hover {
            background: #d4a574;
            color: #0a0a0a;
        }

        footer {
            text-align: center;
            padding: 2rem;
            background: #000;
            color: #999;
        }

        @media (max-width: 768px) {
            .nav-links {
                gap: 0.8rem;
                font-size: 0.85rem;
            }

            .logo img {
                height: 40px;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .bio-content,
            .contact-content,
            .patreon-content {
                grid-template-columns: 1fr;
            }

            .music-grid {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }
        }

    </style>