.domain-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.domain-modal {
    width: 85%;
    max-width: 320px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { 
        transform: translateY(20px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

.domain-modal .modal-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.domain-modal .modal-header .head-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}

.domain-modal .modal-header .sub-head-text {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.domain-modal .modal-body {
    padding: 15px 20px;
}

.domain-modal .domain-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
}

.domain-modal .domain-item:last-child {
    border-bottom: none;
}

.domain-modal .domain-item .item-view {
    flex: 1;
    display: flex;
    align-items: center;
}

.domain-modal .domain-item .item-view:first-child {
    width: 40%;
}

.domain-modal .domain-item .item-view:nth-child(2) {
    width: 40%;
    justify-content: flex-end;
}

.domain-modal .domain-item .item-view:last-child {
    width: 20%;
    justify-content: flex-end;
}

.domain-modal .icon-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 10px;
}

.domain-modal .item-text {
    font-size: 14px;
    color: #333;
    margin: 0;
}

.domain-modal .item-text.text-green {
    color: #22c55e;
    font-size: 12px;
}

.domain-modal .line-btn {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid #ef4444;
    border-radius: 16px;
    font-size: 13px;
    color: #ef4444;
    cursor: pointer;
    transition: all 0.3s ease;
}

.domain-modal .line-btn:hover {
    background: #ef4444;
    color: #fff;
}

.domain-modal .modal-footer {
    padding: 15px 20px 20px;
}

.domain-modal .re-test {
    display: block;
    width: 100%;
    height: 44px;
    line-height: 44px;
    text-align: center;
    background: linear-gradient(135deg, #7962ED 0%, #9180E6 100%);
    border-radius: 22px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}

.domain-modal .re-test:hover {
    opacity: 0.9;
}

.domain-modal .re-test:active {
    background: linear-gradient(135deg, #5a47c2 0%, #7061c9 100%);
    transform: scale(0.98);
}

.domain-modal .re-test svg {
    width: 100%;
    height: 100%;
}

.domain-trigger {
    position: fixed;
    right: 15px;
    bottom: 180px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
}

.domain-trigger:hover {
    transform: scale(1.1);
}

.domain-trigger img {
    width: 28px;
    height: 28px;
}