 	.hb-banner-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .hb-banner-link {
            text-decoration: none;
            display: block;
            transition: all 0.3s ease;
        }
        
        .hb-banner {
            width: 95%;
            height: 80px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            padding: 0 30px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
	    margin:3px auto;
        }
        
        .hb-banner:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .hb-banner-icon {
            font-size: 40px;
            margin-right: 25px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 50px;
            flex-shrink: 0;
        }
        
        .hb-banner-text-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 0;
        }
        
        .hb-main-text {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 2px; /* 減少間距 */
            transition: all 0.3s ease;
            line-height: 1.1; /* 緊湊行高 */
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        .hb-sub-text {
            font-size: 14px;
            opacity: 0.9;
            transition: all 0.3s ease;
            line-height: 1.2; /* 緊湊行高 */
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        
        .hb-banner-1 {
            background: linear-gradient(135deg, #ff6b6b, #ff8e8e, #ff6b6b);
        }
        
        .hb-banner-1 .hb-banner-icon {
            animation: hb-bounce 2s infinite;
        }
        
        .hb-banner-1 .hb-main-text {
            color: white;
        }
        
        .hb-banner-1 .hb-sub-text {
            color: #fffacd;
        }
        
        .hb-banner-link:hover .hb-banner-1 .hb-main-text {
            color: #fffacd;
        }
        
        .hb-banner-link:hover .hb-banner-1 .hb-sub-text {
            color: white;
        }
        
        
        .hb-banner-2 {
            background: linear-gradient(135deg, #9b59b6, #8e44ad, #9b59b6);
        }
        
        .hb-banner-2 .hb-banner-icon {
            animation: hb-swing 3s infinite;
        }
        
        .hb-banner-2 .hb-main-text {
            color: white;
        }
        
        .hb-banner-2 .hb-sub-text {
            color: #e8daef;
        }
        
        .hb-banner-link:hover .hb-banner-2 .hb-main-text {
            color: #f4ecf7;
        }
        
        .hb-banner-link:hover .hb-banner-2 .hb-sub-text {
            color: white;
        }
        
        
        .hb-banner-3 {
            background: linear-gradient(135deg, #3498db, #2980b9, #3498db);
        }
        
        .hb-banner-3 .hb-banner-icon {
            animation: hb-pulse 2s infinite;
        }
        
        .hb-banner-3 .hb-main-text {
            color: white;
        }
        
        .hb-banner-3 .hb-sub-text {
            color: #d6eaf8;
        }
        
        .hb-banner-link:hover .hb-banner-3 .hb-main-text {
            color: #ebf5fb;
        }
        
        .hb-banner-link:hover .hb-banner-3 .hb-sub-text {
            color: white;
        }
        
        
        @keyframes hb-bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        
        @keyframes hb-swing {
            0%, 100% {
                transform: rotate(0deg);
            }
            25% {
                transform: rotate(10deg);
            }
            75% {
                transform: rotate(-10deg);
            }
        }
        
        @keyframes hb-pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }
        
        
        .hb-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 230%;
            height: 230%;
            background: linear-gradient(
                20deg,
                transparent,
                rgba(255,255,255,0.3),
                transparent
            );
	    transform: rotate(20deg);
            animation: hb-shine 3s infinite;
        }
        
        @keyframes hb-shine {
            0% {
                transform: rotate(20deg) translateX(-100%) ;
            }
            100% {
                transform: rotate(20deg) translateX(100%);
            }
        }
        
        /* 響應式設計 */
        @media (max-width: 768px) {
            .hb-banner {
                padding: 0 20px;
            }
            
            .hb-banner-icon {
                font-size: 35px;
                margin-right: 20px;
                min-width: 45px;
            }
            
            .hb-main-text {
                font-size: 20px;
                line-height: 1.1;
            }
            
            .hb-sub-text {
                font-size: 13px;
                line-height: 1.2;
            }
        }
        
        @media (max-width: 520px) {
            .hb-banner {
                padding: 0 10px;
                height: 60px;
		margin-bottom:5px;
            }
            
            .hb-banner-icon {
                font-size: 20px;
                margin-right: 8px;
                min-width: 20px;
            }
            
            .hb-main-text {
                font-size: 16px;
                line-height: 1.1;
            }
            
            .hb-sub-text {
                font-size: 12px;
                line-height: 1.1;
            }
        }
