/* discord-account-age-checker-bot — tool styles scoped to .tool-card */

.tool-card .header h1 { font-size: 32px; margin-bottom: 15px; }
.tool-card .content h2 { color: #5865F2; margin: 30px 0 15px 0; font-size: 24px; }
.tool-card .content h3 { color: #4752C4; margin: 25px 0 12px 0; font-size: 20px; }
.tool-card .content p { color: #666; line-height: 1.8; margin-bottom: 15px; font-size: 16px; }
.tool-card .bot-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }
.tool-card .bot-card {
            background: white;
            padding: 25px;
            border-radius: 12px;
            border: 2px solid #5865F2;
            transition: transform 0.3s;
        }
.tool-card .bot-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(88,101,242,0.2); }
.tool-card .bot-card h4 { color: #5865F2; margin-bottom: 10px; font-size: 20px; }
.tool-card .bot-badge {
            display: inline-block;
            padding: 4px 12px;
            background: #5865F2;
            color: white;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 600;
            margin-bottom: 10px;
        }
.tool-card .feature-list {
            list-style: none;
            padding: 0;
            margin: 15px 0;
        }
.tool-card .feature-list li {
            padding: 8px 0;
            color: #666;
            font-size: 14px;
        }
.tool-card .feature-list li:before {
            content: "✓ ";
            color: #5865F2;
            font-weight: 700;
            margin-right: 8px;
        }
.tool-card .info-box {
            background: linear-gradient(135deg, #5865F215 0%, #4752C415 100%);
            padding: 25px;
            border-radius: 12px;
            border-left: 4px solid #5865F2;
            margin: 20px 0;
        }
.tool-card .code-box {
            background: #1e1e1e;
            color: #d4d4d4;
            padding: 20px;
            border-radius: 8px;
            font-family: 'Courier New', monospace;
            font-size: 14px;
            overflow-x: auto;
            margin: 15px 0;
        }
.tool-card ul { margin-left: 25px; line-height: 1.8; color: #666; }
.tool-card ul li { margin-bottom: 8px; }
.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;
        }
