    :root {
            --primary-color: #2c7da0;
            --secondary-color: #a9d6e5;
            --accent-color: #01497c;
            --light-gray: #f8f9fa;
            --border-color: #eaeaea;
            --text-color: #333;
            --text-muted: #6c757d;
            --header-bg: #f0f4f8;
            --success-color: #28a745;
            --warning-color: #ffc107;
            --info-color: #17a2b8;
        }
      
    
        .age-display {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }
        
        .age-unit {
            text-align: center;
            min-width: 100px;
            background: rgba(169, 214, 229, 0.15);
            border-radius: 10px;
            padding: 1rem;
            box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        }
        
        .age-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        
        .age-label {
            font-size: 1rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .zodiac-display {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }
        
        .zodiac-card {
            background: linear-gradient(135deg, rgba(169, 214, 229, 0.2) 0%, rgba(44, 125, 160, 0.2) 100%);
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            width: 200px;
            border: 1px solid var(--border-color);
        }
        
        .zodiac-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .zodiac-name {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }
        
        .zodiac-dates {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        
        .life-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .stat-card {
            background-color: white;
            border-radius: 8px;
            padding: 1.5rem;
            text-align: center;
            border: 1px solid var(--border-color);
            box-shadow: 0 2px 6px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.1);
        }
        
        .stat-value {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        
        .copy-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            padding: 0.4rem 0.75rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .copy-btn:hover {
            background-color: var(--light-gray);
        }
        
        /* Content Sections */
        .section-title {
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--secondary-color);
            font-size: 1.5rem;
        }
        
        .usage-step {
            display: flex;
            margin-bottom: 1.5rem;
            align-items: flex-start;
            background-color: rgba(169, 214, 229, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
        }
        
        .step-number {
            width: 36px;
            height: 36px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.5rem;
            flex-shrink: 0;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .info-box {
            background-color: rgba(44, 125, 160, 0.05);
            border-left: 3px solid var(--primary-color);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 1.5rem 0;
        }
        
        .security-alert {
            background-color: #d4edda;
            border-left: 3px solid #28a745;
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
            margin: 1.5rem 0;
        }
        
        /* Timeline */
        .timeline-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem 0;
        }
        
        .timeline-container::after {
            content: '';
            position: absolute;
            width: 4px;
            background-color: var(--secondary-color);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -2px;
        }
        
        .timeline-item {
            padding: 1rem 2rem;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }
        
        .timeline-item:nth-child(odd) {
            left: 0;
        }
        
        .timeline-item:nth-child(even) {
            left: 50%;
        }
        
        .timeline-content {
            padding: 1.5rem;
            background-color: white;
            position: relative;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .timeline-content::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            right: -10px;
            background-color: white;
            border: 2px solid var(--primary-color);
            top: 50%;
            border-radius: 50%;
            z-index: 1;
            transform: translateY(-50%);
        }
        
        .timeline-item:nth-child(even) .timeline-content::after {
            left: -10px;
        }
        
        .timeline-date {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        
        .timeline-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        /* Comparison Cards */
        .comparison-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .comparison-card {
            background: white;
            border-radius: 8px;
            padding: 1.5rem;
            border: 1px solid var(--border-color);
            box-shadow: 0 2px 6px rgba(0,0,0,0.05);
            text-align: center;
            transition: all 0.3s;
        }
        
        .comparison-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.1);
        }
        
        .comparison-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .comparison-value {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        
        .comparison-label {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        
        /* Countdown */
        .countdown-container {
            background: linear-gradient(135deg, rgba(44, 125, 160, 0.1) 0%, rgba(169, 214, 229, 0.1) 100%);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            margin-top: 2rem;
            border: 1px solid var(--border-color);
        }
        
        .countdown-title {
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
            font-size: 1.5rem;
        }
        
        .countdown-display {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .countdown-unit {
            min-width: 80px;
            background: white;
            border-radius: 8px;
            padding: 1rem;
            box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        }
        
        .countdown-value {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        
        .countdown-label {
            font-size: 0.9rem;
            color: var(--text-muted);
            text-transform: uppercase;
        }
        
        /* Animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.5s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        .delay-5 { animation-delay: 0.5s; }
        
        /* Countup effect */
        .countup {
            display: inline-block;
        }
        
        
        /* Responsive Adjustments */
        @media (max-width: 991px) {
            .tool-container {
                flex-direction: column;
            }
            
            .tool-sidebar {
                width: 100%;
            }
            
            .age-display {
                gap: 1rem;
            }
            
            .age-unit {
                min-width: 80px;
            }
            
            .timeline-container::after {
                left: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
                left: 0 !important;
            }
            
            .timeline-item:nth-child(even) .timeline-content::after {
                left: -10px;
            }
            
            .timeline-content::after {
                left: -10px !important;
            }
        }
        
        @media (max-width: 767px) {
            .zodiac-display {
                flex-direction: column;
                align-items: center;
            }
            
            .life-stats {
                grid-template-columns: 1fr;
            }
            
            .comparison-cards {
                grid-template-columns: 1fr;
            }
        }
        
      
        
        /* Age Distribution */
        .distribution-container {
            margin-top: 2rem;
            background: white;
            border-radius: 10px;
            padding: 2rem;
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        
        .distribution-title {
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
            font-size: 1.5rem;
            text-align: center;
        }
        
        .distribution-chart {
            height: 200px;
            display: flex;
            align-items: flex-end;
            justify-content: space-around;
            padding: 1rem;
            border-bottom: 2px solid var(--border-color);
        }
        
        .distribution-bar {
            width: 40px;
            background: var(--primary-color);
            border-radius: 4px 4px 0 0;
            position: relative;
            transition: height 0.5s ease;
        }
        
        .distribution-bar-label {
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        
        .distribution-bar-value {
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .distribution-labels {
            display: flex;
            justify-content: space-around;
            margin-top: 2rem;
        }
        
        .distribution-label {
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        
        .user-marker {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 30px;
            background: var(--warning-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.8rem;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        /* Zodiac Icons */
        .zodiac-icon.aries { color: #e74c3c; }
        .zodiac-icon.taurus { color: #27ae60; }
        .zodiac-icon.gemini { color: #f39c12; }
        .zodiac-icon.cancer { color: #3498db; }
        .zodiac-icon.leo { color: #e67e22; }
        .zodiac-icon.virgo { color: #9b59b6; }
        .zodiac-icon.libra { color: #1abc9c; }
        .zodiac-icon.scorpio { color: #c0392b; }
        .zodiac-icon.sagittarius { color: #d35400; }
        .zodiac-icon.capricorn { color: #16a085; }
        .zodiac-icon.aquarius { color: #2980b9; }
        .zodiac-icon.pisces { color: #8e44ad; }
        
        /* Chinese Zodiac Icons */
        .zodiac-icon.rat { color: #7f8c8d; }
        .zodiac-icon.ox { color: #8e44ad; }
        .zodiac-icon.tiger { color: #e74c3c; }
        .zodiac-icon.rabbit { color: #3498db; }
        .zodiac-icon.dragon { color: #d35400; }
        .zodiac-icon.snake { color: #27ae60; }
        .zodiac-icon.horse { color: #c0392b; }
        .zodiac-icon.goat { color: #f39c12; }
        .zodiac-icon.monkey { color: #16a085; }
        .zodiac-icon.rooster { color: #e67e22; }
        .zodiac-icon.dog { color: #2980b9; }
        .zodiac-icon.pig { color: #9b59b6; }
        
        /* Image Card */
        .image-card {
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .image-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .image-card-content {
            padding: 1.5rem;
            background: white;
        }
        
        .image-card-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }
.fa-star:before{content:''!important}