* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #0B0C2A 0%, #1a1a3a 50%, #2a2a5a 100%);
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: linear-gradient(90deg, rgba(11,12,42,0.95) 0%, rgba(138,43,226,0.95) 100%);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            background: linear-gradient(45deg, #00FFFF, #FF1493);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .nav-menu a:hover {
            color: #00FFFF;
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 3px;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: #00FFFF;
            transition: 0.3s;
        }

        .main-content {
            margin-top: 100px;
            padding: 4rem 0;
        }

        .hero-about {
            text-align: center;
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #8A2BE2 0%, #FF1493 100%);
            margin-bottom: 4rem;
        }

        .hero-about h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #00FFFF, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-about p {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .section {
            padding: 4rem 0;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 2rem;
            padding-right: 2rem;
        }

        .section h2 {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 3rem;
            background: linear-gradient(45deg, #00FFFF, #8A2BE2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .artist-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 4rem;
        }

        .artist-image {
            background: url('../img/03.jpg') center/cover;
            height: 500px;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0, 255, 255, 0.3);
        }

        .artist-info h3 {
            font-size: 2rem;
            color: #00FFFF;
            margin-bottom: 1rem;
        }

        .artist-info p {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
        }

        .timeline {
            background: linear-gradient(135deg, rgba(138,43,226,0.1), rgba(255,20,147,0.1));
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 4rem;
        }

        .timeline-item {
            display: flex;
            gap: 2rem;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid rgba(0, 255, 255, 0.2);
        }

        .timeline-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .timeline-year {
            font-size: 2rem;
            font-weight: bold;
            color: #FF1493;
            min-width: 100px;
        }

        .timeline-content h4 {
            font-size: 1.5rem;
            color: #00FFFF;
            margin-bottom: 0.5rem;
        }

        .philosophy {
            background: linear-gradient(135deg, rgba(11,12,42,0.8), rgba(138,43,226,0.8));
            border-radius: 20px;
            padding: 3rem;
            text-align: center;
            border: 2px solid rgba(0, 255, 255, 0.3);
        }

        .philosophy blockquote {
            font-size: 1.8rem;
            font-style: italic;
            color: #00FFFF;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .philosophy cite {
            font-size: 1.2rem;
            color: #FF1493;
        }

        .footer {
            background: linear-gradient(135deg, #0B0C2A, #1a1a3a);
            padding: 3rem 0 1rem;
            margin-top: 4rem;
            border-top: 2px solid rgba(0, 255, 255, 0.3);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-section h3 {
            color: #00FFFF;
            margin-bottom: 1rem;
        }

        .footer-section a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #FF1493;
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: linear-gradient(135deg, #0B0C2A, #8A2BE2);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                padding: 2rem 0;
                backdrop-filter: blur(10px);
            }

            .nav-menu.active {
                left: 0;
            }

            .burger {
                display: flex;
            }

            .burger.active span:nth-child(2) {
                opacity: 0;
            }

            .burger.active span:nth-child(1) {
                transform: translateY(6px) rotate(45deg);
            }

            .burger.active span:nth-child(3) {
                transform: translateY(-6px) rotate(-45deg);
            }

            .hero-about h1 {
                font-size: 2.5rem;
            }

            .hero-about p {
                font-size: 1.2rem;
            }

            .section h2 {
                font-size: 2rem;
            }

            .artist-grid {
                grid-template-columns: 1fr;
            }

            .timeline-item {
                flex-direction: column;
            }

            .timeline-year {
                min-width: auto;
            }

            .philosophy blockquote {
                font-size: 1.4rem;
            }
        }

