/* CalWhat Calculator Platform - AgeCalculator Specific Styles */
/* This file contains calculator-specific styles */



    .section-title {
        font-family: 'Poppins', 'Noto Sans TC', sans-serif;
        font-size: 1.5rem;
        font-weight: 600;
        color: #2d3748;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 3px solid transparent;
        border-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-image-slice: 1;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-label {
        display: flex;
        align-items: center;
        font-weight: 600;
        color: #2d3748;
        margin-bottom: 8px;
        font-size: 0.95rem;
    }

    .tooltip-icon {
        margin-left: 8px;
        color: #a0aec0;
        cursor: help;
        font-size: 0.9rem;
    }

    .form-input {
        width: 100%;
        padding: 12px 16px;
        border: 2px solid #48bb78;
        border-radius: 12px;
        font-size: 1rem;
        transition: all 0.3s ease;
        font-family: 'Roboto Mono', monospace;
    }

    .form-input:focus {
        outline: none;
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

    .result-item {
        padding: 15px 20px;
        background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
        border-radius: 12px;
        margin-bottom: 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .result-label {
        font-weight: 600;
        color: #4a5568;
        font-size: 0.95rem;
    }

    .result-value {
        font-family: 'Roboto Mono', monospace;
        font-weight: 700;
        font-size: 1.3rem;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .exact-age-display {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 30px;
        border-radius: 16px;
        text-align: center;
        margin-bottom: 20px;
    }

    .exact-age-display h2 {
        font-size: 2.5rem;
        margin-bottom: 10px;
        font-family: 'Roboto Mono', monospace;
    }

    .age-components {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
        margin-top: 15px;
    }

    .age-component {
        background: rgba(255, 255, 255, 0.2);
        padding: 10px 20px;
        border-radius: 8px;
        backdrop-filter: blur(10px);
    }

    .age-component-value {
        font-size: 2rem;
        font-weight: 700;
        font-family: 'Roboto Mono', monospace;
    }

    .age-component-label {
        font-size: 0.85rem;
        opacity: 0.9;
        margin-top: 5px;
    }


    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-header h1 {
            font-size: 2rem;
        }

        .exact-age-display h2 {
            font-size: 1.8rem;
        }

        .age-component-value {
            font-size: 1.5rem;
        }

        .result-value {
            font-size: 1.1rem;
        }
    }

    /* SEO Content Section */
    .seo-content {
        background: white;
        padding: 40px;
        border-radius: 16px;
        margin-top: 40px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    .seo-content h2 {
        color: #2d3748;
        font-size: 1.8rem;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .seo-content h3 {
        color: #4a5568;
        font-size: 1.3rem;
        margin-top: 25px;
        margin-bottom: 12px;
        font-weight: 600;
    }

    .seo-content p, .seo-content ul {
        color: #718096;
        line-height: 1.8;
        margin-bottom: 15px;
    }

    .seo-content ul {
        padding-left: 25px;
    }

    .seo-content li {
        margin-bottom: 8px;
    }