:root {
            --bg-color: #0f0f13;
            --primary-pink: #ff8bc6;
            --pink-glow: rgba(255, 139, 198, 0.4);
            --secondary-blue: #3c78d8;
            --yellow-accent: #fccc04;
            --text-main: #f5f5f7;
            --text-muted: #a1a1aa;
            --glass-bg: rgba(255, 255, 255, 0.03);
            --glass-border: rgba(255, 255, 255, 0.08);
        }

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

        body {
            background-color: var(--bg-color);
            color: var(--text-main);
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 15% 50%, rgba(255, 139, 198, 0.05), transparent 25%),
                radial-gradient(circle at 85% 30%, rgba(60, 120, 216, 0.05), transparent 25%);
            background-attachment: fixed;
        }

        h1, h2, h3, h4 {
            font-family: 'Outfit', sans-serif;
        }

        /* Navbar */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(15, 15, 19, 0.6);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--glass-border);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .logo {
            font-weight: 900;
            font-size: 1.8rem;
            color: var(--primary-pink);
            text-transform: uppercase;
            letter-spacing: -0.5px;
            text-shadow: 0 0 15px var(--pink-glow);
            cursor: pointer;
        }

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

        .nav-links a {
            color: var(--text-main);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary-pink);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem 5%;
            position: relative;
            padding-top: 80px;
        }

        .hero-content {
            flex: 1;
            max-width: 600px;
            z-index: 2;
            animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .pill {
            display: inline-block;
            padding: 0.5rem 1.2rem;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary-pink);
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .hero h1 {
            font-size: clamp(3rem, 8vw, 5.5rem);
            line-height: 1.1;
            margin-bottom: 1.2rem;
            font-weight: 900;
            background: linear-gradient(135deg, #fff 0%, var(--primary-pink) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 10px 30px rgba(255, 139, 198, 0.2);
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 2.5rem;
            max-width: 500px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.5rem;
            background: var(--primary-pink);
            color: #000;
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            border-radius: 12px;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 10px 25px var(--pink-glow);
            position: relative;
            overflow: hidden;
        }

        .btn-primary:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 15px 35px var(--pink-glow);
        }

        .hero-visual {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            animation: float 6s ease-in-out infinite;
            gap: 20px;
        }

        .mac-window {
            width: 100%;
            max-width: 500px;
            background: rgba(20, 20, 25, 0.7);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0,0,0,0.5);
            backdrop-filter: blur(20px);
        }

        .window-header {
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.02);
            border-bottom: 1px solid var(--glass-border);
            display: flex;
            gap: 8px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }
        .dot.red { background: #ff5f56; }
        .dot.yellow { background: #ffbd2e; }
        .dot.green { background: #27c93f; }

        .window-content {
            padding: 0;
            position: relative;
            min-height: 280px;
        }

        /* Features / Quotes */
        .marquee-container {
            padding: 4rem 0;
            background: var(--primary-pink);
            transform: rotate(-2deg) scale(1.05);
            margin: 4rem 0;
            white-space: nowrap;
            overflow: hidden;
            position: relative;
            box-shadow: 0 0 30px var(--pink-glow);
        }

        .marquee-content {
            display: inline-block;
            animation: marquee 20s linear infinite;
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            font-size: 2.5rem;
            color: #000;
            text-transform: uppercase;
        }

        .marquee-content span {
            margin: 0 2rem;
        }

        /* Gallery Section */
        .gallery-section {
            padding: 6rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--text-main);
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-muted);
            margin-bottom: 4rem;
            font-size: 1.1rem;
        }

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

        .card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 1.5rem;
            backdrop-filter: blur(10px);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            border-radius: 20px;
            padding: 2px;
            background: linear-gradient(135deg, var(--primary-pink), transparent);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .card:hover::before {
            opacity: 1;
        }
        
        .gif-wrapper {
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 1.5rem;
            background: #1a1a24;
            min-height: 200px;
            position: relative;
        }

        .hidden-embed {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
            will-change: opacity, transform;
        }

        .visible-embed {
            opacity: 1;
            transform: translateY(0);
        }

        .card h3 {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
        }

        .card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 4rem 5%;
            border-top: 1px solid var(--glass-border);
            margin-top: 4rem;
            color: var(--text-muted);
        }

        .heart {
            color: var(--primary-pink);
            display: inline-block;
            animation: pulse 1.5s infinite;
        }

        /* Animations */
        @keyframes slideUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        /* Responsive */
        @media (max-width: 900px) {
            .hero {
                flex-direction: column;
                text-align: center;
                gap: 4rem;
            }
            .hero-content {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            .hero-visual {
                width: 100%;
            }
            .nav-links {
                display: none;
            }
        }
        /* Preloader */
        #preloader {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100vh;
            background: var(--primary-pink);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
        }

        .spinning-head {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            animation: spin 1s linear infinite;
            box-shadow: 0 0 30px rgba(0,0,0,0.3);
            border: 4px solid #fff;
        }

        .preloader-hidden {
            opacity: 0;
            visibility: hidden;
        }

        body.loading {
            overflow: hidden;
        }

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

        /* Music Player */
        .music-player {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: rgba(15, 15, 19, 0.8);
            backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border);
            border-radius: 50px;
            padding: 8px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 1000;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            transition: transform 0.3s;
        }

        .music-player:hover {
            transform: translateY(-5px);
            border-color: var(--primary-pink);
        }

        .play-btn {
            background: var(--primary-pink);
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #000;
            font-size: 14px;
            transition: all 0.3s;
        }

        .play-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 0 15px var(--pink-glow);
        }

        .track-info {
            display: flex;
            flex-direction: column;
        }

        .track-name {
            font-size: 0.85rem;
            font-weight: 600;
            color: #fff;
        }

        .artist-name {
            font-size: 0.7rem;
            color: var(--text-muted);
        }

        /* Weather Widget Floating */
        .weather-widget-container {
            position: fixed;
            bottom: 20px;
            left: 20px;
            background: rgba(15, 15, 19, 0.8);
            backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border);
            border-radius: 50px;
            padding: 8px;
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 1000;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            width: 52px;
            height: 52px;
            overflow: hidden;
            cursor: pointer;
        }

        .weather-widget-container:hover {
            border-color: var(--primary-pink);
        }

        .weather-widget-container.expanded {
            width: 220px;
            height: 70px;
            border-radius: 20px;
            padding: 10px 15px;
            align-items: center;
        }

        .weather-toggle {
            min-width: 34px;
            height: 34px;
            border-radius: 50%;
            background: var(--primary-pink);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #000;
            transition: transform 0.3s;
        }

        .weather-widget-container.expanded .weather-toggle {
            transform: scale(0.9);
        }

        .weather-content-wrapper {
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s;
            width: 150px;
            pointer-events: none;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .weather-widget-container.expanded .weather-content-wrapper {
            opacity: 1;
            visibility: visible;
            transition-delay: 0.2s;
            pointer-events: auto;
        }

        .weather-header {
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--primary-pink);
            margin-bottom: 2px;
            white-space: nowrap;
        }

        .weather-details {
            display: flex;
            align-items: baseline;
            gap: 8px;
        }

        .weather-temp {
            font-size: 1.4rem;
            font-weight: 900;
            font-family: 'Outfit', sans-serif;
            color: #fff;
        }

        .weather-desc {
            font-size: 0.75rem;
            color: var(--text-muted);
            white-space: nowrap;
        }