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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d2d2d 100%);
            color: white;
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* Animated background particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: rgba(255, 107, 107, 0.3);
            border-radius: 50%;
            animation: float 6s infinite ease-in-out;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 1; }
            33% { transform: translateY(-20px) rotate(120deg); opacity: 0.8; }
            66% { transform: translateY(20px) rotate(240deg); opacity: 0.6; }
        }

        /* Navigation */
        .nav {
            position: relative;
            z-index: 10;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            background: rgba(30, 30, 30, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .logo {
            font-size: 1.5em;
            font-weight: bold;
            background: linear-gradient(135deg, #ff6b6b, #ee5a24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

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

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

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

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #ff6b6b, #ee5a24);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .cart-btn {
            position: relative;
            padding: 10px 20px;
            background: linear-gradient(135deg, #ff6b6b, #ee5a24);
            border: none;
            border-radius: 20px;
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .cart-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #ffa726;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8em;
            font-weight: bold;
        }

        /* Header Section */
        .header {
            position: relative;
            z-index: 10;
            padding: 80px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(238, 90, 36, 0.05) 100%);
            gap: 15px; /* Adjust spacing between elements */
        }

        .artist-name {
            font-size: 3.5em;
            font-weight: 900;
            color: var(--about-title-color);
            margin-bottom: 20px;
            animation: glow 3s ease-in-out infinite alternate;
        }

        .artist-subtitle {
            font-size: 1.3em;
            color: #888;
            margin-bottom: 30px;
        }

        .artist-photo {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            margin: 0 auto 30px;
            background: linear-gradient(135deg, #ff6b6b, #ee5a24);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3em;
            font-weight: bold;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(255, 107, 107, 0.3);
        }

        .artist-photo::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: rotate(45deg);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { transform: rotate(45deg) translateX(-200%); }
            50% { transform: rotate(45deg) translateX(200%); }
            100% { transform: rotate(45deg) translateX(-200%); }
        }

        @keyframes glow {
            from { filter: drop-shadow(0 0 20px rgba(255, 107, 107, 0.5)); }
            to { filter: drop-shadow(0 0 40px rgba(255, 107, 107, 0.8)); }
        }

        /* Content Sections */
        .content {
            position: relative;
            z-index: 10;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px 80px;
        }

        .section {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 25px;
            padding: 40px;
            margin-bottom: 40px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--about-section-gradient-start), var(--about-section-gradient-end));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .section:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .section:hover::before {
            opacity: 1;
        }

        .section-title {
            font-size: 2.2em;
            font-weight: bold;
            color: var(--about-accent-color);
            -webkit-background-clip: text;
            -webkit-text-fill-color: var(--about-accent-color);
            background: none;
            background-clip: initial;
            margin-bottom: 25px;
            position: relative;
            z-index: 2;
        }

        .section-content {
            color: var(--about-text-color);
            font-size: 1.1em;
            line-height: 1.8;
            position: relative;
            z-index: 2;
        }

        .section-content p {
            margin-bottom: 20px;
        }

        .section-content p:last-child {
            margin-bottom: 0;
        }

        /* Skills Section */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .skill-item {
            background: rgba(255, 255, 255, 0.08);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .skill-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .skill-item:hover {
            transform: translateY(-3px);
            background: rgba(255, 107, 107, 0.1);
            border-color: rgba(255, 107, 107, 0.3);
        }

        .skill-item:hover::before {
            left: 100%;
        }

        .skill-name {
            font-weight: bold;
            color: var(--about-accent-color);
            font-size: 1.1em;
            margin-bottom: 5px;
        }

        .skill-description {
            color: #bbb;
            font-size: 0.95em;
        }

        /* Social Links */
        .social-section {
            text-align: center;
            margin-top: 60px;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 30px;
        }

        .social-link {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            font-size: 1.5em;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #ff6b6b, #ee5a24);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .social-link:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
        }

        .social-link:hover::before {
            opacity: 1;
        }

        .social-link span {
            position: relative;
            z-index: 2;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav {
                padding: 15px 20px;
                flex-direction: column;
                gap: 20px;
            }

            .nav-links {
                gap: 20px;
            }

            .header {
                padding: 50px 15px;
            }

            .artist-photo {
                width: 150px;
                height: 150px;
                font-size: 2.5em;
            }

            .artist-name {
                font-size: 2.5em;
            }

            .artist-subtitle {
                font-size: 1.1em;
            }

            .content {
                padding: 30px 15px 60px;
            }

            .section {
                padding: 25px 20px;
                margin-bottom: 25px;
            }

            .section-title {
                font-size: 1.8em;
            }

            .section-content {
                font-size: 1em;
            }

            .skills-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .social-links {
                gap: 20px;
            }

            .social-link {
                width: 50px;
                height: 50px;
                font-size: 1.3em;
            }
        }

        @media (max-width: 480px) {
            .nav {
                padding: 12px 15px;
            }

            .logo {
                font-size: 1.3em;
            }

            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }

            .nav-links a {
                font-size: 0.9em;
            }

            .header {
                padding: 40px 10px;
            }

            .artist-name {
                font-size: 2em;
            }

            .section {
                padding: 20px 15px;
            }
        }