        :root {
            --primary: #0a0a0a;
            --secondary: #1a1a1a;
            --accent: #00ff88;
            --accent-dim: #00cc6a;
            --text: #ffffff;
            --text-muted: #999999;
            --border: #2a2a2a;
            --card-bg: #141414;
            --hover-bg: #1f1f1f;
        }

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

        body {
            font-family: 'Noto Sans JP', sans-serif;
            background: var(--primary);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* Header */
        header {
            background: var(--secondary);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .login-button {
            padding: 8px 20px;
            background: transparent;
            border: 2px solid var(--accent);
            border-radius: 20px;
            color: var(--accent);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s;
        }

        .login-button:hover {
            background: var(--accent);
            color: var(--primary);
        }

        .logo {
            font-family: 'Oswald', sans-serif;
            font-size: 24px;
            font-weight: 600;
            letter-spacing: 2px;
            color: var(--accent);
            text-transform: uppercase;
            position: relative;
            animation: glitchLogo 3s infinite;
        }

        @keyframes glitchLogo {
            0%, 90%, 100% { transform: translate(0); }
            92% { transform: translate(-2px, 1px); }
            94% { transform: translate(2px, -1px); }
            96% { transform: translate(-1px, -1px); }
        }

        nav {
            display: flex;
            gap: 30px;
        }

        nav a {
            color: var(--text);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        nav a:hover {
            color: var(--accent);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Breadcrumb */
        .breadcrumb {
            max-width: 1400px;
            margin: 0 auto;
            padding: 15px 20px;
            font-size: 13px;
            color: var(--text-muted);
        }

        .breadcrumb a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s;
        }

        .breadcrumb a:hover {
            color: var(--accent);
        }

        .breadcrumb span {
            margin: 0 8px;
        }

        /* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero {
            padding: 80px 0;
            text-align: center;
            background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                repeating-linear-gradient(
                    0deg,
                    transparent,
                    transparent 2px,
                    rgba(0, 255, 136, 0.03) 2px,
                    rgba(0, 255, 136, 0.03) 4px
                );
            pointer-events: none;
            animation: scanlines 8s linear infinite;
        }

        @keyframes scanlines {
            0% { transform: translateY(0); }
            100% { transform: translateY(20px); }
        }

        .hero-title {
            font-family: 'Oswald', sans-serif;
            font-size: 56px;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 3px;
            text-transform: uppercase;
            background: linear-gradient(135deg, var(--accent) 0%, #00ffff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-subtitle {
            font-size: 18px;
            color: var(--text-muted);
            margin-bottom: 40px;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Search Box */
        .search-box {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .search-input {
            width: 100%;
            padding: 18px 60px 18px 25px;
            background: var(--card-bg);
            border: 2px solid var(--border);
            border-radius: 50px;
            color: var(--text);
            font-size: 16px;
            transition: all 0.3s;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
        }

        .search-button {
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--accent);
            border: none;
            color: var(--primary);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            transition: all 0.3s;
        }

        .search-button:hover {
            background: var(--accent-dim);
            transform: translateY(-50%) scale(1.05);
        }

        /* Area Selection */
        .section {
            padding: 60px 0;
        }

        .section-title {
            font-family: 'Oswald', sans-serif;
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 40px;
            text-align: center;
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--accent);
            margin: 15px auto 0;
        }

        .area-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .area-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .area-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
            transition: left 0.5s;
        }

        .area-card:hover::before {
            left: 100%;
        }

        .area-card:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
        }

        .area-icon {
            font-size: 40px;
            margin-bottom: 15px;
        }

        .area-name {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .area-count {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* Salon Cards */
        .salon-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 25px;
        }

        .salon-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s;
            cursor: pointer;
        }

        .salon-card:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .salon-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--border) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            color: var(--accent);
            position: relative;
            overflow: hidden;
        }

        .salon-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(0, 255, 136, 0.05) 10px,
                rgba(0, 255, 136, 0.05) 20px
            );
        }

        .salon-content {
            padding: 20px;
        }

        .salon-name {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--accent);
        }

        .salon-area {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 15px;
        }

        .salon-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid var(--border);
        }

        .therapist-count {
            font-size: 13px;
            color: var(--text-muted);
        }

        .salon-rating {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .star {
            color: #ffd700;
            font-size: 14px;
        }

        /* Reviews Feed */
        .review-feed {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .review-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 25px;
            transition: all 0.3s;
        }

        .review-card:hover {
            border-color: var(--accent);
            transform: translateX(5px);
        }

        .review-header {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
        }

        .review-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent) 0%, #00ffff 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
        }

        .review-info {
            flex: 1;
        }

        .review-therapist {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 5px;
            color: var(--accent);
        }

        .review-salon {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .review-rating {
            display: flex;
            gap: 3px;
        }

        .review-text {
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 10px;
        }

        .review-date {
            font-size: 12px;
            color: var(--text-muted);
            opacity: 0.7;
        }

        /* Therapist Detail Page */
        .therapist-detail {
            margin-bottom: 60px;
        }

        .therapist-header {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 40px;
        }

        .therapist-header-layout {
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 40px;
        }

        .therapist-profile {
            display: flex;
            flex-direction: column;
        }

        .therapist-image {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--border) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 120px;
            color: var(--accent);
            position: relative;
            overflow: hidden;
        }

        .therapist-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(0, 255, 136, 0.05) 10px,
                rgba(0, 255, 136, 0.05) 20px
            );
        }

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

        .therapist-name {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--accent);
        }

        .therapist-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border);
        }

        .stat-item {
            text-align: center;
        }

        .stat-label {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 5px;
        }

        .stat-value {
            font-size: 18px;
            font-weight: 700;
            color: var(--accent);
        }

        .therapist-sizes {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border);
        }

        .size-item {
            text-align: center;
        }

        .size-label {
            font-size: 11px;
            color: var(--text-muted);
            margin-bottom: 3px;
        }

        .size-value {
            font-size: 16px;
            font-weight: 600;
        }

        .official-link {
            display: block;
            text-align: center;
            padding: 12px;
            background: var(--secondary);
            border: 1px solid var(--border);
            border-radius: 8px;
            color: var(--text-muted);
            text-decoration: none;
            font-size: 13px;
            transition: all 0.3s;
        }

        .official-link:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        .therapist-content {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .content-section {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 20px;
        }

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

        .content-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--accent);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .content-title::before {
            content: '';
            width: 4px;
            height: 20px;
            background: var(--accent);
        }

        .intro-text {
            color: var(--text-muted);
            line-height: 1.9;
        }

        /* Navigation buttons */
        .nav-buttons {
            display: flex;
            gap: 15px;
            margin-top: 40px;
        }

        .nav-button {
            flex: 1;
            padding: 15px;
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 8px;
            color: var(--text);
            text-decoration: none;
            text-align: center;
            transition: all 0.3s;
            font-weight: 500;
        }

        .nav-button:hover {
            border-color: var(--accent);
            background: var(--hover-bg);
            transform: translateY(-2px);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .therapist-header-layout {
                grid-template-columns: 1fr;
            }

            .therapist-image {
                height: 500px;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 36px;
            }

            .section-title {
                font-size: 24px;
            }

            .area-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            }

            .salon-grid {
                grid-template-columns: 1fr;
            }

            nav {
                display: none;
            }

            .header-right {
                gap: 15px;
            }

            .login-button {
                padding: 6px 15px;
                font-size: 13px;
            }

            .therapist-grid-compact {
                grid-template-columns: repeat(2, 1fr);
            }

            .therapist-image {
                height: 400px;
            }

            .therapist-stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
            }

            .stat-item {
                text-align: center;
            }

            .stat-label {
                font-size: 11px;
            }

            .stat-value {
                font-size: 16px;
            }
        }

        /* Compact Therapist Grid (for Salon Page) */
        .therapist-grid-compact {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }

        .therapist-compact-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s;
            cursor: pointer;
        }

        .therapist-compact-card:hover {
            border-color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 255, 136, 0.2);
        }

        .therapist-compact-image {
            width: 100%;
            aspect-ratio: 3/4;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--border) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            color: var(--accent);
            position: relative;
            overflow: hidden;
        }

        .therapist-compact-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(0, 255, 136, 0.05) 10px,
                rgba(0, 255, 136, 0.05) 20px
            );
        }

        .therapist-compact-info {
            padding: 15px;
            text-align: center;
        }

        .therapist-compact-name {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--accent);
        }

        .therapist-compact-sizes {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* View All Button */
        .view-all-button {
            display: block;
            text-align: center;
            padding: 15px;
            background: var(--secondary);
            border: 2px solid var(--accent);
            border-radius: 8px;
            color: var(--accent);
            text-decoration: none;
            font-weight: 700;
            font-size: 15px;
            transition: all 0.3s;
            margin-bottom: 60px;
        }

        .view-all-button:hover {
            background: var(--accent);
            color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
        }

        /* Salon Review Feed (for Salon Page) */
        .salon-review-feed {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .salon-review-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 25px;
            transition: all 0.3s;
        }

        .salon-review-card:hover {
            border-color: var(--accent);
            transform: translateX(3px);
        }

        .salon-review-header {
            margin-bottom: 15px;
        }

        .salon-review-therapist-info {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .salon-review-therapist-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 8px;
        }

        .salon-review-meta {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .review-score-badge {
            background: var(--accent);
            color: var(--primary);
            padding: 6px 14px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 16px;
        }

        .review-date-small {
            font-size: 13px;
            color: var(--text-muted);
        }

        .salon-review-text {
            color: var(--text-muted);
            line-height: 1.9;
            font-size: 14px;
        }

        /* Therapist Review Feed (for Therapist Page) */
        .therapist-review-feed {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .therapist-review-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 25px;
            transition: all 0.3s;
        }

        .therapist-review-card:hover {
            border-color: var(--accent);
        }

        .therapist-review-layout {
            display: grid;
            grid-template-columns: 80px 1fr;
            gap: 20px;
        }

        .therapist-review-image-small {
            width: 80px;
            height: 100px;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--border) 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            color: var(--accent);
            flex-shrink: 0;
        }

        .therapist-review-content {
            flex: 1;
        }

        .therapist-review-header-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 10px;
            gap: 15px;
        }

        .therapist-review-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--text);
            flex: 1;
        }

        .therapist-review-score-large {
            background: var(--accent);
            color: var(--primary);
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 18px;
            white-space: nowrap;
        }

        .therapist-review-date {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 15px;
        }

        .therapist-review-text {
            color: var(--text-muted);
            line-height: 1.9;
            font-size: 14px;
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 40px;
            padding: 20px 0;
        }

        .page-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 15px;
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 8px;
            color: var(--text);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s;
        }

        .page-link:hover {
            border-color: var(--accent);
            background: var(--hover-bg);
        }

        .page-link.active {
            background: var(--accent);
            color: var(--primary);
            border-color: var(--accent);
            font-weight: 700;
        }

        .page-link.page-next {
            padding: 0 20px;
        }

        .page-dots {
            color: var(--text-muted);
            padding: 0 5px;
        }

        /* Page selector */
        .page-selector {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }

        .page-selector select {
            padding: 12px 20px;
            background: var(--card-bg);
            border: 2px solid var(--accent);
            border-radius: 8px;
            color: var(--text);
            font-size: 14px;
            cursor: pointer;
            font-family: 'Noto Sans JP', sans-serif;
            box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
        }

        .page-selector select:focus {
            outline: none;
        }

        /* Hide/Show pages */
        .page {
            display: none;
        }

        .page.active {
            display: block;
        }

        /* Pickup badge */
        .pickup-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--accent);
            color: var(--primary);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            z-index: 1;
        }

        /* SEO Text area */
        .seo-text {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 40px;
            line-height: 1.9;
            color: var(--text-muted);
        }

        .seo-text h2 {
            color: var(--accent);
            margin-bottom: 15px;
            font-size: 22px;
        }
