/* twitter-snowflake-decoder — tool styles scoped to .tool-card */

.tool-card .header h1 { font-size: 28px; margin-bottom: 10px; }
.tool-card .content { padding: 30px; }
.tool-card .decoder-box {
            background: linear-gradient(135deg, #1DA1F215 0%, #0d8bd915 100%);
            padding: 25px;
            border-radius: 12px;
            border: 2px solid #1DA1F2;
            margin-bottom: 30px;
        }
.tool-card input[type="text"] {
            width: 100%;
            padding: 14px;
            border: 2px solid #1DA1F2;
            border-radius: 8px;
            font-size: 15px;
            font-family: monospace;
            margin-bottom: 15px;
        }
.tool-card .btn {
            width: 100%;
            padding: 14px;
            background: #1DA1F2;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
.tool-card .btn:hover { background: #0d8bd9; transform: translateY(-2px); }
.tool-card .result {
            display: none;
            background: white;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #1DA1F2;
            margin-top: 20px;
        }
.tool-card .result-item {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 6px;
            margin-bottom: 10px;
        }
.tool-card .result-label { font-size: 12px; color: #666; margin-bottom: 5px; }
.tool-card .result-value { font-weight: 600; color: #1a202c; font-size: 16px; }
.tool-card .examples {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: 15px;
        }
.tool-card .example-btn {
            padding: 8px 12px;
            background: white;
            border: 1px solid #1DA1F2;
            border-radius: 6px;
            color: #1DA1F2;
            font-size: 12px;
            cursor: pointer;
            font-family: monospace;
        }
.tool-card .example-btn:hover { background: #1DA1F2; color: white; }
.tool-card .info-section {
            background: #f9f9f9;
            padding: 30px;
            border-top: 1px solid #eee;
        }
.tool-card .info-section h3 { color: #1DA1F2; margin-bottom: 15px; }
.tool-card .info-section p { color: #666; line-height: 1.8; margin-bottom: 12px; }
.tool-card .code-block { background: #1e1e1e; border-radius: 8px; overflow: hidden; margin: 20px 0; }
.tool-card .code-block pre { margin: 0; padding: 20px; overflow-x: auto; }
.tool-card .code-block code { background: transparent; padding: 0; color: #d4d4d4; display: block; line-height: 1.6; font-family: 'Courier New', monospace; }
.tool-card .code-header { background: #2d2d2d; padding: 10px 20px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #404040; }
.tool-card .code-header span { color: #9cdcfe; font-size: 12px; font-weight: 600; text-transform: uppercase; }
.tool-card .code-header button { background: #1DA1F2; color: white; border: none; padding: 6px 12px; border-radius: 4px; cursor: pointer; font-size: 12px; transition: background 0.2s; }
.tool-card .code-header button:hover { background: #0d8bd9; }
.tool-card .seo-content {
            margin-top: 40px;
            line-height: 1.9;
            color: #444;
            font-size: 15px;
        }
.tool-card .seo-content .container {
            padding: 0 20px;
        }
.tool-card .seo-content h2, .tool-card .seo-content h3 {
            font-size: 18px;
            font-weight: 600;
            margin-top: 24px;
            margin-bottom: 10px;
            color: #667eea;
        }
.tool-card .seo-content p {
            margin-bottom: 14px;
            color: #555;
        }
.tool-card .seo-content ul, .tool-card .seo-content ol {
            margin-left: 22px;
            margin-bottom: 16px;
        }
.tool-card .seo-content li {
            margin-bottom: 8px;
            color: #555;
        }
.tool-card .examples-content {
            margin-top: 40px;
            line-height: 1.9;
            color: #444;
            font-size: 15px;
        }
.tool-card .examples-content .container {
            padding: 0 20px;
        }
.tool-card .examples-content h2, .tool-card .examples-content h3 {
            font-size: 18px;
            font-weight: 600;
            margin-top: 24px;
            margin-bottom: 10px;
            color: #667eea;
        }
.tool-card .examples-content p {
            margin-bottom: 14px;
            color: #555;
        }
.tool-card .examples-content pre {
            background: #1e1e2e;
            color: #cdd6f4;
            padding: 18px 20px;
            border-radius: 8px;
            overflow-x: auto;
            margin-bottom: 18px;
            font-size: 13px;
            line-height: 1.6;
        }
.tool-card .examples-content code {
            font-family: 'Fira Code', 'Cascadia Code', 'Monaco', 'Menlo', monospace;
        }
.tool-card .examples-content ul, .tool-card .examples-content ol {
            margin-left: 22px;
            margin-bottom: 16px;
        }
.tool-card .examples-content li {
            margin-bottom: 8px;
            color: #555;
        }
