body {
            font-family: Arial, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            background-color: #fce4ec;
            overflow-x: hidden;
            box-sizing: border-box;
        }
        .container {
            text-align: center;
            background: white;
            padding: 30px 20px;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            max-width: 450px;
            width: 90%;
            transition: all 0.3s ease;
            box-sizing: border-box;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }
        .cat-img {
            width: 150px;
            height: 150px;
            object-fit: contain;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }
        input[type="text"] {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 16px;
            box-sizing: border-box;
        }
        button {
            padding: 10px 20px;
            font-size: 16px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
            font-weight: bold;
        }
        .btn-primary {
            background-color: #e91e63;
            color: white;
        }
        .btn-primary.copied {
            background-color: #4caf50;
        }
        .btn-yes {
            background-color: #4caf50;
            color: white;
            font-size: 18px;
            padding: 12px 28px;
            z-index: 10;
            transition: font-size 0.3s ease, padding 0.3s ease; 
        }
        .btn-no {
            background-color: #f44336;
            color: white;
            font-size: 18px;
            padding: 12px 28px;
            margin-left: 10px;
            position: relative;
            transition: all 0.3s ease;
        }
        .link-box {
            margin-top: 20px;
            word-break: break-all;
            background: #f1f1f1;
            padding: 12px;
            border-radius: 8px;
            font-size: 14px;
            text-align: left;
        }
        .button-group {
            margin-top: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 80px;
            flex-wrap: wrap;
        }
        .error-text {
            color: red;
            font-size: 14px;
            margin-top: -10px;
            margin-bottom: 15px;
            display: none;
        }
        #noText {
            font-size: 15px;
            color: #d84315;
            font-style: italic;
            font-weight: bold;
            min-height: 20px;
            margin-bottom: 10px;
            display: block;
        }
        .author-text {
            font-size: 14px;
            color: #666;
            font-style: italic;
            margin-bottom: 15px;
        }
        .custom-desc {
            font-size: 16px;
            color: #e91e63;
            margin-top: 15px;
            font-weight: bold;
            word-break: break-word;
        }
        .advanced-toggle {
            background: none;
            color: #e91e63;
            border: none;
            font-size: 14px;
            cursor: pointer;
            text-decoration: underline;
            margin-bottom: 15px;
            padding: 0;
        }
        .advanced-section {
            display: none;
            text-align: left;
            background: #fafafa;
            padding: 12px;
            border-radius: 8px;
            border: 1px dashed #ddd;
            margin-bottom: 15px;
        }
        .advanced-section label {
            font-size: 13px;
            font-weight: bold;
            color: #555;
            display: block;
            margin-bottom: 5px;
        }
        .footer {
            position: fixed;
            bottom: 5px;
            width: 100%;
            text-align: center;
            font-size: 11px;
            color: #888;
            pointer-events: none;
            background-color: #fce4ec;
            padding: 5px 0;
        }
        h2 {
            font-size: 20px;
            word-break: break-word;
            margin-top: 0;
        }