
        :root {
            --vf6p3w-primary: #ff4b3a;
            --vf6p3w-primary-hover: #e63e2e;
            --vf6p3w-bg: #ffffff;
            --vf6p3w-secondary-bg: #f8f9fa;
            --vf6p3w-text-main: #1d1d1f;
            --vf6p3w-text-mute: #86868b;
            --vf6p3w-glass: rgba(255, 255, 255, 0.8);
            --vf6p3w-shadow: 0 8px 30px rgba(0,0,0,0.08);
            --vf6p3w-radius: 16px;
            --vf6p3w-max-width: 1360px;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            color: var(--vf6p3w-text-main);
            background-color: var(--vf6p3w-bg);
            line-height: 1.6;
            overflow-x: hidden;
            word-break: keep-all;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        ul {
            list-style: none;
        }

        /* Navigation */
        .vf6p3w-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: var(--vf6p3w-glass);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .vf6p3w-nav-container {
            max-width: var(--vf6p3w-max-width);
            margin: 0 auto;
            padding: 0 32px;
            height: 72px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

        .vf6p3w-logo {
            display: flex;
            align-items: center;
            min-width: 0;
        }

        .vf6p3w-logo img {
            height: 32px;
            width: auto;
        }

        .vf6p3w-nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            min-width: 0;
        }

        .vf6p3w-nav-link {
            font-size: 15px;
            font-weight: 500;
            color: var(--vf6p3w-text-main);
        }

        .vf6p3w-nav-link:hover {
            color: var(--vf6p3w-primary);
        }

        /* Hero Section */
        .vf6p3w-hero {
            padding: 160px 32px 80px;
            background: radial-gradient(circle at 90% 10%, rgba(255, 75, 58, 0.05) 0%, rgba(255, 255, 255, 0) 40%);
            text-align: center;
            overflow: hidden;
        }

        .vf6p3w-hero-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .vf6p3w-hero-title {
            font-size: clamp(2rem, 5vw + 1rem, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
            word-break: break-word;
        }

        .vf6p3w-hero-subtitle {
            font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.4rem);
            color: var(--vf6p3w-text-mute);
            margin-bottom: 48px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            word-break: break-word;
        }

        .vf6p3w-search-box {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            background: var(--vf6p3w-secondary-bg);
            padding: 8px;
            border-radius: 40px;
            display: flex;
            align-items: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.03);
        }

        .vf6p3w-search-input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 12px 24px;
            font-size: 16px;
            outline: none;
            min-width: 0;
        }

        .vf6p3w-search-btn {
            background: var(--vf6p3w-primary);
            color: white;
            border: none;
            padding: 12px 32px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .vf6p3w-search-btn:hover {
            transform: scale(1.05);
            background: var(--vf6p3w-primary-hover);
        }

        /* Category Chips */
        .vf6p3w-categories {
            max-width: var(--vf6p3w-max-width);
            margin: 40px auto;
            padding: 0 32px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }

        .vf6p3w-chip {
            padding: 10px 24px;
            border-radius: 50px;
            background: var(--vf6p3w-secondary-bg);
            font-size: 14px;
            font-weight: 500;
            border: 1px solid transparent;
        }

        .vf6p3w-chip:hover, .vf6p3w-chip.active {
            background: white;
            border-color: var(--vf6p3w-primary);
            color: var(--vf6p3w-primary);
            box-shadow: 0 4px 12px rgba(255, 75, 58, 0.1);
        }

        /* Main Skin Grid */
        .vf6p3w-main-section {
            max-width: var(--vf6p3w-max-width);
            margin: 0 auto;
            padding: 64px 32px;
        }

        .vf6p3w-section-header {
            margin-bottom: 40px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            flex-wrap: wrap;
            gap: 20px;
        }

        .vf6p3w-section-title {
            font-size: 32px;
            font-weight: 700;
        }

        .vf6p3w-skin-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 32px;
        }

        .vf6p3w-skin-card {
            background: white;
            border-radius: var(--vf6p3w-radius);
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.05);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .vf6p3w-skin-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border-color: rgba(255, 75, 58, 0.2);
        }

        .vf6p3w-skin-preview {
            aspect-ratio: 16/10;
            background: #eee;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Abstract CSS Art for Skin Preview */
        .vf6p3w-skin-art-1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); width: 100%; height: 100%; }
        .vf6p3w-skin-art-2 { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%); width: 100%; height: 100%; }
        .vf6p3w-skin-art-3 { background: linear-gradient(120deg, #f6d365 0%, #fda085 100%); width: 100%; height: 100%; }
        .vf6p3w-skin-art-4 { background: linear-gradient(to top, #30cfd0 0%, #330867 100%); width: 100%; height: 100%; }

        .vf6p3w-skin-info {
            padding: 24px;
        }

        .vf6p3w-skin-name {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .vf6p3w-skin-meta {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            color: var(--vf6p3w-text-mute);
            margin-bottom: 20px;
        }

        .vf6p3w-download-bar {
            display: flex;
            gap: 12px;
        }

        .vf6p3w-btn-download {
            flex: 1;
            text-align: center;
            background: var(--vf6p3w-secondary-bg);
            padding: 10px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 14px;
        }

        .vf6p3w-btn-download:hover {
            background: var(--vf6p3w-primary);
            color: white;
        }

        /* Features Section */
        .vf6p3w-features {
            background: var(--vf6p3w-secondary-bg);
            padding: 96px 32px;
        }

        .vf6p3w-feature-container {
            max-width: var(--vf6p3w-max-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 48px;
        }

        .vf6p3w-feature-item {
            min-width: 0;
            word-break: break-word;
        }

        .vf6p3w-feature-icon {
            font-size: 40px;
            margin-bottom: 24px;
            color: var(--vf6p3w-primary);
        }

        .vf6p3w-feature-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .vf6p3w-feature-desc {
            color: var(--vf6p3w-text-mute);
            line-height: 1.8;
        }

        /* Footer */
        .vf6p3w-footer {
            padding: 80px 32px 40px;
            border-top: 1px solid rgba(0,0,0,0.05);
            background: white;
        }

        .vf6p3w-footer-content {
            max-width: var(--vf6p3w-max-width);
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 48px;
        }

        .vf6p3w-footer-brand {
            flex: 1;
            min-width: 240px;
        }

        .vf6p3w-footer-brand-name {
            font-size: 24px;
            font-weight: 800;
            color: var(--vf6p3w-primary);
            margin-bottom: 16px;
        }

        .vf6p3w-footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 64px;
            flex: 2;
        }

        .vf6p3w-footer-column h4 {
            font-size: 16px;
            margin-bottom: 24px;
        }

        .vf6p3w-footer-column ul li {
            margin-bottom: 12px;
        }

        .vf6p3w-footer-column ul li a {
            color: var(--vf6p3w-text-mute);
            font-size: 14px;
        }

        .vf6p3w-footer-column ul li a:hover {
            color: var(--vf6p3w-primary);
        }

        .vf6p3w-copyright {
            max-width: var(--vf6p3w-max-width);
            margin: 64px auto 0;
            padding-top: 32px;
            border-top: 1px solid rgba(0,0,0,0.05);
            text-align: center;
            font-size: 13px;
            color: var(--vf6p3w-text-mute);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .vf6p3w-nav-links {
                display: none; /* Mobile menu logic would go here */
            }
            .vf6p3w-hero {
                padding: 120px 24px 60px;
            }
            .vf6p3w-skin-grid {
                grid-template-columns: 1fr;
            }
            .vf6p3w-footer-links {
                gap: 32px;
            }
        }
    