.target-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.glow-ring-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1; 
}

.glow-ring {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.8); /* 增加邊框透明度 */
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 255, 255, 1); /* 增加陰影透明度 */
    opacity: 0.5; /* 確保光圈是完全可見的 */
    animation: pulse 2s infinite; /* 脈衝動畫 */
    z-index: 2;
}

.no-pulse .glow-ring {
    animation: none; /* 禁用脈衝動畫 */
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}



.glow-ring-large {
    width: 120%; /* 增大光圈 */
    height: 120%; /* 增大光圈 */
    top: -10%; /* 微調位置 */
    left: -10%; /* 微調位置 */
}

.glow-ring-medium {
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
}

.glow-ring-small {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
}


.dividing-lines {
    position: absolute;
    width: 50%;
    height: 60%;
    top: 20%;
    left: 25%;
    opacity: 0;
}

.dividing-line {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.4);
    width: 1px;
    height: 100%;
    left: 50%;
    transform-origin: center;
}

/* Create 12 dividing lines */
.dividing-line:nth-child(1) {
    transform: rotate(0deg);
}

.dividing-line:nth-child(2) {
    transform: rotate(30deg);
}

.dividing-line:nth-child(3) {
    transform: rotate(60deg);
}

.dividing-line:nth-child(4) {
    transform: rotate(90deg);
}

.dividing-line:nth-child(5) {
    transform: rotate(120deg);
}

.dividing-line:nth-child(6) {
    transform: rotate(150deg);
}

.target-image {
    position: relative;
    z-index: 1;
    transition: transform 2s;
    opacity:1;
}
/* 
.line-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none; 
}

.line-decoration::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 9%;
    width: 30%;
    height: 2px;
    background-color: #8631c6;
    transform: translateY(-50%);
} */

/* .line-decoration::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 70%;
    background-color: #8631c6; 
    transform: rotate(-45deg);
    transform-origin: top right;
} */

