.solve24 {
    max-width: 800px;
    margin: 2rem auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #2d3748;
}

/* Calculator Style */
.solve24-calculator {
    display: flex;
    gap: 12px;
    background: #f0fdfa;
    padding: 24px;
    border-radius: 16px;
    border: 2px solid #99f6e4;
    margin-bottom: 30px;
    align-items: center;
}

.solve24-calculator input {
    width: 60px;
    height: 50px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    border: 2px solid #ccfbf1;
    border-radius: 12px;
    background: #fff;
    color: #115e59;
}

.solve24-calculator input:focus {
    outline: none;
    border-color: #14b8a6;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.solve24-calculator button {
    background: #14b8a6;
    color: #fff;
    border: none;
    padding: 0 24px;
    height: 50px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-left: auto;
}

.solve24-calculator button:hover {
    background: #0d9488;
}

/* Steps Style */
.solve24-steps h2,
.solve24-solutions h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.solve24-step {
    display: flex;
    gap: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 12px;
    align-items: flex-start;
}

.solve24-step span {
    background: #14b8a6;
    color: #fff;
    min-width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

/* Solutions Header */
.solve24-solutions-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.solve24-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.solve24-badge {
    background: #f0fdfa;
    color: #0d9488;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.solve24-header-actions {
    display: flex;
    gap: 10px;
}

.solve24-btn-outline {
    background: transparent;
    border: 1px solid #14b8a6;
    color: #14b8a6;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.solve24-btn-outline:hover {
    background: #f0fdfa;
}

/* Solutions List */
.solve24-solutions-container {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    background: #fff;
}

.solve24-divider {
    border-top: 1px dashed #cbd5e1;
    margin: 0 0 20px 0;
}

.solve24-solution-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.solve24-solution-item:last-child {
    border-bottom: none;
}

.solve24-solution-text {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    color: #334155;
    font-size: 1.05rem;
}

.solve24-copy-btn {
    background: #f0fdfa;
    color: #0d9488;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
}

.solve24-copy-btn:hover {
    background: #ccfbf1;
}

/* Links Grid */
.solve24-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 20px 0 30px 0;
}

.solve24-links a {
    display: block;
    padding: 12px 20px;
    background: #fff;
    color: #0d9488;
    border: 1px solid #99f6e4;
    border-radius: 50px;
    /* Pill shape */
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(13, 148, 136, 0.05);
}

.solve24-links a:hover {
    background: #14b8a6;
    color: #fff;
    border-color: #14b8a6;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(13, 148, 136, 0.1);
}

.solve24-links-section h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 25px;
}

/* Inner Page Specifics */
.solve24-short-answer {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 24px;
    background: #fdf2f2;
    padding: 16px;
    border-radius: 12px;
    border-left: 4px solid #f87171;
}

.solve24-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 30px;
}

.solve24-hint {
    font-size: 0.85rem;
    color: #64748b;
    margin: 8px 0 0 0;
    width: 100%;
}

.solve24-inner-howto,
.solve24-tips,
.solve24-faq,
.solve24-inner-links {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.solve24-inner-howto h2,
.solve24-tips h2,
.solve24-faq h2,
.solve24-inner-links h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #0f172a;
}

.solve24-how-step {
    display: flex;
    gap: 12px;
    align-items: center;
    background: #f0fdf4;
    border: 1px solid #dcfce7;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.solve24-how-step span {
    background: #22c55e;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.solve24-tips ul {
    list-style: none;
    padding: 0;
}

.solve24-tips li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.solve24-tips li::before {
    content: "💡";
    position: absolute;
    left: 0;
    top: 0;
}

.solve24-faq h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 24px 0 8px 0;
    color: #1e293b;
}

.solve24-faq p {
    color: #475569;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .solve24-calculator {
        flex-wrap: wrap;
        justify-content: center;
    }

    .solve24-calculator button {
        width: 100%;
        margin-top: 10px;
    }

    .solve24-links {
        grid-template-columns: 1fr 1fr;
    }
}

/* Hide theme titles on inner value pages */
.solve24-inner-page .entry-title,
.solve24-inner-page .page-title,
.solve24-inner-page .post-title,
.solve24-inner-page .entry-header h1:not(.solve24 h1) {
    display: none !important;
}