 /* Reset and Base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --pink: #ffb3d9;
            --pink-light: #ffe6f3;
            --pink-dark: #ff80bf;
            --text: #2d2d2d;
            --text-light: #666;
            --border: #f0f0f0;
            --bg: #fafafa;
            --white: #ffffff;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            font-size: 15px;
            color: var(--text);
            background: var(--bg);
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        a {
            color: inherit;
            text-decoration: none;
        }
        
        /* Header */
        .header {
            background: var(--white);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }
        
        .header-content {
            max-width: 1280px;
            margin: 0 auto;
            padding: 20px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
        }
        
        .logo {
            font-size: 26px;
            font-weight: 700;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo i {
            color: var(--pink);
            font-size: 28px;
        }
        
        .search-form {
            flex: 1;
            max-width: 500px;
        }
        
        .search-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            background: var(--bg);
            border: 2px solid var(--border);
            border-radius: 50px;
            overflow: hidden;
            transition: all 0.2s;
        }
        
        .search-wrapper:focus-within {
            border-color: var(--pink);
            background: var(--white);
        }
        
        .search-icon {
            padding: 0 16px;
            color: var(--text-light);
        }
        
        .search-input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 12px 16px 12px 0;
            font-size: 15px;
            outline: none;
        }
        
        .search-input::placeholder {
            color: var(--text-light);
        }
        
        .search-btn {
            background: var(--pink);
            border: none;
            padding: 12px 28px;
            color: var(--white);
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        
        .search-btn:hover {
            background: var(--pink-dark);
        }
        
        .header-nav {
            display: flex;
            align-items: center;
            gap: 24px;
        }
        
        .nav-link {
            color: var(--text);
            font-weight: 500;
            transition: color 0.2s;
        }
        
        .nav-link:hover {
            color: var(--pink);
        }
        
        .icon-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--pink-light);
            color: var(--pink-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            cursor: pointer;
            position: relative;
        }
        
        .icon-btn:hover {
            background: var(--pink);
            color: var(--white);
        }

        .icon-btn.active {
            background: var(--pink);
            color: var(--white);
        }

        /* Main Content */
        .main-content {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 48px 24px;
        }

        .coming-soon-container {
            max-width: 600px;
            text-align: center;
        }

        .feature-icon {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--pink-light), var(--pink));
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 32px;
            font-size: 48px;
            box-shadow: 0 8px 24px rgba(255, 179, 217, 0.3);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 8px 24px rgba(255, 179, 217, 0.3);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 12px 32px rgba(255, 179, 217, 0.4);
            }
        }

        .coming-soon-title {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text);
        }

        .coming-soon-subtitle {
            font-size: 20px;
            color: var(--pink);
            font-weight: 600;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .coming-soon-description {
            font-size: 16px;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 32px;
        }

        .feature-list {
            background: var(--white);
            border-radius: 12px;
            padding: 32px;
            border: 1px solid var(--border);
            margin-bottom: 32px;
            text-align: left;
        }

        .feature-list h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text);
            text-align: center;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 16px;
            padding: 16px;
            background: var(--bg);
            border-radius: 8px;
            transition: all 0.3s;
        }

        .feature-item:hover {
            background: var(--pink-light);
            transform: translateX(8px);
        }

        .feature-item:last-child {
            margin-bottom: 0;
        }

        .feature-item-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--pink);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 18px;
        }

        .feature-item-content h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 4px;
            color: var(--text);
        }

        .feature-item-content p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.6;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btn {
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .cta-btn-primary {
            background: var(--pink);
            color: var(--white);
        }

        .cta-btn-primary:hover {
            background: var(--pink-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(255, 179, 217, 0.3);
        }

        .cta-btn-secondary {
            background: var(--white);
            color: var(--pink);
            border: 2px solid var(--pink);
        }

        .cta-btn-secondary:hover {
            background: var(--pink-light);
            transform: translateY(-2px);
        }

        .notify-badge {
            display: inline-block;
            background: var(--pink);
            color: var(--white);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            margin-top: 24px;
            animation: bounce 2s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        }
        
        /* Footer */
        .footer {
            background: var(--white);
            border-top: 1px solid var(--border);
            margin-top: auto;
            padding: 32px 24px;
        }
        
        .footer-content {
            max-width: 1280px;
            margin: 0 auto;
            text-align: center;
            color: var(--text-light);
            font-size: 14px;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 24px;
            margin-bottom: 16px;
            flex-wrap: wrap;
        }
        
        .footer-link {
            transition: color 0.2s;
        }
        
        .footer-link:hover {
            color: var(--pink);
        }
        
        /* Cookie Notice */
        .cookie-notice {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--white);
            border-top: 2px solid var(--pink-light);
            padding: 20px;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            display: none;
        }
        
        .cookie-content {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }
        
        .cookie-text {
            flex: 1;
            color: var(--text-light);
            font-size: 14px;
        }
        
        .cookie-actions {
            display: flex;
            gap: 12px;
        }
        
        .btn {
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            border: none;
            font-size: 14px;
        }
        
        .btn-outline {
            background: var(--white);
            border: 2px solid var(--border);
            color: var(--text);
        }
        
        .btn-outline:hover {
            border-color: var(--pink);
            color: var(--pink);
        }
        
        .btn-primary {
            background: var(--pink);
            color: var(--white);
        }
        
        .btn-primary:hover {
            background: var(--pink-dark);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
                padding: 16px;
            }
            
            .logo {
                font-size: 22px;
            }
            
            .logo i {
                font-size: 24px;
            }
            
            .search-form {
                order: 3;
                width: 100%;
                max-width: none;
            }
            
            .header-nav {
                gap: 12px;
            }
            
            .nav-link {
                display: none;
            }

            .main-content {
                padding: 32px 16px;
            }

            .feature-icon {
                width: 100px;
                height: 100px;
                font-size: 40px;
            }

            .coming-soon-title {
                font-size: 32px;
            }

            .coming-soon-subtitle {
                font-size: 16px;
            }

            .coming-soon-description {
                font-size: 15px;
            }

            .feature-list {
                padding: 24px 20px;
            }

            .feature-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .feature-item:hover {
                transform: translateY(-4px) translateX(0);
            }

            .cta-buttons {
                flex-direction: column;
            }

            .cta-btn {
                width: 100%;
                justify-content: center;
            }
            
            .cookie-content {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-actions {
                width: 100%;
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
            }
        }

        /* Content sections */
        .feature-content {
            display: none;
        }

        .feature-content.active {
            display: block;
        }