:root { 
            --accent-color: #d35400;
            --light-gray: #fef5e7;
            --border-color: #f0d9b5;
            --text-color: #4a2c1a;
            --text-muted: #7e5c3c;
            --success-color: #27ae60;
            --warning-color: #f39c12;
            --mystic-purple: #8e44ad;
        }.breadcrumb-item.active{color:#333}
        .page-header {
            background: linear-gradient(145deg, #fff0e0 0%, #fde3cf 100%);
            padding: 1.8rem 0;
            margin-bottom: 2rem;
            border-bottom: 2px solid var(--border-color);
            position: relative;color:#333
        } 
        .breadcrumb { background: transparent; }
        .breadcrumb-item a { color: var(--text-muted); text-decoration: none; }
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(230,126,34,0.15);
        }
        .lucky-badge {
            display: inline-block;
            background: var(--primary-color);
            color: white;
            font-size: 4rem;
            font-weight: 800;
            width: 150px;
            height: 150px;
            line-height: 150px;
            text-align: center;
            border-radius: 50%;
            margin: 1rem auto;
            box-shadow: 0 12px 25px rgba(230,126,34,0.4);
            border: 5px solid #ffeac2;
        }
        .digit-meaning {
            background: white;
            border-radius: 20px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-left: 10px solid var(--primary-color);
        }
        .meaning-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px,1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .meaning-item {
            background: white;
            border-radius: 18px;
            padding: 1rem;
            text-align: center;
            border: 1px solid #ffe0c0;
            transition: 0.2s;
            cursor: pointer;
        }
        .meaning-item:hover {
            transform: scale(1.05);
            border-color: var(--primary-color);
            background: #fff3e0;
        }
        .meaning-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary-color);
        }
        .footer a { color: #f9caa7; }
        .example-btn {
            background: rgba(230,126,34,0.1);
            border: 1px solid #ffd7b5;
            border-radius: 40px;
            padding: 0.5rem 1.2rem;
            font-size: 1rem;
            color: var(--primary-color);
            cursor: pointer;
            transition: 0.2s;
        }
        .example-btn:hover {
            background: rgba(230,126,34,0.2);
        }
        .lucky-color-badge {
            display: inline-block;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            margin-right: 5px;
            border: 2px solid white;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .fun-fact {
            background: #fff1d6;
            border-radius: 16px;
            padding: 0.8rem 1.2rem;
            margin-top: 1rem;
        }