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

        :root {
            --bg: #0a0a0a;
            --bg-card: #111111;
            --bg-card-hover: #161616;
            --border: #1e1e1e;
            --border-hover: #2a2a2a;
            --accent: #d4a84a;
            --accent-glow: rgba(212, 168, 74, 0.15);
            --accent-gradient: linear-gradient(135deg, #d4a84a, #e8c97a);
            --text: #e8e8e8;
            --text-muted: #888;
            --text-dim: #555;
            --green: #34d399;
            --red: #f87171;
            --radius: 16px;
            --radius-sm: 8px;
        }

        body {
            background: var(--bg);
            color: var(--text);
            font-family: 'Inter', 'Noto Sans JP', -apple-system, sans-serif;
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* ===== Background Effects ===== */
        .bg-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(rgba(212, 168, 74, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(212, 168, 74, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
            z-index: 0;
        }

        .bg-radial {
            position: fixed;
            top: -30%;
            left: 50%;
            transform: translateX(-50%);
            width: 120vw;
            height: 80vh;
            background: radial-gradient(ellipse, rgba(212, 168, 74, 0.06) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        /* ===== Header ===== */
        .header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(10, 10, 10, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
            padding: 0 32px;
        }

        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
        }

        .logo {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 16px;
            letter-spacing: 1.5px;
            color: var(--accent);
            text-decoration: none;
        }

        .header-links {
            display: flex;
            gap: 24px;
        }

        .header-links a {
            color: var(--text-muted);
            font-size: 13px;
            text-decoration: none;
            transition: color 0.2s;
        }

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

        /* ===== Hero ===== */
        .hero {
            position: relative;
            z-index: 1;
            text-align: center;
            padding: 80px 24px 40px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent-glow);
            border: 1px solid rgba(212, 168, 74, 0.2);
            border-radius: 100px;
            padding: 6px 20px;
            font-size: 12px;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 24px;
            letter-spacing: 0.5px;
        }

        .hero-badge .dot {
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.3;
            }
        }

        .hero h1 {
            font-family: 'Space Grotesk', 'Noto Sans JP', sans-serif;
            font-size: clamp(28px, 5vw, 48px);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #fff 30%, var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            color: var(--text-muted);
            font-size: 16px;
            max-width: 600px;
            margin: 0 auto;
        }

        /* ===== Role Tabs ===== */
        .tabs-wrap {
            position: relative;
            z-index: 1;
            display: flex;
            justify-content: center;
            gap: 4px;
            margin: 40px auto 48px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 100px;
            padding: 4px;
            width: fit-content;
        }

        .tab-btn {
            padding: 10px 32px;
            font-size: 14px;
            font-weight: 600;
            border: none;
            border-radius: 100px;
            cursor: pointer;
            transition: all 0.3s;
            background: transparent;
            color: var(--text-muted);
            font-family: inherit;
        }

        .tab-btn.active {
            background: var(--accent-gradient);
            color: #000;
            box-shadow: 0 0 24px rgba(212, 168, 74, 0.3);
        }

        .tab-btn:not(.active):hover {
            color: var(--text);
            background: rgba(255, 255, 255, 0.04);
        }

        /* ===== Pricing Grid ===== */
        .pricing-section {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px 80px;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            align-items: start;
        }

        .pricing-grid.grid-investor {
            grid-template-columns: repeat(4, 1fr);
        }

        @media (max-width: 1100px) {
            .pricing-grid.grid-investor {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 900px) {
            .pricing-grid, .pricing-grid.grid-investor {
                grid-template-columns: 1fr;
                max-width: 440px;
                margin: 0 auto;
            }
        }

        .single-plan-wrapper {
            max-width: 500px;
            margin: 0 auto;
            width: 100%;
        }

        .plan-cta-block {
            display: block;
            text-decoration: none;
        }

        /* ===== Card ===== */
        .plan-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 36px 28px;
            position: relative;
            transition: all 0.3s;
            overflow: hidden;
        }

        .plan-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: transparent;
            transition: background 0.3s;
        }

        .plan-card:hover {
            border-color: var(--border-hover);
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
        }

        .plan-card.featured {
            border-color: rgba(212, 168, 74, 0.3);
            background: linear-gradient(180deg, rgba(212, 168, 74, 0.04) 0%, var(--bg-card) 40%);
        }

        .plan-card.featured::before {
            background: var(--accent-gradient);
        }

        .plan-card.featured:hover {
            border-color: rgba(212, 168, 74, 0.5);
            box-shadow: 0 16px 48px rgba(212, 168, 74, 0.1);
        }

        .plan-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: var(--accent-gradient);
            color: #000;
            font-size: 10px;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 100px;
            letter-spacing: 0.5px;
        }

        .plan-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 20px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border);
        }

        .plan-card.featured .plan-icon {
            background: var(--accent-glow);
            border-color: rgba(212, 168, 74, 0.2);
        }

        .plan-name {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }

        .plan-desc {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 24px;
            line-height: 1.5;
        }

        .plan-price {
            display: flex;
            align-items: baseline;
            gap: 4px;
            margin-bottom: 4px;
        }

        .plan-price .currency {
            font-size: 18px;
            font-weight: 700;
            color: var(--text);
        }

        .plan-price .amount {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 42px;
            font-weight: 800;
            line-height: 1;
            background: linear-gradient(135deg, #fff, var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .plan-card.featured .plan-price .amount {
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            background-clip: text;
        }

        .plan-price .period {
            font-size: 13px;
            color: var(--text-muted);
        }

        .plan-annual {
            font-size: 12px;
            color: var(--text-dim);
            margin-bottom: 28px;
        }

        .plan-annual em {
            color: var(--green);
            font-style: normal;
            font-weight: 600;
        }

        .plan-cta {
            display: block;
            width: 100%;
            padding: 12px;
            font-size: 14px;
            font-weight: 700;
            border-radius: var(--radius-sm);
            text-align: center;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s;
            margin-bottom: 28px;
            border: none;
            font-family: inherit;
        }

        .plan-cta-free {
            background: rgba(255, 255, 255, 0.06);
            color: var(--text);
            border: 1px solid var(--border);
        }

        .plan-cta-free:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--border-hover);
        }

        .plan-cta-lite {
            background: linear-gradient(135deg, #1e3a8a, #3b82f6);
            color: #fff;
            border: none;
            box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2);
        }

        .plan-cta-lite:hover {
            box-shadow: 0 4px 24px rgba(59, 130, 246, 0.4);
            transform: scale(1.02);
            background: linear-gradient(135deg, #2563eb, #60a5fa);
        }

        .plan-cta-pro {
            background: var(--accent-gradient);
            color: #000;
            box-shadow: 0 4px 16px rgba(212, 168, 74, 0.3);
        }

        .plan-cta-pro:hover {
            box-shadow: 0 4px 24px rgba(212, 168, 74, 0.5);
            transform: scale(1.02);
        }

        .plan-cta-ent {
            background: transparent;
            color: var(--accent);
            border: 1px solid rgba(212, 168, 74, 0.3);
        }

        .plan-cta-ent:hover {
            background: var(--accent-glow);
            border-color: rgba(212, 168, 74, 0.5);
        }

        .plan-cta-disabled {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-dim);
            border: 1px solid rgba(255, 255, 255, 0.1);
            cursor: not-allowed;
            position: relative;
        }

        .plan-cta-disabled::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: calc(100% + 12px);
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background: rgba(0, 0, 0, 0.9);
            color: #fff;
            padding: 8px 16px;
            font-size: 12px;
            font-weight: 500;
            white-space: nowrap;
            border-radius: 6px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0;
            visibility: hidden;
            transition: all 0.2s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            z-index: 10;
        }

        .plan-cta-disabled:hover::after {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        /* Features */
        .features-title {
            font-size: 11px;
            font-weight: 700;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }

        .feature-list {
            list-style: none;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 8px 0;
            font-size: 13px;
            color: var(--text);
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        }

        .feature-item:last-child {
            border-bottom: none;
        }

        .feature-check {
            flex-shrink: 0;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            margin-top: 1px;
        }

        .check-yes {
            background: rgba(52, 211, 153, 0.15);
            color: var(--green);
        }

        .check-limit {
            background: rgba(212, 168, 74, 0.15);
            color: var(--accent);
        }

        .check-no {
            background: rgba(255, 255, 255, 0.04);
            color: var(--text-dim);
        }

        .feature-text {
            flex: 1;
        }

        .feature-text .limit-tag {
            display: inline-block;
            background: rgba(212, 168, 74, 0.1);
            color: var(--accent);
            font-size: 10px;
            font-weight: 600;
            padding: 2px 8px;
            border-radius: 4px;
            margin-left: 6px;
        }

        .feature-text .new-tag {
            display: inline-block;
            background: rgba(52, 211, 153, 0.1);
            color: var(--green);
            font-size: 10px;
            font-weight: 600;
            padding: 2px 8px;
            border-radius: 4px;
            margin-left: 6px;
        }

        .feature-text .disabled {
            color: var(--text-dim);
        }

        /* ===== Comparison Table ===== */
        .compare-section {
            position: relative;
            z-index: 1;
            max-width: 1000px;
            margin: 0 auto 80px;
            padding: 0 24px;
        }

        .compare-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 24px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 40px;
        }

        .compare-table-wrap {
            overflow-x: auto;
            border-radius: var(--radius);
            border: 1px solid var(--border);
        }

        .compare-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 13px;
        }

        .compare-table th,
        .compare-table td {
            padding: 14px 20px;
            border-bottom: 1px solid var(--border);
            text-align: center;
        }

        .compare-table th:first-child,
        .compare-table td:first-child {
            text-align: left;
            font-weight: 500;
        }

        .compare-table thead th {
            background: rgba(255, 255, 255, 0.02);
            font-weight: 700;
            font-size: 14px;
            color: var(--accent);
            position: sticky;
            top: 0;
        }

        .compare-table tbody tr:hover {
            background: rgba(255, 255, 255, 0.02);
        }

        .compare-table tbody tr:last-child td {
            border-bottom: none;
        }

        .compare-table .cat-row td {
            background: rgba(212, 168, 74, 0.04);
            font-weight: 700;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--accent);
        }

        .tbl-check {
            color: var(--green);
            font-size: 16px;
        }

        .tbl-cross {
            color: var(--text-dim);
            font-size: 14px;
        }

        .tbl-limit {
            color: var(--accent);
            font-size: 12px;
            font-weight: 600;
        }

        /* ===== FAQ ===== */
        .faq-section {
            position: relative;
            z-index: 1;
            max-width: 720px;
            margin: 0 auto 80px;
            padding: 0 24px;
        }

        .faq-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 24px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 40px;
        }

        .faq-item {
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            margin-bottom: 12px;
            overflow: hidden;
            transition: border-color 0.3s;
        }

        .faq-item:hover {
            border-color: var(--border-hover);
        }

        .faq-q {
            width: 100%;
            padding: 18px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: var(--bg-card);
            border: none;
            color: var(--text);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            text-align: left;
            font-family: inherit;
            transition: background 0.2s;
        }

        .faq-q:hover {
            background: var(--bg-card-hover);
        }

        .faq-q .arrow {
            font-size: 12px;
            color: var(--text-muted);
            transition: transform 0.3s;
        }

        .faq-item.open .faq-q .arrow {
            transform: rotate(180deg);
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-a-inner {
            padding: 0 20px 18px;
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.8;
            background: var(--bg-card);
        }

        .faq-item.open .faq-a {
            max-height: 300px;
        }

        /* ===== CTA Banner ===== */
        .cta-section {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto 80px;
            padding: 0 24px;
        }

        .cta-box {
            background: linear-gradient(135deg, rgba(212, 168, 74, 0.08), rgba(212, 168, 74, 0.02));
            border: 1px solid rgba(212, 168, 74, 0.2);
            border-radius: var(--radius);
            padding: 48px 40px;
            text-align: center;
        }

        .cta-box h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .cta-box p {
            color: var(--text-muted);
            font-size: 14px;
            margin-bottom: 28px;
        }

        .cta-btns {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btns a {
            padding: 12px 32px;
            font-size: 14px;
            font-weight: 700;
            border-radius: var(--radius-sm);
            text-decoration: none;
            transition: all 0.3s;
        }

        .cta-btn-primary {
            background: var(--accent-gradient);
            color: #000;
        }

        .cta-btn-primary:hover {
            box-shadow: 0 4px 24px rgba(212, 168, 74, 0.4);
        }

        .cta-btn-secondary {
            background: rgba(255, 255, 255, 0.06);
            color: var(--text);
            border: 1px solid var(--border);
        }

        .cta-btn-secondary:hover {
            border-color: var(--border-hover);
            background: rgba(255, 255, 255, 0.1);
        }

        /* ===== Footer ===== */
        .footer {
            position: relative;
            z-index: 1;
            text-align: center;
            padding: 32px 24px;
            border-top: 1px solid var(--border);
            font-size: 12px;
            color: var(--text-dim);
        }

        .footer a {
            color: var(--text-muted);
            text-decoration: none;
            margin: 0 12px;
            transition: color 0.2s;
        }

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

        /* ===== Animations ===== */
        .fade-up {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.6s ease forwards;
        }

        .fade-up:nth-child(2) {
            animation-delay: 0.1s;
        }

        .fade-up:nth-child(3) {
            animation-delay: 0.2s;
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Tab content */
        .tab-content {
            display: none;
        }

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

        /* Responsive */
        @media (max-width: 640px) {
            .hero {
                padding: 60px 16px 24px;
            }

            .plan-card {
                padding: 28px 20px;
            }

            .tabs-wrap {
                width: calc(100% - 32px);
            }

            .tab-btn {
                padding: 10px 20px;
                font-size: 13px;
                flex: 1;
            }

            .cta-box {
                padding: 32px 20px;
            }

            .header {
                padding: 0 16px;
            }
        }

        /* ===== Entrepreneur LP Elements ===== */
        .lp-hero {
            text-align: center;
            margin-bottom: 56px;
        }

        .lp-title {
            font-family: 'Space Grotesk', 'Noto Sans JP', sans-serif;
            font-size: clamp(24px, 4vw, 36px);
            font-weight: 800;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #fff 30%, var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .lp-subtitle {
            color: var(--text-muted);
            font-size: 16px;
            max-width: 600px;
            margin: 0 auto;
        }
        .lp-subtitle strong {
            color: var(--accent);
        }

        .lp-benefits {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-bottom: 64px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 24px;
        }

        .lp-benefit-item {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: var(--radius);
            padding: 32px 24px;
            text-align: center;
            transition: all 0.3s;
        }

        .lp-benefit-item:hover {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(212, 168, 74, 0.3);
            transform: translateY(-4px);
        }

        .lp-benefit-icon {
            font-size: 32px;
            margin-bottom: 20px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--accent-glow);
            border: 1px solid rgba(212, 168, 74, 0.2);
        }

        .lp-benefit-item h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text);
        }

        .lp-benefit-item p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* Premium Free Card */
        .premium-free-card {
            position: relative;
            background: linear-gradient(180deg, rgba(212, 168, 74, 0.08) 0%, var(--bg-card) 100%);
            border: 1px solid rgba(212, 168, 74, 0.4);
            border-radius: 24px;
            padding: 56px 40px;
            text-align: center;
            overflow: hidden;
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 168, 74, 0.1);
            max-width: 900px;
            margin: 0 auto;
        }

        .premium-glow {
            position: absolute;
            top: -50%;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at center, rgba(212, 168, 74, 0.15) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        .premium-free-card > * {
            position: relative;
            z-index: 1;
        }

        .premium-badge {
            background: #000;
            color: var(--accent);
            border: 1px solid var(--accent);
            font-size: 11px;
            padding: 6px 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 24px;
            display: inline-block;
            position: static;
        }

        .premium-icon {
            margin: 0 auto 24px;
            width: 64px;
            height: 64px;
            font-size: 32px;
        }
        
        .premium-name {
            font-size: 28px;
        }
        
        .premium-desc {
            font-size: 15px;
            max-width: 400px;
            margin: 0 auto 32px;
        }

        .premium-price-box {
            display: flex;
            justify-content: center;
            align-items: baseline;
            margin-bottom: 32px;
        }
        
        .premium-price-box .currency {
            font-size: 24px;
        }
        
        .premium-price-box .amount {
            font-size: 64px;
            margin: 0 4px;
        }
        
        .premium-price-box .period {
            font-size: 16px;
        }

        .premium-cta {
            font-size: 16px;
            padding: 16px;
            max-width: 400px;
            margin: 0 auto 40px;
            box-shadow: 0 8px 32px rgba(212, 168, 74, 0.4);
            display: block;
            text-decoration: none;
        }
        
        .premium-features-title {
            text-align: center;
            font-size: 13px;
            margin-bottom: 24px;
        }

        .premium-features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            text-align: left;
            max-width: 800px;
            margin: 0 auto;
            background: rgba(0, 0, 0, 0.4);
            border-radius: 16px;
            padding: 32px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .premium-features-grid .feature-list {
            margin: 0;
            padding: 0;
        }
        
        .premium-features-grid .feature-item {
            margin-bottom: 12px;
        }
        
        .premium-features-grid .feature-item:last-child {
            margin-bottom: 0;
        }

        @media (max-width: 768px) {
            .lp-benefits {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 16px;
            }
            .premium-features-grid {
                grid-template-columns: 1fr;
                gap: 16px;
                padding: 24px;
            }
            .premium-free-card {
                padding: 40px 24px;
            }
        }