/* Token Additional Info Styles */
.token-additional-info {
    background: rgba(5, 17, 43, 0.4);
    border-radius: 16px;
    padding: 20px;
    margin-top: 25px;
    border: 1px solid rgba(0, 148, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.additional-info-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 148, 255, 0.15);
    font-family: 'Outfit', sans-serif;
    position: relative;
}

.additional-info-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #9945FF, #14F195);
    border-radius: 2px;
}

.token-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.token-detail-item:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
}

.detail-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(9, 30, 90, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    color: #ffffff;
    font-size: 16px;
}

.detail-content {
    flex: 1;
}

.detail-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3px;
    font-family: 'Inter', sans-serif;
}

.detail-value {
    font-size: 15px;
    color: #ffffff;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
}

.token-stats {
    display: flex;
    justify-content: space-between;
    background: rgba(9, 30, 90, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
    padding: 0 10px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-value {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
}

.token-verification {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.verification-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(20, 241, 149, 0.1);
    border: 1px solid rgba(20, 241, 149, 0.3);
    border-radius: 20px;
    padding: 8px 15px;
    color: #14F195;
    font-size: 14px;
    font-weight: 500;
}

.verification-badge i {
    margin-right: 6px;
    font-size: 16px;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
    .token-stats {
        flex-direction: column;
        padding: 10px;
    }
    
    .stat-item {
        padding: 10px 0;
    }
    
    .stat-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        top: auto;
        height: 1px;
        width: 100%;
        background: rgba(255, 255, 255, 0.1);
    }
}

/* Animation for the verification badge */
@keyframes verify-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(20, 241, 149, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(20, 241, 149, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(20, 241, 149, 0);
    }
}

.verification-badge {
    animation: verify-pulse 2s infinite;
}
