        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #f5f5f5;
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            padding: 2rem 1.5rem;
            color: #222;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
        }

        /* brand header */
        .brand {
            margin-bottom: 1.5rem;
            display: flex;
            align-items: baseline;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        .brand h1 {
            font-weight: 450;
            font-size: 1.8rem;
            letter-spacing: -0.02em;
            color: #2a2a2a;
        }

        .brand .centrigon {
            font-weight: 500;
            color: #6b4f3f;
            background: #ede8e3;
            padding: 0.2rem 0.8rem;
            border-radius: 40px;
            font-size: 0.9rem;
        }

        .brand .tagline {
            color: #777;
            font-size: 0.95rem;
            font-weight: 350;
        }

        /* navigation between tools */
        .nav-links {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            background: white;
            padding: 0.6rem 1.2rem;
            border-radius: 60px;
            border: 1px solid #e0e0e0;
            width: fit-content;
        }

        .nav-links a {
            text-decoration: none;
            color: #555;
            font-size: 0.95rem;
            padding: 0.3rem 1rem;
            border-radius: 30px;
        }

        .nav-links a.active {
            background: #222;
            color: white;
        }

        .nav-links a:hover {
            background: #f0f0f0;
            color: #222;
        }

        /* input area */
        .input-block {
            background: white;
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            border: 1px solid #e0e0e0;
        }

        .input-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            color: #666;
        }

        .char-count {
            background: #f0f0f0;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-size: 0.8rem;
        }

        textarea {
            width: 100%;
            padding: 1rem;
            font-size: 1.3rem;
            border: 1px solid #ccc;
            border-radius: 12px;
            font-family: inherit;
            resize: vertical;
            margin-bottom: 1rem;
        }

        textarea:focus {
            outline: none;
            border-color: #888;
        }

        /* quick action buttons */
        .quick-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .quick-btn {
            background: #f0f0f0;
            border: 1px solid #ddd;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: 0.1s;
        }

        .quick-btn:hover {
            background: #e0e0e0;
        }

        /* style cards - one per row */
        .category {
            margin: 2rem 0 1rem 0;
        }

        .category h2 {
            font-weight: 500;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            padding-bottom: 0.3rem;
            border-bottom: 1px solid #ccc;
            color: #2a2a2a;
        }

        .cards {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .card {
            background: white;
            border: 1px solid #ddd;
            border-radius: 14px;
            padding: 1rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            width: 100%;
            transition: 0.1s;
        }

        .card:hover {
            background: #fafafa;
            border-color: #aaa;
        }

        .card:active {
            background: #f0f0f0;
        }

        .card-left {
            min-width: 140px;
            flex-shrink: 0;
        }

        .style-name {
            font-size: 0.85rem;
            font-weight: 600;
            color: #777;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        .style-desc {
            font-size: 0.75rem;
            color: #999;
            margin-top: 0.2rem;
        }

        .copy-hint {
            font-size: 0.7rem;
            color: #aaa;
            margin-top: 0.2rem;
        }

        .preview {
            font-size: 1.3rem;
            line-height: 1.4;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            word-break: break-word;
            text-align: right;
            padding-left: 1.5rem;
            max-width: 70%;
        }

        .toast {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #222;
            color: white;
            padding: 0.6rem 1.5rem;
            border-radius: 40px;
            font-size: 0.9rem;
            opacity: 0;
            transition: opacity 0.15s;
            pointer-events: none;
            z-index: 1000;
        }

        .footer {
            margin-top: 3rem;
            text-align: center;
            color: #888;
            font-size: 0.8rem;
            border-top: 1px solid #ddd;
            padding-top: 2rem;
        }

        /* smart features section */
        .smart-features {
            background: #fafafa;
            border-radius: 12px;
            padding: 1rem 1.5rem;
            margin-top: 1.5rem;
            border: 1px dashed #ccc;
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            align-items: center;
        }

        .feature-tag {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #555;
            font-size: 0.9rem;
        }

        .feature-tag input[type="checkbox"] {
            width: 16px;
            height: 16px;
            cursor: pointer;
        }