@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&family=Oswald:wght@700&display=swap');

        :root {
            --primary-color: #FF00FF;
            --secondary-color: #00FFFF;
            --accent-color: #B84D23;
            --dark-color: #111;
            --darker-gray: #222;
            --gray-color: #333;
            --text-color: #fff;
            --font-main: 'Roboto Mono', monospace;
            --font-accent: 'Oswald', sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--dark-color);
            color: var(--text-color);
            line-height: 1.6;
            font-size: 16px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--darker-gray);
            z-index: 1000;
            border-bottom: 2px solid var(--accent-color);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-family: var(--font-accent);
            font-size: 2rem;
            color: var(--primary-color);
            text-decoration: none;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
            transition: color 0.3s;
        }

        .logo:hover {
            color: var(--secondary-color);
        }

        .nav-list {
            list-style: none;
            display: flex;
            gap: 30px;
        }

        .nav-link {
            text-decoration: none;
            color: var(--text-color);
            font-size: 1rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            transition: color 0.3s;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        .burger-menu {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            position: relative;
            z-index: 1000;
        }

        .burger-menu div {
            width: 25px;
            height: 3px;
            background-color: var(--text-color);
            transition: 0.3s;
        }

        @media (max-width: 768px) {
            .nav-list {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100%;
                background-color: var(--darker-gray);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 40px;
                transition: right 0.5s ease-in-out;
                z-index: 999;
                box-shadow: -5px 0 10px rgba(0, 0, 0, 0.5);
            }
            
            .nav-list.active {
                right: 0;
            }

            .burger-menu {
                display: flex;
            }
        }
        
        main {
            padding-top: 120px;
            padding-bottom: 80px;
            min-height: calc(100vh - 120px);
        }

        h1, h2, h3 {
            font-family: var(--font-accent);
            text-transform: uppercase;
            color: var(--primary-color);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
            margin-bottom: 20px;
        }

        h1 {
            font-size: 2.5rem;
            text-align: center;
        }
        
        h2 {
            font-size: 1.8rem;
            margin-top: 40px;
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 5px;
        }
        
        h3 {
            font-size: 1.5rem;
            color: var(--secondary-color);
        }

        p, li {
            font-size: 1rem;
            margin-bottom: 15px;
        }
        
        ul {
            padding-left: 25px;
            margin-bottom: 20px;
        }
        
        li {
            list-style-type: '🎵 ';
            margin-bottom: 10px;
        }
        
        footer {
            background-color: var(--darker-gray);
            color: #ccc;
            padding: 40px 0;
            text-align: center;
            border-top: 2px solid var(--primary-color);
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .footer-logo {
            font-family: var(--font-accent);
            font-size: 1.8rem;
            color: var(--secondary-color);
        }
        
        .footer-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .footer-link {
            text-decoration: none;
            color: #ccc;
            font-size: 0.9rem;
            transition: color 0.3s;
        }
        
        .footer-link:hover {
            color: var(--primary-color);
        }
        
        .footer-contact {
            text-align: right;
            line-height: 1.8;
        }
        
        .footer-contact p {
            margin: 0;
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            .footer-contact {
                text-align: center;
            }
        }

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Courier New', monospace;
            background: linear-gradient(45deg, #FF006B, #00D4FF, #8B00FF, #FFFF00);
            background-size: 400% 400%;
            animation: gradientShift 8s ease infinite;
            color: #fff;
            line-height: 1.6;
        }
        
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 2rem;
            border-bottom: 2px solid #FF006B;
        }
        
        .header-content {
    display: flex
;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
        
        .logo {
            font-size: 2rem;
            font-weight: bold;
            background: linear-gradient(45deg, #FF006B, #00D4FF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 20px #FF006B;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        nav a {
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }
        
        nav a:hover {
            color: #FF006B;
            text-shadow: 0 0 10px #FF006B;
        }
        
        main {
            margin-top: 100px;
            padding: 2rem;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .content-container {
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(15px);
            border-radius: 25px;
            padding: 3rem;
            border: 2px solid rgba(255, 0, 107, 0.3);
        }
        
        h1 {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 2rem;
            background: linear-gradient(45deg, #FF006B, #00D4FF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 30px #FF006B;
        }
        
        h2 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem 0;
            color: #00D4FF;
            border-bottom: 2px solid rgba(0, 212, 255, 0.3);
            padding-bottom: 0.5rem;
        }
        
        h3 {
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem 0;
            color: #FFFF00;
        }
        
        p {
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        
        ul {
            margin: 1rem 0 1rem 2rem;
        }
        
        li {
            margin-bottom: 0.5rem;
        }
        
        .highlight {
            background: linear-gradient(45deg, rgba(255, 0, 107, 0.3), rgba(0, 212, 255, 0.3));
            padding: 1rem;
            border-radius: 10px;
            margin: 1rem 0;
            border-left: 4px solid #FF006B;
        }
        
        .contact-info {
            background: rgba(139, 0, 255, 0.3);
            padding: 1.5rem;
            border-radius: 15px;
            margin: 2rem 0;
        }
        
        footer {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(139, 0, 255, 0.3));
            padding: 3rem 2rem 1rem;
            border-top: 3px solid #FF006B;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .footer-section h3 {
            color: #00D4FF;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        .footer-section p,
        .footer-section a {
            color: #ccc;
            text-decoration: none;
            line-height: 1.6;
            transition: color 0.3s ease;
        }
        
        .footer-section a:hover {
            color: #FF006B;
        }
        
        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            color: #888;
        }
        
        @media (max-width: 768px) {
            nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .content-container {
                padding: 2rem;
                margin-top: 1rem;
            }
        }

